404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.217.203.133: ~ $
**To create a CloudFront distribution**

The following example creates a distribution for an S3 bucket named
``awsexamplebucket``, and also specifies ``index.html`` as the default root
object, using command line arguments::

    aws cloudfront create-distribution \
        --origin-domain-name awsexamplebucket.s3.amazonaws.com \
        --default-root-object index.html

Instead of using command line arguments, you can provide the distribution
configuration in a JSON file, as shown in the following example::

    aws cloudfront create-distribution \
        --distribution-config file://dist-config.json

The file ``dist-config.json`` is a JSON document in the current folder that
contains the following::

    {
        "CallerReference": "cli-example",
        "Aliases": {
            "Quantity": 0
        },
        "DefaultRootObject": "index.html",
        "Origins": {
            "Quantity": 1,
            "Items": [
                {
                    "Id": "awsexamplebucket.s3.amazonaws.com-cli-example",
                    "DomainName": "awsexamplebucket.s3.amazonaws.com",
                    "OriginPath": "",
                    "CustomHeaders": {
                        "Quantity": 0
                    },
                    "S3OriginConfig": {
                        "OriginAccessIdentity": ""
                    }
                }
            ]
        },
        "OriginGroups": {
            "Quantity": 0
        },
        "DefaultCacheBehavior": {
            "TargetOriginId": "awsexamplebucket.s3.amazonaws.com-cli-example",
            "ForwardedValues": {
                "QueryString": false,
                "Cookies": {
                    "Forward": "none"
                },
                "Headers": {
                    "Quantity": 0
                },
                "QueryStringCacheKeys": {
                    "Quantity": 0
                }
            },
            "TrustedSigners": {
                "Enabled": false,
                "Quantity": 0
            },
            "ViewerProtocolPolicy": "allow-all",
            "MinTTL": 0,
            "AllowedMethods": {
                "Quantity": 2,
                "Items": [
                    "HEAD",
                    "GET"
                ],
                "CachedMethods": {
                    "Quantity": 2,
                    "Items": [
                        "HEAD",
                        "GET"
                    ]
                }
            },
            "SmoothStreaming": false,
            "DefaultTTL": 86400,
            "MaxTTL": 31536000,
            "Compress": false,
            "LambdaFunctionAssociations": {
                "Quantity": 0
            },
            "FieldLevelEncryptionId": ""
        },
        "CacheBehaviors": {
            "Quantity": 0
        },
        "CustomErrorResponses": {
            "Quantity": 0
        },
        "Comment": "",
        "Logging": {
            "Enabled": false,
            "IncludeCookies": false,
            "Bucket": "",
            "Prefix": ""
        },
        "PriceClass": "PriceClass_All",
        "Enabled": true,
        "ViewerCertificate": {
            "CloudFrontDefaultCertificate": true,
            "MinimumProtocolVersion": "TLSv1",
            "CertificateSource": "cloudfront"
        },
        "Restrictions": {
            "GeoRestriction": {
                "RestrictionType": "none",
                "Quantity": 0
            }
        },
        "WebACLId": "",
        "HttpVersion": "http2",
        "IsIPV6Enabled": true
    }

