Package software.amazon.awscdk.services.cloudfront
Amazon CloudFront Construct Library
---
AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2.
For more information on how to migrate, see the Migrating to AWS CDK v2 guide.
Amazon CloudFront is a web service that speeds up distribution of your static and dynamic web content, such as .html, .css, .js, and image files, to your users. CloudFront delivers your content through a worldwide network of data centers called edge locations. When a user requests content that you're serving with CloudFront, the user is routed to the edge location that provides the lowest latency, so that content is delivered with the best possible performance.
Distribution API
The Distribution API is currently being built to replace the existing CloudFrontWebDistribution API. The Distribution API is optimized for the
most common use cases of CloudFront distributions (e.g., single origin and behavior, few customizations) while still providing the ability for more
advanced use cases. The API focuses on simplicity for the common use cases, and convenience methods for creating the behaviors and origins necessary
for more complex use cases.
Creating a distribution
CloudFront distributions deliver your content from one or more origins; an origin is the location where you store the original version of your
content. Origins can be created from S3 buckets or a custom origin (HTTP server). Constructs to define origins are in the @aws-cdk/aws-cloudfront-origins module.
Each distribution has a default behavior which applies to all requests to that distribution, and routes requests to a primary origin. Additional behaviors may be specified for an origin with a given URL path pattern. Behaviors allow routing with multiple origins, controlling which HTTP methods to support, whether to require users to use HTTPS, and what query strings or cookies to forward to your origin, among other settings.
From an S3 Bucket
An S3 bucket can be added as an origin. If the bucket is configured as a website endpoint, the distribution can use S3 redirects and S3 custom error documents.
// Creates a distribution from an S3 bucket.
Bucket myBucket = new Bucket(this, "myBucket");
Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder().origin(new S3Origin(myBucket)).build())
.build();
The above will treat the bucket differently based on if IBucket.isWebsite is set or not. If the bucket is configured as a website, the bucket is
treated as an HTTP origin, and the built-in S3 redirects and error pages can be used. Otherwise, the bucket is handled as a bucket origin and
CloudFront's redirect and error handling will be used. In the latter case, the Origin will create an origin access identity and grant it access to the
underlying bucket. This can be used in conjunction with a bucket that is not public to require that your users access your content using CloudFront
URLs and not S3 URLs directly.
ELBv2 Load Balancer
An Elastic Load Balancing (ELB) v2 load balancer may be used as an origin. In order for a load balancer to serve as an origin, it must be publicly
accessible (internetFacing is true). Both Application and Network load balancers are supported.
// Creates a distribution from an ELBv2 load balancer
Vpc vpc;
// Create an application load balancer in a VPC. 'internetFacing' must be 'true'
// for CloudFront to access the load balancer and use it as an origin.
ApplicationLoadBalancer lb = ApplicationLoadBalancer.Builder.create(this, "LB")
.vpc(vpc)
.internetFacing(true)
.build();
Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder().origin(new LoadBalancerV2Origin(lb)).build())
.build();
From an HTTP endpoint
Origins can also be created from any other HTTP endpoint, given the domain name, and optionally, other origin properties.
// Creates a distribution from an HTTP endpoint
// Creates a distribution from an HTTP endpoint
Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder().origin(new HttpOrigin("www.example.com")).build())
.build();
Domain Names and Certificates
When you create a distribution, CloudFront assigns a domain name for the distribution, for example: d111111abcdef8.cloudfront.net; this value can
be retrieved from distribution.distributionDomainName. CloudFront distributions use a default certificate (*.cloudfront.net) to support HTTPS by
default. If you want to use your own domain name, such as www.example.com, you must associate a certificate with your distribution that contains
your domain name, and provide one (or more) domain names from the certificate for the distribution.
The certificate must be present in the AWS Certificate Manager (ACM) service in the US East (N. Virginia) region; the certificate
may either be created by ACM, or created elsewhere and imported into ACM. When a certificate is used, the distribution will support HTTPS connections
from SNI only and a minimum protocol version of TLSv1.2_2021 if the @aws-cdk/aws-cloudfront:defaultSecurityPolicyTLSv1.2_2021 feature flag is set, and TLSv1.2_2019 otherwise.
// To use your own domain name in a Distribution, you must associate a certificate
import software.amazon.awscdk.services.certificatemanager.*;
import software.amazon.awscdk.services.route53.*;
HostedZone hostedZone;
Bucket myBucket;
DnsValidatedCertificate myCertificate = DnsValidatedCertificate.Builder.create(this, "mySiteCert")
.domainName("www.example.com")
.hostedZone(hostedZone)
.build();
Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder().origin(new S3Origin(myBucket)).build())
.domainNames(List.of("www.example.com"))
.certificate(myCertificate)
.build();
However, you can customize the minimum protocol version for the certificate while creating the distribution using minimumProtocolVersion property.
// Create a Distribution with a custom domain name and a minimum protocol version.
Bucket myBucket;
Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder().origin(new S3Origin(myBucket)).build())
.domainNames(List.of("www.example.com"))
.minimumProtocolVersion(SecurityPolicyProtocol.TLS_V1_2016)
.sslSupportMethod(SSLMethod.SNI)
.build();
Multiple Behaviors & Origins
Each distribution has a default behavior which applies to all requests to that distribution; additional behaviors may be specified for a given URL path pattern. Behaviors allow routing with multiple origins, controlling which HTTP methods to support, whether to require users to use HTTPS, and what query strings or cookies to forward to your origin, among others.
The properties of the default behavior can be adjusted as part of the distribution creation. The following example shows configuring the HTTP methods and viewer protocol policy of the cache.
// Create a Distribution with configured HTTP methods and viewer protocol policy of the cache.
Bucket myBucket;
Distribution myWebDistribution = Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder()
.origin(new S3Origin(myBucket))
.allowedMethods(AllowedMethods.ALLOW_ALL)
.viewerProtocolPolicy(ViewerProtocolPolicy.REDIRECT_TO_HTTPS)
.build())
.build();
Additional behaviors can be specified at creation, or added after the initial creation. Each additional behavior is associated with an origin,
and enable customization for a specific set of resources based on a URL path pattern. For example, we can add a behavior to myWebDistribution to
override the default viewer protocol policy for all of the images.
// Add a behavior to a Distribution after initial creation.
Bucket myBucket;
Distribution myWebDistribution;
myWebDistribution.addBehavior("/images/*.jpg", new S3Origin(myBucket), AddBehaviorOptions.builder()
.viewerProtocolPolicy(ViewerProtocolPolicy.REDIRECT_TO_HTTPS)
.build());
These behaviors can also be specified at distribution creation time.
// Create a Distribution with additional behaviors at creation time.
Bucket myBucket;
S3Origin bucketOrigin = new S3Origin(myBucket);
Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder()
.origin(bucketOrigin)
.allowedMethods(AllowedMethods.ALLOW_ALL)
.viewerProtocolPolicy(ViewerProtocolPolicy.REDIRECT_TO_HTTPS)
.build())
.additionalBehaviors(Map.of(
"/images/*.jpg", BehaviorOptions.builder()
.origin(bucketOrigin)
.viewerProtocolPolicy(ViewerProtocolPolicy.REDIRECT_TO_HTTPS)
.build()))
.build();
Customizing Cache Keys and TTLs with Cache Policies
You can use a cache policy to improve your cache hit ratio by controlling the values (URL query strings, HTTP headers, and cookies) that are included in the cache key, and/or adjusting how long items remain in the cache via the time-to-live (TTL) settings. CloudFront provides some predefined cache policies, known as managed policies, for common use cases. You can use these managed policies, or you can create your own cache policy that’s specific to your needs. See https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html for more details.
// Using an existing cache policy for a Distribution
S3Origin bucketOrigin;
Distribution.Builder.create(this, "myDistManagedPolicy")
.defaultBehavior(BehaviorOptions.builder()
.origin(bucketOrigin)
.cachePolicy(CachePolicy.CACHING_OPTIMIZED)
.build())
.build();
// Creating a custom cache policy for a Distribution -- all parameters optional
S3Origin bucketOrigin;
CachePolicy myCachePolicy = CachePolicy.Builder.create(this, "myCachePolicy")
.cachePolicyName("MyPolicy")
.comment("A default policy")
.defaultTtl(Duration.days(2))
.minTtl(Duration.minutes(1))
.maxTtl(Duration.days(10))
.cookieBehavior(CacheCookieBehavior.all())
.headerBehavior(CacheHeaderBehavior.allowList("X-CustomHeader"))
.queryStringBehavior(CacheQueryStringBehavior.denyList("username"))
.enableAcceptEncodingGzip(true)
.enableAcceptEncodingBrotli(true)
.build();
Distribution.Builder.create(this, "myDistCustomPolicy")
.defaultBehavior(BehaviorOptions.builder()
.origin(bucketOrigin)
.cachePolicy(myCachePolicy)
.build())
.build();
Customizing Origin Requests with Origin Request Policies
When CloudFront makes a request to an origin, the URL path, request body (if present), and a few standard headers are included. Other information from the viewer request, such as URL query strings, HTTP headers, and cookies, is not included in the origin request by default. You can use an origin request policy to control the information that’s included in an origin request. CloudFront provides some predefined origin request policies, known as managed policies, for common use cases. You can use these managed policies, or you can create your own origin request policy that’s specific to your needs. See https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html for more details.
// Using an existing origin request policy for a Distribution
S3Origin bucketOrigin;
Distribution.Builder.create(this, "myDistManagedPolicy")
.defaultBehavior(BehaviorOptions.builder()
.origin(bucketOrigin)
.originRequestPolicy(OriginRequestPolicy.CORS_S3_ORIGIN)
.build())
.build();
// Creating a custom origin request policy for a Distribution -- all parameters optional
S3Origin bucketOrigin;
OriginRequestPolicy myOriginRequestPolicy = OriginRequestPolicy.Builder.create(this, "OriginRequestPolicy")
.originRequestPolicyName("MyPolicy")
.comment("A default policy")
.cookieBehavior(OriginRequestCookieBehavior.none())
.headerBehavior(OriginRequestHeaderBehavior.all("CloudFront-Is-Android-Viewer"))
.queryStringBehavior(OriginRequestQueryStringBehavior.allowList("username"))
.build();
Distribution.Builder.create(this, "myDistCustomPolicy")
.defaultBehavior(BehaviorOptions.builder()
.origin(bucketOrigin)
.originRequestPolicy(myOriginRequestPolicy)
.build())
.build();
Customizing Response Headers with Response Headers Policies
You can configure CloudFront to add one or more HTTP headers to the responses that it sends to viewers (web browsers or other clients), without making any changes to the origin or writing any code. To specify the headers that CloudFront adds to HTTP responses, you use a response headers policy. CloudFront adds the headers regardless of whether it serves the object from the cache or has to retrieve the object from the origin. If the origin response includes one or more of the headers that’s in a response headers policy, the policy can specify whether CloudFront uses the header it received from the origin or overwrites it with the one in the policy. See https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/adding-response-headers.html
// Using an existing managed response headers policy
S3Origin bucketOrigin;
Distribution.Builder.create(this, "myDistManagedPolicy")
.defaultBehavior(BehaviorOptions.builder()
.origin(bucketOrigin)
.responseHeadersPolicy(ResponseHeadersPolicy.CORS_ALLOW_ALL_ORIGINS)
.build())
.build();
// Creating a custom response headers policy -- all parameters optional
ResponseHeadersPolicy myResponseHeadersPolicy = ResponseHeadersPolicy.Builder.create(this, "ResponseHeadersPolicy")
.responseHeadersPolicyName("MyPolicy")
.comment("A default policy")
.corsBehavior(ResponseHeadersCorsBehavior.builder()
.accessControlAllowCredentials(false)
.accessControlAllowHeaders(List.of("X-Custom-Header-1", "X-Custom-Header-2"))
.accessControlAllowMethods(List.of("GET", "POST"))
.accessControlAllowOrigins(List.of("*"))
.accessControlExposeHeaders(List.of("X-Custom-Header-1", "X-Custom-Header-2"))
.accessControlMaxAge(Duration.seconds(600))
.originOverride(true)
.build())
.customHeadersBehavior(ResponseCustomHeadersBehavior.builder()
.customHeaders(List.of(ResponseCustomHeader.builder().header("X-Amz-Date").value("some-value").override(true).build(), ResponseCustomHeader.builder().header("X-Amz-Security-Token").value("some-value").override(false).build()))
.build())
.securityHeadersBehavior(ResponseSecurityHeadersBehavior.builder()
.contentSecurityPolicy(ResponseHeadersContentSecurityPolicy.builder().contentSecurityPolicy("default-src https:;").override(true).build())
.contentTypeOptions(ResponseHeadersContentTypeOptions.builder().override(true).build())
.frameOptions(ResponseHeadersFrameOptions.builder().frameOption(HeadersFrameOption.DENY).override(true).build())
.referrerPolicy(ResponseHeadersReferrerPolicy.builder().referrerPolicy(HeadersReferrerPolicy.NO_REFERRER).override(true).build())
.strictTransportSecurity(ResponseHeadersStrictTransportSecurity.builder().accessControlMaxAge(Duration.seconds(600)).includeSubdomains(true).override(true).build())
.xssProtection(ResponseHeadersXSSProtection.builder().protection(true).modeBlock(true).reportUri("https://example.com/csp-report").override(true).build())
.build())
.build();
Distribution.Builder.create(this, "myDistCustomPolicy")
.defaultBehavior(BehaviorOptions.builder()
.origin(bucketOrigin)
.responseHeadersPolicy(myResponseHeadersPolicy)
.build())
.build();
Validating signed URLs or signed cookies with Trusted Key Groups
CloudFront Distribution supports validating signed URLs or signed cookies using key groups. When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior.
// Validating signed URLs or signed cookies with Trusted Key Groups
// public key in PEM format
String publicKey;
PublicKey pubKey = PublicKey.Builder.create(this, "MyPubKey")
.encodedKey(publicKey)
.build();
KeyGroup keyGroup = KeyGroup.Builder.create(this, "MyKeyGroup")
.items(List.of(pubKey))
.build();
Distribution.Builder.create(this, "Dist")
.defaultBehavior(BehaviorOptions.builder()
.origin(new HttpOrigin("www.example.com"))
.trustedKeyGroups(List.of(keyGroup))
.build())
.build();
Lambda@Edge
Lambda@Edge is an extension of AWS Lambda, a compute service that lets you execute functions that customize the content that CloudFront delivers. You can author Node.js or Python functions in the US East (N. Virginia) region, and then execute them in AWS locations globally that are closer to the viewer, without provisioning or managing servers. Lambda@Edge functions are associated with a specific behavior and event type. Lambda@Edge can be used to rewrite URLs, alter responses based on headers or cookies, or authorize requests based on headers or authorization tokens.
The following shows a Lambda@Edge function added to the default behavior and triggered on every request:
Bucket myBucket;
// A Lambda@Edge function added to default behavior of a Distribution
// and triggered on every request
EdgeFunction myFunc = EdgeFunction.Builder.create(this, "MyFunction")
.runtime(Runtime.NODEJS_14_X)
.handler("index.handler")
.code(Code.fromAsset(join(__dirname, "lambda-handler")))
.build();
Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder()
.origin(new S3Origin(myBucket))
.edgeLambdas(List.of(EdgeLambda.builder()
.functionVersion(myFunc.getCurrentVersion())
.eventType(LambdaEdgeEventType.VIEWER_REQUEST)
.build()))
.build())
.build();
Note: Lambda@Edge functions must be created in the
us-east-1region, regardless of the region of the CloudFront distribution and stack. To make it easier to request functions for Lambda@Edge, theEdgeFunctionconstruct can be used. TheEdgeFunctionconstruct will automatically request a function inus-east-1, regardless of the region of the current stack.EdgeFunctionhas the same interface asFunctionand can be created and used interchangeably. Please note that usingEdgeFunctionrequires that theus-east-1region has been bootstrapped. See https://docs.aws.amazon.com/cdk/latest/guide/bootstrapping.html for more about bootstrapping regions.
If the stack is in us-east-1, a "normal" lambda.Function can be used instead of an EdgeFunction.
// Using a lambda Function instead of an EdgeFunction for stacks in `us-east-`.
Function myFunc = Function.Builder.create(this, "MyFunction")
.runtime(Runtime.NODEJS_14_X)
.handler("index.handler")
.code(Code.fromAsset(join(__dirname, "lambda-handler")))
.build();
If the stack is not in us-east-1, and you need references from different applications on the same account,
you can also set a specific stack ID for each Lambda@Edge.
// Setting stackIds for EdgeFunctions that can be referenced from different applications
// on the same account.
EdgeFunction myFunc1 = EdgeFunction.Builder.create(this, "MyFunction1")
.runtime(Runtime.NODEJS_14_X)
.handler("index.handler")
.code(Code.fromAsset(join(__dirname, "lambda-handler1")))
.stackId("edge-lambda-stack-id-1")
.build();
EdgeFunction myFunc2 = EdgeFunction.Builder.create(this, "MyFunction2")
.runtime(Runtime.NODEJS_14_X)
.handler("index.handler")
.code(Code.fromAsset(join(__dirname, "lambda-handler2")))
.stackId("edge-lambda-stack-id-2")
.build();
Lambda@Edge functions can also be associated with additional behaviors, either at or after Distribution creation time.
// Associating a Lambda@Edge function with additional behaviors.
EdgeFunction myFunc;
// assigning at Distribution creation
Bucket myBucket;
S3Origin myOrigin = new S3Origin(myBucket);
Distribution myDistribution = Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder().origin(myOrigin).build())
.additionalBehaviors(Map.of(
"images/*", BehaviorOptions.builder()
.origin(myOrigin)
.edgeLambdas(List.of(EdgeLambda.builder()
.functionVersion(myFunc.getCurrentVersion())
.eventType(LambdaEdgeEventType.ORIGIN_REQUEST)
.includeBody(true)
.build()))
.build()))
.build();
// assigning after creation
myDistribution.addBehavior("images/*", myOrigin, AddBehaviorOptions.builder()
.edgeLambdas(List.of(EdgeLambda.builder()
.functionVersion(myFunc.getCurrentVersion())
.eventType(LambdaEdgeEventType.VIEWER_RESPONSE)
.build()))
.build());
Adding an existing Lambda@Edge function created in a different stack to a CloudFront distribution.
// Adding an existing Lambda@Edge function created in a different stack
// to a CloudFront distribution.
Bucket s3Bucket;
IVersion functionVersion = Version.fromVersionArn(this, "Version", "arn:aws:lambda:us-east-1:123456789012:function:functionName:1");
Distribution.Builder.create(this, "distro")
.defaultBehavior(BehaviorOptions.builder()
.origin(new S3Origin(s3Bucket))
.edgeLambdas(List.of(EdgeLambda.builder()
.functionVersion(functionVersion)
.eventType(LambdaEdgeEventType.VIEWER_REQUEST)
.build()))
.build())
.build();
CloudFront Function
You can also deploy CloudFront functions and add them to a CloudFront distribution.
Bucket s3Bucket;
// Add a cloudfront Function to a Distribution
Function cfFunction = Function.Builder.create(this, "Function")
.code(FunctionCode.fromInline("function handler(event) { return event.request }"))
.build();
Distribution.Builder.create(this, "distro")
.defaultBehavior(BehaviorOptions.builder()
.origin(new S3Origin(s3Bucket))
.functionAssociations(List.of(FunctionAssociation.builder()
.function(cfFunction)
.eventType(FunctionEventType.VIEWER_REQUEST)
.build()))
.build())
.build();
It will auto-generate the name of the function and deploy it to the live stage.
Additionally, you can load the function's code from a file using the FunctionCode.fromFile() method.
Logging
You can configure CloudFront to create log files that contain detailed information about every user request that CloudFront receives. The logs can go to either an existing bucket, or a bucket will be created for you.
// Configure logging for Distributions
// Simplest form - creates a new bucket and logs to it.
// Configure logging for Distributions
// Simplest form - creates a new bucket and logs to it.
Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder().origin(new HttpOrigin("www.example.com")).build())
.enableLogging(true)
.build();
// You can optionally log to a specific bucket, configure whether cookies are logged, and give the log files a prefix.
// You can optionally log to a specific bucket, configure whether cookies are logged, and give the log files a prefix.
Distribution.Builder.create(this, "myDist")
.defaultBehavior(BehaviorOptions.builder().origin(new HttpOrigin("www.example.com")).build())
.enableLogging(true) // Optional, this is implied if logBucket is specified
.logBucket(new Bucket(this, "LogBucket"))
.logFilePrefix("distribution-access-logs/")
.logIncludesCookies(true)
.build();
Importing Distributions
Existing distributions can be imported as well; note that like most imported constructs, an imported distribution cannot be modified. However, it can be used as a reference for other higher-level constructs.
// Using a reference to an imported Distribution
IDistribution distribution = Distribution.fromDistributionAttributes(this, "ImportedDist", DistributionAttributes.builder()
.domainName("d111111abcdef8.cloudfront.net")
.distributionId("012345ABCDEF")
.build());
Migrating from the original CloudFrontWebDistribution to the newer Distribution construct
It's possible to migrate a distribution from the original to the modern API. The changes necessary are the following:
The Distribution
Replace new CloudFrontWebDistribution with new Distribution. Some
configuration properties have been changed:
| Old API | New API |
|--------------------------------|------------------------------------------------------------------------------------------------|
| originConfigs | defaultBehavior; use additionalBehaviors if necessary |
| viewerCertificate | certificate; use domainNames for aliases |
| errorConfigurations | errorResponses |
| loggingConfig | enableLogging; configure with logBucket logFilePrefix and logIncludesCookies |
| viewerProtocolPolicy | removed; set on each behavior instead. default changed from REDIRECT_TO_HTTPS to ALLOW_ALL |
After switching constructs, you need to maintain the same logical ID for the underlying CfnDistribution if you wish to avoid the deletion and recreation of your distribution. To do this, use escape hatches to override the logical ID created by the new Distribution construct with the logical ID created by the old construct.
Example:
Bucket sourceBucket;
Distribution myDistribution = Distribution.Builder.create(this, "MyCfWebDistribution")
.defaultBehavior(BehaviorOptions.builder()
.origin(new S3Origin(sourceBucket))
.build())
.build();
CfnDistribution cfnDistribution = (CfnDistribution)myDistribution.getNode().getDefaultChild();
cfnDistribution.overrideLogicalId("MyDistributionCFDistribution3H55TI9Q");
Behaviors
The modern API makes use of the CloudFront Origins module to easily configure your origin. Replace your origin configuration with the relevant CloudFront Origins class. For example, here's a behavior with an S3 origin:
Bucket sourceBucket;
OriginAccessIdentity oai;
CloudFrontWebDistribution.Builder.create(this, "MyCfWebDistribution")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder()
.s3BucketSource(sourceBucket)
.originAccessIdentity(oai)
.build())
.behaviors(List.of(Behavior.builder().isDefaultBehavior(true).build()))
.build()))
.build();
Becomes:
Bucket sourceBucket;
Distribution distribution = Distribution.Builder.create(this, "MyCfWebDistribution")
.defaultBehavior(BehaviorOptions.builder()
.origin(new S3Origin(sourceBucket))
.build())
.build();
In the original API all behaviors are defined in the originConfigs property. The new API is optimized for a single origin and behavior, so the default behavior and additional behaviors will be defined separately.
Bucket sourceBucket;
OriginAccessIdentity oai;
CloudFrontWebDistribution.Builder.create(this, "MyCfWebDistribution")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder()
.s3BucketSource(sourceBucket)
.originAccessIdentity(oai)
.build())
.behaviors(List.of(Behavior.builder().isDefaultBehavior(true).build()))
.build(), SourceConfiguration.builder()
.customOriginSource(CustomOriginConfig.builder()
.domainName("MYALIAS")
.build())
.behaviors(List.of(Behavior.builder().pathPattern("/somewhere").build()))
.build()))
.build();
Becomes:
Bucket sourceBucket;
Distribution distribution = Distribution.Builder.create(this, "MyCfWebDistribution")
.defaultBehavior(BehaviorOptions.builder()
.origin(new S3Origin(sourceBucket))
.build())
.additionalBehaviors(Map.of(
"/somewhere", BehaviorOptions.builder()
.origin(new HttpOrigin("MYALIAS"))
.build()))
.build();
Certificates
If you are using an ACM certificate, you can pass the certificate directly to the certificate prop.
Any aliases used before in the ViewerCertificate class should be passed in to the domainNames prop in the modern API.
import software.amazon.awscdk.services.certificatemanager.*;
Certificate certificate;
Bucket sourceBucket;
ViewerCertificate viewerCertificate = ViewerCertificate.fromAcmCertificate(certificate, ViewerCertificateOptions.builder()
.aliases(List.of("MYALIAS"))
.build());
CloudFrontWebDistribution.Builder.create(this, "MyCfWebDistribution")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder()
.s3BucketSource(sourceBucket)
.build())
.behaviors(List.of(Behavior.builder().isDefaultBehavior(true).build()))
.build()))
.viewerCertificate(viewerCertificate)
.build();
Becomes:
import software.amazon.awscdk.services.certificatemanager.*;
Certificate certificate;
Bucket sourceBucket;
Distribution distribution = Distribution.Builder.create(this, "MyCfWebDistribution")
.defaultBehavior(BehaviorOptions.builder()
.origin(new S3Origin(sourceBucket))
.build())
.domainNames(List.of("MYALIAS"))
.certificate(certificate)
.build();
IAM certificates aren't directly supported by the new API, but can be easily configured through escape hatches
Bucket sourceBucket;
ViewerCertificate viewerCertificate = ViewerCertificate.fromIamCertificate("MYIAMROLEIDENTIFIER", ViewerCertificateOptions.builder()
.aliases(List.of("MYALIAS"))
.build());
CloudFrontWebDistribution.Builder.create(this, "MyCfWebDistribution")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder()
.s3BucketSource(sourceBucket)
.build())
.behaviors(List.of(Behavior.builder().isDefaultBehavior(true).build()))
.build()))
.viewerCertificate(viewerCertificate)
.build();
Becomes:
Bucket sourceBucket;
Distribution distribution = Distribution.Builder.create(this, "MyCfWebDistribution")
.defaultBehavior(BehaviorOptions.builder()
.origin(new S3Origin(sourceBucket))
.build())
.domainNames(List.of("MYALIAS"))
.build();
CfnDistribution cfnDistribution = (CfnDistribution)distribution.getNode().getDefaultChild();
cfnDistribution.addPropertyOverride("ViewerCertificate.IamCertificateId", "MYIAMROLEIDENTIFIER");
cfnDistribution.addPropertyOverride("ViewerCertificate.SslSupportMethod", "sni-only");
Other changes
A number of default settings have changed on the new API when creating a new distribution, behavior, and origin.
After making the major changes needed for the migration, run cdk diff to see what settings have changed.
If no changes are desired during migration, you will at the least be able to use escape hatches to override what the CDK synthesizes, if you can't change the properties directly.
CloudFrontWebDistribution API
The
CloudFrontWebDistributionconstruct is the original construct written for working with CloudFront distributions. Users are encouraged to use the newerDistributioninstead, as it has a simpler interface and receives new features faster.
Example usage:
// Using a CloudFrontWebDistribution construct.
Bucket sourceBucket;
CloudFrontWebDistribution distribution = CloudFrontWebDistribution.Builder.create(this, "MyDistribution")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder()
.s3BucketSource(sourceBucket)
.build())
.behaviors(List.of(Behavior.builder().isDefaultBehavior(true).build()))
.build()))
.build();
Viewer certificate
By default, CloudFront Web Distributions will answer HTTPS requests with CloudFront's default certificate,
only containing the distribution domainName (e.g. d111111abcdef8.cloudfront.net).
You can customize the viewer certificate property to provide a custom certificate and/or list of domain name aliases to fit your needs.
See Using Alternate Domain Names and HTTPS in the CloudFront User Guide.
Default certificate
You can customize the default certificate aliases. This is intended to be used in combination with CNAME records in your DNS zone.
Example:
Bucket s3BucketSource = new Bucket(this, "Bucket");
CloudFrontWebDistribution distribution = CloudFrontWebDistribution.Builder.create(this, "AnAmazingWebsiteProbably")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder().s3BucketSource(s3BucketSource).build())
.behaviors(List.of(Behavior.builder().isDefaultBehavior(true).build()))
.build()))
.viewerCertificate(ViewerCertificate.fromCloudFrontDefaultCertificate("www.example.com"))
.build();
ACM certificate
You can change the default certificate by one stored AWS Certificate Manager, or ACM. Those certificate can either be generated by AWS, or purchased by another CA imported into ACM.
For more information, see the aws-certificatemanager module documentation or Importing Certificates into AWS Certificate Manager in the AWS Certificate Manager User Guide.
Example:
Bucket s3BucketSource = new Bucket(this, "Bucket");
Certificate certificate = Certificate.Builder.create(this, "Certificate")
.domainName("example.com")
.subjectAlternativeNames(List.of("*.example.com"))
.build();
CloudFrontWebDistribution distribution = CloudFrontWebDistribution.Builder.create(this, "AnAmazingWebsiteProbably")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder().s3BucketSource(s3BucketSource).build())
.behaviors(List.of(Behavior.builder().isDefaultBehavior(true).build()))
.build()))
.viewerCertificate(ViewerCertificate.fromAcmCertificate(certificate, ViewerCertificateOptions.builder()
.aliases(List.of("example.com", "www.example.com"))
.securityPolicy(SecurityPolicyProtocol.TLS_V1) // default
.sslMethod(SSLMethod.SNI)
.build()))
.build();
IAM certificate
You can also import a certificate into the IAM certificate store.
See Importing an SSL/TLS Certificate in the CloudFront User Guide.
Example:
Bucket s3BucketSource = new Bucket(this, "Bucket");
CloudFrontWebDistribution distribution = CloudFrontWebDistribution.Builder.create(this, "AnAmazingWebsiteProbably")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder().s3BucketSource(s3BucketSource).build())
.behaviors(List.of(Behavior.builder().isDefaultBehavior(true).build()))
.build()))
.viewerCertificate(ViewerCertificate.fromIamCertificate("certificateId", ViewerCertificateOptions.builder()
.aliases(List.of("example.com"))
.securityPolicy(SecurityPolicyProtocol.SSL_V3) // default
.sslMethod(SSLMethod.SNI)
.build()))
.build();
Trusted Key Groups
CloudFront Web Distributions supports validating signed URLs or signed cookies using key groups. When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior.
Example:
// Using trusted key groups for Cloudfront Web Distributions.
Bucket sourceBucket;
String publicKey;
PublicKey pubKey = PublicKey.Builder.create(this, "MyPubKey")
.encodedKey(publicKey)
.build();
KeyGroup keyGroup = KeyGroup.Builder.create(this, "MyKeyGroup")
.items(List.of(pubKey))
.build();
CloudFrontWebDistribution.Builder.create(this, "AnAmazingWebsiteProbably")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder()
.s3BucketSource(sourceBucket)
.build())
.behaviors(List.of(Behavior.builder()
.isDefaultBehavior(true)
.trustedKeyGroups(List.of(keyGroup))
.build()))
.build()))
.build();
Restrictions
CloudFront supports adding restrictions to your distribution.
See Restricting the Geographic Distribution of Your Content in the CloudFront User Guide.
Example:
// Adding restrictions to a Cloudfront Web Distribution.
Bucket sourceBucket;
CloudFrontWebDistribution.Builder.create(this, "MyDistribution")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder()
.s3BucketSource(sourceBucket)
.build())
.behaviors(List.of(Behavior.builder().isDefaultBehavior(true).build()))
.build()))
.geoRestriction(GeoRestriction.allowlist("US", "GB"))
.build();
Connection behaviors between CloudFront and your origin
CloudFront provides you even more control over the connection behaviors between CloudFront and your origin. You can now configure the number of connection attempts CloudFront will make to your origin and the origin connection timeout for each attempt.
See Origin Connection Attempts
Example usage:
// Configuring connection behaviors between Cloudfront and your origin
CloudFrontWebDistribution distribution = CloudFrontWebDistribution.Builder.create(this, "MyDistribution")
.originConfigs(List.of(SourceConfiguration.builder()
.connectionAttempts(3)
.connectionTimeout(Duration.seconds(10))
.behaviors(List.of(Behavior.builder()
.isDefaultBehavior(true)
.build()))
.build()))
.build();
Origin Fallback
In case the origin source is not available and answers with one of the specified status codes the failover origin source will be used.
// Configuring origin fallback options for the CloudFrontWebDistribution
// Configuring origin fallback options for the CloudFrontWebDistribution
CloudFrontWebDistribution.Builder.create(this, "ADistribution")
.originConfigs(List.of(SourceConfiguration.builder()
.s3OriginSource(S3OriginConfig.builder()
.s3BucketSource(Bucket.fromBucketName(this, "aBucket", "myoriginbucket"))
.originPath("/")
.originHeaders(Map.of(
"myHeader", "42"))
.originShieldRegion("us-west-2")
.build())
.failoverS3OriginSource(S3OriginConfig.builder()
.s3BucketSource(Bucket.fromBucketName(this, "aBucketFallback", "myoriginbucketfallback"))
.originPath("/somewhere")
.originHeaders(Map.of(
"myHeader2", "21"))
.originShieldRegion("us-east-1")
.build())
.failoverCriteriaStatusCodes(List.of(FailoverStatusCode.INTERNAL_SERVER_ERROR))
.behaviors(List.of(Behavior.builder()
.isDefaultBehavior(true)
.build()))
.build()))
.build();
KeyGroup & PublicKey API
You can create a key group to use with CloudFront signed URLs and signed cookies You can add public keys to use with CloudFront features such as signed URLs, signed cookies, and field-level encryption.
The following example command uses OpenSSL to generate an RSA key pair with a length of 2048 bits and save to the file named private_key.pem.
openssl genrsa -out private_key.pem 2048
The resulting file contains both the public and the private key. The following example command extracts the public key from the file named private_key.pem and stores it in public_key.pem.
openssl rsa -pubout -in private_key.pem -out public_key.pem
Note: Don't forget to copy/paste the contents of public_key.pem file including -----BEGIN PUBLIC KEY----- and -----END PUBLIC KEY----- lines into encodedKey parameter when creating a PublicKey.
Example:
// Create a key group to use with CloudFront signed URLs and signed cookies.
// Create a key group to use with CloudFront signed URLs and signed cookies.
KeyGroup.Builder.create(this, "MyKeyGroup")
.items(List.of(
PublicKey.Builder.create(this, "MyPublicKey")
.encodedKey("...")
.build()))
.build();
See:
- https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
- https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-trusted-signers.html
-
ClassDescriptionOptions for adding a new behavior to a Distribution.A builder for
AddBehaviorOptionsAn implementation forAddBehaviorOptionsDeprecated.Deprecated.Deprecated.The HTTP methods that the Behavior will accept requests on.A CloudFront behavior wrapper.A builder forBehaviorAn implementation forBehaviorOptions for creating a new behavior.A builder forBehaviorOptionsAn implementation forBehaviorOptionsDetermines whether any cookies in viewer requests are included in the cache key and automatically included in requests that CloudFront sends to the origin.The HTTP methods that the Behavior will cache requests on.Determines whether any HTTP headers are included in the cache key and automatically included in requests that CloudFront sends to the origin.A Cache Policy configuration.A fluent builder forCachePolicy.Properties for creating a Cache Policy.A builder forCachePolicyPropsAn implementation forCachePolicyPropsDetermines whether any URL query strings in viewer requests are included in the cache key and automatically included in requests that CloudFront sends to the origin.A CloudFormationAWS::CloudFront::CachePolicy.A fluent builder forCfnCachePolicy.A cache policy configuration.A builder forCfnCachePolicy.CachePolicyConfigPropertyAn implementation forCfnCachePolicy.CachePolicyConfigPropertyAn object that determines whether any cookies in viewer requests (and if so, which cookies) are included in the cache key and in requests that CloudFront sends to the origin.A builder forCfnCachePolicy.CookiesConfigPropertyAn implementation forCfnCachePolicy.CookiesConfigPropertyAn object that determines whether any HTTP headers (and if so, which headers) are included in the cache key and in requests that CloudFront sends to the origin.A builder forCfnCachePolicy.HeadersConfigPropertyAn implementation forCfnCachePolicy.HeadersConfigPropertyThis object determines the values that CloudFront includes in the cache key.An implementation forCfnCachePolicy.ParametersInCacheKeyAndForwardedToOriginPropertyAn object that determines whether any URL query strings in viewer requests (and if so, which query strings) are included in the cache key and in requests that CloudFront sends to the origin.A builder forCfnCachePolicy.QueryStringsConfigPropertyAn implementation forCfnCachePolicy.QueryStringsConfigPropertyProperties for defining aCfnCachePolicy.A builder forCfnCachePolicyPropsAn implementation forCfnCachePolicyPropsA CloudFormationAWS::CloudFront::CloudFrontOriginAccessIdentity.A fluent builder forCfnCloudFrontOriginAccessIdentity.Origin access identity configuration.An implementation forCfnCloudFrontOriginAccessIdentity.CloudFrontOriginAccessIdentityConfigPropertyProperties for defining aCfnCloudFrontOriginAccessIdentity.A builder forCfnCloudFrontOriginAccessIdentityPropsAn implementation forCfnCloudFrontOriginAccessIdentityPropsA CloudFormationAWS::CloudFront::ContinuousDeploymentPolicy.A fluent builder forCfnContinuousDeploymentPolicy.Contains the configuration for a continuous deployment policy.An implementation forCfnContinuousDeploymentPolicy.ContinuousDeploymentPolicyConfigPropertySession stickiness provides the ability to define multiple requests from a single viewer as a single session.An implementation forCfnContinuousDeploymentPolicy.SessionStickinessConfigPropertyDetermines which HTTP requests are sent to the staging distribution.A builder forCfnContinuousDeploymentPolicy.SingleHeaderConfigPropertyAn implementation forCfnContinuousDeploymentPolicy.SingleHeaderConfigPropertyThis configuration determines the percentage of HTTP requests that are sent to the staging distribution.A builder forCfnContinuousDeploymentPolicy.SingleWeightConfigPropertyAn implementation forCfnContinuousDeploymentPolicy.SingleWeightConfigPropertyThe traffic configuration of your continuous deployment.A builder forCfnContinuousDeploymentPolicy.TrafficConfigPropertyAn implementation forCfnContinuousDeploymentPolicy.TrafficConfigPropertyProperties for defining aCfnContinuousDeploymentPolicy.A builder forCfnContinuousDeploymentPolicyPropsAn implementation forCfnContinuousDeploymentPolicyPropsA CloudFormationAWS::CloudFront::Distribution.A fluent builder forCfnDistribution.A complex type that describes how CloudFront processes requests.A builder forCfnDistribution.CacheBehaviorPropertyAn implementation forCfnDistribution.CacheBehaviorPropertyThis field is deprecated.A builder forCfnDistribution.CookiesPropertyAn implementation forCfnDistribution.CookiesPropertyA complex type that controls:.A builder forCfnDistribution.CustomErrorResponsePropertyAn implementation forCfnDistribution.CustomErrorResponsePropertyA custom origin.A builder forCfnDistribution.CustomOriginConfigPropertyAn implementation forCfnDistribution.CustomOriginConfigPropertyA complex type that describes the default cache behavior if you don't specify aCacheBehaviorelement or if request URLs don't match any of the values ofPathPatterninCacheBehaviorelements.A builder forCfnDistribution.DefaultCacheBehaviorPropertyAn implementation forCfnDistribution.DefaultCacheBehaviorPropertyA distribution configuration.A builder forCfnDistribution.DistributionConfigPropertyAn implementation forCfnDistribution.DistributionConfigPropertyThis field is deprecated.A builder forCfnDistribution.ForwardedValuesPropertyAn implementation forCfnDistribution.ForwardedValuesPropertyA CloudFront function that is associated with a cache behavior in a CloudFront distribution.A builder forCfnDistribution.FunctionAssociationPropertyAn implementation forCfnDistribution.FunctionAssociationPropertyA complex type that controls the countries in which your content is distributed.A builder forCfnDistribution.GeoRestrictionPropertyAn implementation forCfnDistribution.GeoRestrictionPropertyA complex type that contains a Lambda@Edge function association.A builder forCfnDistribution.LambdaFunctionAssociationPropertyAn implementation forCfnDistribution.LambdaFunctionAssociationPropertyExample:A builder forCfnDistribution.LegacyCustomOriginPropertyAn implementation forCfnDistribution.LegacyCustomOriginPropertyExample:A builder forCfnDistribution.LegacyS3OriginPropertyAn implementation forCfnDistribution.LegacyS3OriginPropertyA complex type that controls whether access logs are written for the distribution.A builder forCfnDistribution.LoggingPropertyAn implementation forCfnDistribution.LoggingPropertyA complex type that containsHeaderNameandHeaderValueelements, if any, for this distribution.A builder forCfnDistribution.OriginCustomHeaderPropertyAn implementation forCfnDistribution.OriginCustomHeaderPropertyA complex data type that includes information about the failover criteria for an origin group, including the status codes for which CloudFront will failover from the primary origin to the second origin.A builder forCfnDistribution.OriginGroupFailoverCriteriaPropertyAn implementation forCfnDistribution.OriginGroupFailoverCriteriaPropertyAn origin in an origin group.A builder forCfnDistribution.OriginGroupMemberPropertyAn implementation forCfnDistribution.OriginGroupMemberPropertyA complex data type for the origins included in an origin group.A builder forCfnDistribution.OriginGroupMembersPropertyAn implementation forCfnDistribution.OriginGroupMembersPropertyAn origin group includes two origins (a primary origin and a second origin to failover to) and a failover criteria that you specify.A builder forCfnDistribution.OriginGroupPropertyAn implementation forCfnDistribution.OriginGroupPropertyA complex data type for the origin groups specified for a distribution.A builder forCfnDistribution.OriginGroupsPropertyAn implementation forCfnDistribution.OriginGroupsPropertyAn origin.A builder forCfnDistribution.OriginPropertyAn implementation forCfnDistribution.OriginPropertyCloudFront Origin Shield.A builder forCfnDistribution.OriginShieldPropertyAn implementation forCfnDistribution.OriginShieldPropertyA complex type that identifies ways in which you want to restrict distribution of your content.A builder forCfnDistribution.RestrictionsPropertyAn implementation forCfnDistribution.RestrictionsPropertyA complex type that contains information about the Amazon S3 origin.A builder forCfnDistribution.S3OriginConfigPropertyAn implementation forCfnDistribution.S3OriginConfigPropertyA complex data type for the status codes that you specify that, when returned by a primary origin, trigger CloudFront to failover to a second origin.A builder forCfnDistribution.StatusCodesPropertyAn implementation forCfnDistribution.StatusCodesPropertyA complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.A builder forCfnDistribution.ViewerCertificatePropertyAn implementation forCfnDistribution.ViewerCertificatePropertyProperties for defining aCfnDistribution.A builder forCfnDistributionPropsAn implementation forCfnDistributionPropsA CloudFormationAWS::CloudFront::Function.A fluent builder forCfnFunction.Contains configuration information about a CloudFront function.A builder forCfnFunction.FunctionConfigPropertyAn implementation forCfnFunction.FunctionConfigPropertyContains metadata about a CloudFront function.A builder forCfnFunction.FunctionMetadataPropertyAn implementation forCfnFunction.FunctionMetadataPropertyProperties for defining aCfnFunction.A builder forCfnFunctionPropsAn implementation forCfnFunctionPropsA CloudFormationAWS::CloudFront::KeyGroup.A fluent builder forCfnKeyGroup.A key group configuration.A builder forCfnKeyGroup.KeyGroupConfigPropertyAn implementation forCfnKeyGroup.KeyGroupConfigPropertyProperties for defining aCfnKeyGroup.A builder forCfnKeyGroupPropsAn implementation forCfnKeyGroupPropsA CloudFormationAWS::CloudFront::MonitoringSubscription.A fluent builder forCfnMonitoringSubscription.A monitoring subscription.A builder forCfnMonitoringSubscription.MonitoringSubscriptionPropertyAn implementation forCfnMonitoringSubscription.MonitoringSubscriptionPropertyA subscription configuration for additional CloudWatch metrics.An implementation forCfnMonitoringSubscription.RealtimeMetricsSubscriptionConfigPropertyProperties for defining aCfnMonitoringSubscription.A builder forCfnMonitoringSubscriptionPropsAn implementation forCfnMonitoringSubscriptionPropsA CloudFormationAWS::CloudFront::OriginAccessControl.A fluent builder forCfnOriginAccessControl.Creates a new origin access control in CloudFront.A builder forCfnOriginAccessControl.OriginAccessControlConfigPropertyAn implementation forCfnOriginAccessControl.OriginAccessControlConfigPropertyProperties for defining aCfnOriginAccessControl.A builder forCfnOriginAccessControlPropsAn implementation forCfnOriginAccessControlPropsA CloudFormationAWS::CloudFront::OriginRequestPolicy.A fluent builder forCfnOriginRequestPolicy.An object that determines whether any cookies in viewer requests (and if so, which cookies) are included in requests that CloudFront sends to the origin.A builder forCfnOriginRequestPolicy.CookiesConfigPropertyAn implementation forCfnOriginRequestPolicy.CookiesConfigPropertyAn object that determines whether any HTTP headers (and if so, which headers) are included in requests that CloudFront sends to the origin.A builder forCfnOriginRequestPolicy.HeadersConfigPropertyAn implementation forCfnOriginRequestPolicy.HeadersConfigPropertyAn origin request policy configuration.A builder forCfnOriginRequestPolicy.OriginRequestPolicyConfigPropertyAn implementation forCfnOriginRequestPolicy.OriginRequestPolicyConfigPropertyAn object that determines whether any URL query strings in viewer requests (and if so, which query strings) are included in requests that CloudFront sends to the origin.A builder forCfnOriginRequestPolicy.QueryStringsConfigPropertyAn implementation forCfnOriginRequestPolicy.QueryStringsConfigPropertyProperties for defining aCfnOriginRequestPolicy.A builder forCfnOriginRequestPolicyPropsAn implementation forCfnOriginRequestPolicyPropsA CloudFormationAWS::CloudFront::PublicKey.A fluent builder forCfnPublicKey.Configuration information about a public key that you can use with signed URLs and signed cookies , or with field-level encryption .A builder forCfnPublicKey.PublicKeyConfigPropertyAn implementation forCfnPublicKey.PublicKeyConfigPropertyProperties for defining aCfnPublicKey.A builder forCfnPublicKeyPropsAn implementation forCfnPublicKeyPropsA CloudFormationAWS::CloudFront::RealtimeLogConfig.A fluent builder forCfnRealtimeLogConfig.Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.A builder forCfnRealtimeLogConfig.EndPointPropertyAn implementation forCfnRealtimeLogConfig.EndPointPropertyContains information about the Amazon Kinesis data stream where you are sending real-time log data.A builder forCfnRealtimeLogConfig.KinesisStreamConfigPropertyAn implementation forCfnRealtimeLogConfig.KinesisStreamConfigPropertyProperties for defining aCfnRealtimeLogConfig.A builder forCfnRealtimeLogConfigPropsAn implementation forCfnRealtimeLogConfigPropsA CloudFormationAWS::CloudFront::ResponseHeadersPolicy.A list of HTTP header names that CloudFront includes as values for theAccess-Control-Allow-HeadersHTTP response header.An implementation forCfnResponseHeadersPolicy.AccessControlAllowHeadersPropertyA list of HTTP methods that CloudFront includes as values for theAccess-Control-Allow-MethodsHTTP response header.An implementation forCfnResponseHeadersPolicy.AccessControlAllowMethodsPropertyA list of origins (domain names) that CloudFront can use as the value for theAccess-Control-Allow-OriginHTTP response header.An implementation forCfnResponseHeadersPolicy.AccessControlAllowOriginsPropertyA list of HTTP headers that CloudFront includes as values for theAccess-Control-Expose-HeadersHTTP response header.An implementation forCfnResponseHeadersPolicy.AccessControlExposeHeadersPropertyA fluent builder forCfnResponseHeadersPolicy.The policy directives and their values that CloudFront includes as values for theContent-Security-PolicyHTTP response header.A builder forCfnResponseHeadersPolicy.ContentSecurityPolicyPropertyAn implementation forCfnResponseHeadersPolicy.ContentSecurityPolicyPropertyDetermines whether CloudFront includes theX-Content-Type-OptionsHTTP response header with its value set tonosniff.A builder forCfnResponseHeadersPolicy.ContentTypeOptionsPropertyAn implementation forCfnResponseHeadersPolicy.ContentTypeOptionsPropertyA configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).A builder forCfnResponseHeadersPolicy.CorsConfigPropertyAn implementation forCfnResponseHeadersPolicy.CorsConfigPropertyAn HTTP response header name and its value.A builder forCfnResponseHeadersPolicy.CustomHeaderPropertyAn implementation forCfnResponseHeadersPolicy.CustomHeaderPropertyA list of HTTP response header names and their values.A builder forCfnResponseHeadersPolicy.CustomHeadersConfigPropertyAn implementation forCfnResponseHeadersPolicy.CustomHeadersConfigPropertyDetermines whether CloudFront includes theX-Frame-OptionsHTTP response header and the header's value.A builder forCfnResponseHeadersPolicy.FrameOptionsPropertyAn implementation forCfnResponseHeadersPolicy.FrameOptionsPropertyDetermines whether CloudFront includes theReferrer-PolicyHTTP response header and the header's value.A builder forCfnResponseHeadersPolicy.ReferrerPolicyPropertyAn implementation forCfnResponseHeadersPolicy.ReferrerPolicyPropertyThe name of an HTTP header that CloudFront removes from HTTP responses to requests that match the cache behavior that this response headers policy is attached to.A builder forCfnResponseHeadersPolicy.RemoveHeaderPropertyAn implementation forCfnResponseHeadersPolicy.RemoveHeaderPropertyA list of HTTP header names that CloudFront removes from HTTP responses to requests that match the cache behavior that this response headers policy is attached to.A builder forCfnResponseHeadersPolicy.RemoveHeadersConfigPropertyAn implementation forCfnResponseHeadersPolicy.RemoveHeadersConfigPropertyA response headers policy configuration.An implementation forCfnResponseHeadersPolicy.ResponseHeadersPolicyConfigPropertyA configuration for a set of security-related HTTP response headers.A builder forCfnResponseHeadersPolicy.SecurityHeadersConfigPropertyAn implementation forCfnResponseHeadersPolicy.SecurityHeadersConfigPropertyA configuration for enabling theServer-Timingheader in HTTP responses sent from CloudFront.An implementation forCfnResponseHeadersPolicy.ServerTimingHeadersConfigPropertyDetermines whether CloudFront includes theStrict-Transport-SecurityHTTP response header and the header's value.A builder forCfnResponseHeadersPolicy.StrictTransportSecurityPropertyAn implementation forCfnResponseHeadersPolicy.StrictTransportSecurityPropertyDetermines whether CloudFront includes theX-XSS-ProtectionHTTP response header and the header's value.A builder forCfnResponseHeadersPolicy.XSSProtectionPropertyAn implementation forCfnResponseHeadersPolicy.XSSProtectionPropertyProperties for defining aCfnResponseHeadersPolicy.A builder forCfnResponseHeadersPolicyPropsAn implementation forCfnResponseHeadersPolicyPropsA CloudFormationAWS::CloudFront::StreamingDistribution.A fluent builder forCfnStreamingDistribution.A complex type that controls whether access logs are written for the streaming distribution.A builder forCfnStreamingDistribution.LoggingPropertyAn implementation forCfnStreamingDistribution.LoggingPropertyA complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.A builder forCfnStreamingDistribution.S3OriginPropertyAn implementation forCfnStreamingDistribution.S3OriginPropertyThe RTMP distribution's configuration information.An implementation forCfnStreamingDistribution.StreamingDistributionConfigPropertyA list of AWS accounts whose public keys CloudFront can use to verify the signatures of signed URLs and signed cookies.A builder forCfnStreamingDistribution.TrustedSignersPropertyAn implementation forCfnStreamingDistribution.TrustedSignersPropertyProperties for defining aCfnStreamingDistribution.A builder forCfnStreamingDistributionPropsAn implementation forCfnStreamingDistributionPropsEnums for the methods CloudFront can cache.An enum for the supported methods to a CloudFront distribution.Amazon CloudFront is a global content delivery network (CDN) service that securely delivers data, videos, applications, and APIs to your viewers with low latency and high transfer speeds.A fluent builder forCloudFrontWebDistribution.Attributes used to import a Distribution.A builder forCloudFrontWebDistributionAttributesAn implementation forCloudFrontWebDistributionAttributesExample:A builder forCloudFrontWebDistributionPropsAn implementation forCloudFrontWebDistributionPropsA custom origin configuration.A builder forCustomOriginConfigAn implementation forCustomOriginConfigA CloudFront distribution with associated origin(s) and caching behavior(s).A fluent builder forDistribution.Attributes used to import a Distribution.A builder forDistributionAttributesAn implementation forDistributionAttributesProperties for a Distribution.A builder forDistributionPropsAn implementation forDistributionPropsRepresents a Lambda function version and event type when using Lambda@Edge.A builder forEdgeLambdaAn implementation forEdgeLambdaOptions for configuring custom error responses.A builder forErrorResponseAn implementation forErrorResponseHTTP status code to failover to second origin.Options when reading the function's code from an external file.A builder forFileCodeOptionsAn implementation forFileCodeOptionsA CloudFront Function.A fluent builder forFunction.Represents a CloudFront function and event type when using CF Functions.A builder forFunctionAssociationAn implementation forFunctionAssociationAttributes of an existing CloudFront Function to import it.A builder forFunctionAttributesAn implementation forFunctionAttributesRepresents the function's source code.The type of events that a CloudFront function can be invoked in response to.Properties for creating a CloudFront Function.A builder forFunctionPropsAn implementation forFunctionPropsControls the countries in which content is distributed.Enum representing possible values of the X-Frame-Options HTTP response header.Enum representing possible values of the Referrer-Policy HTTP response header.Maximum HTTP version to support.Represents a Cache Policy.Internal default implementation forICachePolicy.A proxy class which represents a concrete javascript instance of this type.Interface for CloudFront distributions.Internal default implementation forIDistribution.A proxy class which represents a concrete javascript instance of this type.Represents a CloudFront Function.Internal default implementation forIFunction.A proxy class which represents a concrete javascript instance of this type.Represents a Key Group.Internal default implementation forIKeyGroup.A proxy class which represents a concrete javascript instance of this type.Represents the concept of a CloudFront Origin.Internal default implementation forIOrigin.A proxy class which represents a concrete javascript instance of this type.Interface for CloudFront OriginAccessIdentity.Internal default implementation forIOriginAccessIdentity.A proxy class which represents a concrete javascript instance of this type.Represents a Origin Request Policy.Internal default implementation forIOriginRequestPolicy.A proxy class which represents a concrete javascript instance of this type.Represents a Public Key.Internal default implementation forIPublicKey.A proxy class which represents a concrete javascript instance of this type.Represents a response headers policy.Internal default implementation forIResponseHeadersPolicy.A proxy class which represents a concrete javascript instance of this type.A Key Group configuration.A fluent builder forKeyGroup.Properties for creating a Public Key.A builder forKeyGroupPropsAn implementation forKeyGroupPropsThe type of events that a Lambda@Edge function can be invoked in response to.Example:A builder forLambdaFunctionAssociationAn implementation forLambdaFunctionAssociationLogging configuration for incoming requests.A builder forLoggingConfigurationAn implementation forLoggingConfigurationAn origin access identity is a special CloudFront user that you can associate with Amazon S3 origins, so that you can secure all or just some of your Amazon S3 content.A fluent builder forOriginAccessIdentity.Properties of CloudFront OriginAccessIdentity.A builder forOriginAccessIdentityPropsAn implementation forOriginAccessIdentityPropsRepresents a distribution origin, that describes the Amazon S3 bucket, HTTP server (for example, a web server), Amazon MediaStore, or other server from which CloudFront gets your files.The struct returned fromIOrigin.bind.A builder forOriginBindConfigAn implementation forOriginBindConfigOptions passed to Origin.bind().A builder forOriginBindOptionsAn implementation forOriginBindOptionsThe failover configuration used for Origin Groups, returned inOriginBindConfig.failoverConfig.A builder forOriginFailoverConfigAn implementation forOriginFailoverConfigOptions to define an Origin.A builder forOriginOptionsAn implementation forOriginOptionsProperties to define an Origin.A builder forOriginPropsAn implementation forOriginPropsDefines what protocols CloudFront will use to connect to an origin.Determines whether any cookies in viewer requests (and if so, which cookies) are included in requests that CloudFront sends to the origin.Determines whether any HTTP headers (and if so, which headers) are included in requests that CloudFront sends to the origin.A Origin Request Policy configuration.A fluent builder forOriginRequestPolicy.Properties for creating a Origin Request Policy.A builder forOriginRequestPolicyPropsAn implementation forOriginRequestPolicyPropsDetermines whether any URL query strings in viewer requests (and if so, which query strings) are included in requests that CloudFront sends to the origin.The price class determines how many edge locations CloudFront will use for your distribution.A Public Key Configuration.A fluent builder forPublicKey.Properties for creating a Public Key.A builder forPublicKeyPropsAn implementation forPublicKeyPropsAn HTTP response header name and its value.A builder forResponseCustomHeaderAn implementation forResponseCustomHeaderConfiguration for a set of HTTP response headers that are sent for requests that match a cache behavior that’s associated with this response headers policy.A builder forResponseCustomHeadersBehaviorAn implementation forResponseCustomHeadersBehaviorThe policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.A builder forResponseHeadersContentSecurityPolicyAn implementation forResponseHeadersContentSecurityPolicyDetermines whether CloudFront includes the X-Content-Type-Options HTTP response header with its value set to nosniff.A builder forResponseHeadersContentTypeOptionsAn implementation forResponseHeadersContentTypeOptionsConfiguration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).A builder forResponseHeadersCorsBehaviorAn implementation forResponseHeadersCorsBehaviorDetermines whether CloudFront includes the X-Frame-Options HTTP response header and the header’s value.A builder forResponseHeadersFrameOptionsAn implementation forResponseHeadersFrameOptionsA Response Headers Policy configuration.A fluent builder forResponseHeadersPolicy.Properties for creating a Response Headers Policy.A builder forResponseHeadersPolicyPropsAn implementation forResponseHeadersPolicyPropsDetermines whether CloudFront includes the Referrer-Policy HTTP response header and the header’s value.A builder forResponseHeadersReferrerPolicyAn implementation forResponseHeadersReferrerPolicyDetermines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header’s value.A builder forResponseHeadersStrictTransportSecurityAn implementation forResponseHeadersStrictTransportSecurityDetermines whether CloudFront includes the X-XSS-Protection HTTP response header and the header’s value.A builder forResponseHeadersXSSProtectionAn implementation forResponseHeadersXSSProtectionConfiguration for a set of security-related HTTP response headers.A builder forResponseSecurityHeadersBehaviorAn implementation forResponseSecurityHeadersBehaviorS3 origin configuration for CloudFront.A builder forS3OriginConfigAn implementation forS3OriginConfigThe minimum version of the SSL protocol that you want CloudFront to use for HTTPS connections.A source configuration is a wrapper for CloudFront origins and behaviors.A builder forSourceConfigurationAn implementation forSourceConfigurationThe SSL method CloudFront will use for your distribution.Viewer certificate configuration class.Example:A builder forViewerCertificateOptionsAn implementation forViewerCertificateOptionsHow HTTPs should be handled with your distribution.
CloudFrontWebDistributionProps#viewerCertificatewithViewerCertificate#acmCertificate