Metadata-Version: 2.1
Name: aws-cdk.aws-cloudfront
Version: 0.27.0
Summary: CDK Constructs for AWS CloudFront
Home-page: https://github.com/awslabs/aws-cdk
Author: Amazon Web Services
License: UNKNOWN
Project-URL: Source, https://github.com/awslabs/aws-cdk.git
Description: ## AWS CloudFront Construct Library
        A CloudFront construct - for setting up the AWS CDN with ease!
        
        Example usage:
        
        ```ts
        const sourceBucket = new Bucket(this, 'Bucket');
        
        const distribution = new CloudFrontWebDistribution(this, 'MyDistribution', {
            originConfigs: [
                {
                    s3OriginSource: {
                        s3BucketSource: sourceBucket
                    },
                    behaviors : [ {isDefaultBehavior: true}]
                }
            ]
         });
        ```
        
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