Whether you provide the distribution information with a command line argument
or a JSON file, the output is the same::

    {
        "Location": "https://cloudfront.amazonaws.com/2019-03-26/distribution/EMLARXS9EXAMPLE",
        "ETag": "E9LHASXEXAMPLE",
        "Distribution": {
            "Id": "EMLARXS9EXAMPLE",
            "ARN": "arn:aws:cloudfront::123456789012:distribution/EMLARXS9EXAMPLE",
            "Status": "InProgress",
            "LastModifiedTime": "2019-11-22T00:55:15.705Z",
            "InProgressInvalidationBatches": 0,
            "DomainName": "d111111abcdef8.cloudfront.net",
            "ActiveTrustedSigners": {
                "Enabled": false,
                "Quantity": 0
            },
            "DistributionConfig": {
                "CallerReference": "cli-example",
                "Aliases": {
                    "Quantity": 0
                },
                "DefaultRootObject": "index.html",
                "Origins": {
                    "Quantity": 1,
                    "Items": [
                        {
                            "Id": "awsexamplebucket.s3.amazonaws.com-cli-example",
                            "DomainName": "awsexamplebucket.s3.amazonaws.com",
                            "OriginPath": "",
                            "CustomHeaders": {
                                "Quantity": 0
                            },
                            "S3OriginConfig": {
                                "OriginAccessIdentity": ""
                            }
                        }
                    ]
                },
                "OriginGroups": {
                    "Quantity": 0
                },
                "DefaultCacheBehavior": {
                    "TargetOriginId": "awsexamplebucket.s3.amazonaws.com-cli-example",
                    "ForwardedValues": {
                        "QueryString": false,
                        "Cookies": {
                            "Forward": "none"
                        },
                        "Headers": {
                            "Quantity": 0
                        },
                        "QueryStringCacheKeys": {
                            "Quantity": 0
                        }
                    },
                    "TrustedSigners": {
                        "Enabled": false,
                        "Quantity": 0
                    },
                    "ViewerProtocolPolicy": "allow-all",
                    "MinTTL": 0,
                    "AllowedMethods": {
                        "Quantity": 2,
                        "Items": [
                            "HEAD",
                            "GET"
                        ],
                        "CachedMethods": {
                            "Quantity": 2,
                            "Items": [
                                "HEAD",
                                "GET"
                            ]
                        }
                    },
                    "SmoothStreaming": false,
                    "DefaultTTL": 86400,
                    "MaxTTL": 31536000,
                    "Compress": false,
                    "LambdaFunctionAssociations": {
                        "Quantity": 0
                    },
                    "FieldLevelEncryptionId": ""
                },
                "CacheBehaviors": {
                    "Quantity": 0
                },
                "CustomErrorResponses": {
                    "Quantity": 0
                },
                "Comment": "",
                "Logging": {
                    "Enabled": false,
                    "IncludeCookies": false,
                    "Bucket": "",
                    "Prefix": ""
                },
                "PriceClass": "PriceClass_All",
                "Enabled": true,
                "ViewerCertificate": {
                    "CloudFrontDefaultCertificate": true,
                    "MinimumProtocolVersion": "TLSv1",
                    "CertificateSource": "cloudfront"
                },
                "Restrictions": {
                    "GeoRestriction": {
                        "RestrictionType": "none",
                        "Quantity": 0
                    }
                },
                "WebACLId": "",
                "HttpVersion": "http2",
                "IsIPV6Enabled": true
            }
        }
    }

Filemanager

Name Type Size Permission Actions
create-cloud-front-origin-access-identity.rst File 1.42 KB 0644
create-distribution-with-tags.rst File 8.27 KB 0644
create-distribution.rst File 7.77 KB 0644
create-field-level-encryption-config.rst File 2.9 KB 0644
create-field-level-encryption-profile.rst File 2.58 KB 0644
create-invalidation.rst File 2.43 KB 0644
create-public-key.rst File 2.24 KB 0644
delete-cloud-front-origin-access-identity.rst File 923 B 0644
delete-distribution.rst File 842 B 0644
delete-field-level-encryption-config.rst File 911 B 0644
delete-field-level-encryption-profile.rst File 921 B 0644
delete-public-key.rst File 685 B 0644
get-cloud-front-origin-access-identity-config.rst File 742 B 0644
get-cloud-front-origin-access-identity.rst File 949 B 0644
get-distribution-config.rst File 3.63 KB 0644
get-distribution.rst File 4.44 KB 0644
get-field-level-encryption-config.rst File 1.22 KB 0644
get-field-level-encryption-profile-config.rst File 1.05 KB 0644
get-field-level-encryption-profile.rst File 1.24 KB 0644
get-field-level-encryption.rst File 1.41 KB 0644
get-invalidation.rst File 803 B 0644
get-public-key-config.rst File 1.06 KB 0644
get-public-key.rst File 1.17 KB 0644
list-cloud-front-origin-access-identities.rst File 1.03 KB 0644
list-distributions.rst File 13.89 KB 0644
list-field-level-encryption-configs.rst File 1.47 KB 0644
list-field-level-encryption-profiles.rst File 2.16 KB 0644
list-invalidations.rst File 632 B 0644
list-public-keys.rst File 1.74 KB 0644
list-tags-for-resource.rst File 698 B 0644
sign.rst File 1.2 KB 0644
tag-resource.rst File 928 B 0644
untag-resource.rst File 825 B 0644
update-cloud-front-origin-access-identity.rst File 2.06 KB 0644
update-distribution.rst File 12.85 KB 0644
update-field-level-encryption-config.rst File 2.97 KB 0644
update-field-level-encryption-profile.rst File 2.92 KB 0644