CDK Constructs for AWS Cloudfront to AWS API Gateway integration.
Project description
aws-cloudfront-apigateway module
---All classes are under active development and subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
| Reference Documentation: | https://docs.aws.amazon.com/solutions/latest/constructs/ |
|---|
| Language | Package |
|---|---|
aws_solutions_constructs.aws_cloudfront_apigateway |
|
@aws-solutions-constructs/aws-cloudfront-apigateway |
|
software.amazon.awsconstructs.services.cloudfrontapigateway |
This AWS Solutions Construct implements an AWS CloudFront fronting an Amazon API Gateway REST API.
Here is a minimal deployable pattern definition:
const { defaults } = require('@aws-solutions-constructs/core');
const { CloudFrontToApiGateway } = require('@aws-solutions-constructs/aws-cloudfront-apigateway');
const stack = new Stack();
const lambdaProps: lambda.FunctionProps = {
code: lambda.Code.asset(`${__dirname}/lambda`),
runtime: lambda.Runtime.NODEJS_12_X,
handler: 'index.handler'
};
const func = defaults.deployLambdaFunction(stack, lambdaProps);
const _api = defaults.RegionalApiGateway(stack, func);
new CloudFrontToApiGateway(stack, 'test-cloudfront-apigateway', {
existingApiGatewayObj: _api
});
Initializer
new CloudFrontToApiGateway(scope: Construct, id: string, props: CloudFrontToApiGatewayProps);
Parameters
- scope
Construct - id
string - props
CloudFrontToApiGatewayProps
Pattern Construct Props
| Name | Type | Description |
|---|---|---|
| existingApiGatewayObj | api.RestApi |
The regional API Gateway that will be fronted with the CloudFront |
| cloudFrontDistributionProps? | [`cloudfront.CloudFrontWebDistributionProps | any`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-cloudfront.CloudFrontWebDistributionProps.html) |
| insertHttpSecurityHeaders? | boolean |
Optional user provided props to turn on/off the automatic injection of best practice HTTP security headers in all responses from CloudFront |
Pattern Properties
| Name | Type | Description |
|---|---|---|
| cloudFrontWebDistribution | cloudfront.CloudFrontWebDistribution |
Returns an instance of cloudfront.CloudFrontWebDistribution created by the construct |
| apiGateway | api.RestApi |
Returns an instance of the API Gateway REST API created by the pattern. |
Default settings
Out of the box implementation of the Construct without any override will set the following defaults:
Amazon CloudFront
- Configure Access logging for CloudFront WebDistribution
- Enable automatic injection of best practice HTTP security headers in all responses from CloudFront WebDistribution
Amazon API Gateway
- User provided API Gateway object is used as-is
Architecture
© Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws-solutions-constructs.aws-cloudfront-apigateway-1.46.0.tar.gz.
File metadata
- Download URL: aws-solutions-constructs.aws-cloudfront-apigateway-1.46.0.tar.gz
- Upload date:
- Size: 126.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d16664dc6ff052a1512290c4c62d1a88e899e5e7763a05bea64fd33120dd1499
|
|
| MD5 |
cf5c88bd7a0fcce86aba53db83c6df21
|
|
| BLAKE2b-256 |
96d69122b89ef45b62718db4670327de8f15bab9894af7d99b5d13a5056a67f5
|
File details
Details for the file aws_solutions_constructs.aws_cloudfront_apigateway-1.46.0-py3-none-any.whl.
File metadata
- Download URL: aws_solutions_constructs.aws_cloudfront_apigateway-1.46.0-py3-none-any.whl
- Upload date:
- Size: 125.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8413a59914fcd1f2dab124b6084080a99edf4ba7ffa9dd5dc2e57b12bd8734f2
|
|
| MD5 |
f7bced69fa1a5d3be75678f106b98af1
|
|
| BLAKE2b-256 |
e01a616091b7f5ae318e2afae282fc9b014ec53d4715a8429f38545df94445db
|