We announced the upcoming end-of-support for AWS SDK for JavaScript v2.
We recommend that you migrate to AWS SDK for JavaScript v3. For dates, additional details, and information on how to migrate, please refer to the linked announcement.

Class: AWS.CloudFront

Inherits:
AWS.Service show all
Identifier:
cloudfront
API Version:
2020-05-31
Defined in:
(unknown)

Overview

Constructs a service interface object. Each API operation is exposed as a function on service.

Service Description

This is the Amazon CloudFront API Reference. This guide is for developers who need detailed information about CloudFront API actions, data types, and errors. For detailed information about CloudFront features, see the Amazon CloudFront Developer Guide.

Sending a Request Using CloudFront

var cloudfront = new AWS.CloudFront();
cloudfront.associateAlias(params, function (err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Locking the API Version

In order to ensure that the CloudFront object uses this specific API, you can construct the object by passing the apiVersion option to the constructor:

var cloudfront = new AWS.CloudFront({apiVersion: '2020-05-31'});

You can also set the API version globally in AWS.config.apiVersions using the cloudfront service identifier:

AWS.config.apiVersions = {
  cloudfront: '2020-05-31',
  // other service API versions
};

var cloudfront = new AWS.CloudFront();

Version:

  • 2020-05-31

Defined Under Namespace

Classes: Signer

Waiter Resource States

This service supports a list of resource states that can be polled using the waitFor() method. The resource states are:

distributionDeployed, invalidationCompleted, streamingDistributionDeployed

Constructor Summary collapse

Property Summary collapse

Properties inherited from AWS.Service

apiVersions

Method Summary collapse

Methods inherited from AWS.Service

makeRequest, makeUnauthenticatedRequest, defineService

Constructor Details

new AWS.CloudFront(options = {}) ⇒ Object

Constructs a service object. This object has one method for each API operation.

Examples:

Constructing a CloudFront object

var cloudfront = new AWS.CloudFront({apiVersion: '2020-05-31'});

Options Hash (options):

  • params (map)

    An optional map of parameters to bind to every request sent by this service object. For more information on bound parameters, see "Working with Services" in the Getting Started Guide.

  • endpoint (String|AWS.Endpoint)

    The endpoint URI to send requests to. The default endpoint is built from the configured region. The endpoint should be a string like 'https://{service}.{region}.amazonaws.com' or an Endpoint object.

  • accessKeyId (String)

    your AWS access key ID.

  • secretAccessKey (String)

    your AWS secret access key.

  • sessionToken (AWS.Credentials)

    the optional AWS session token to sign requests with.

  • credentials (AWS.Credentials)

    the AWS credentials to sign requests with. You can either specify this object, or specify the accessKeyId and secretAccessKey options directly.

  • credentialProvider (AWS.CredentialProviderChain)

    the provider chain used to resolve credentials if no static credentials property is set.

  • region (String)

    the region to send service requests to. See AWS.CloudFront.region for more information.

  • maxRetries (Integer)

    the maximum amount of retries to attempt with a request. See AWS.CloudFront.maxRetries for more information.

  • maxRedirects (Integer)

    the maximum amount of redirects to follow with a request. See AWS.CloudFront.maxRedirects for more information.

  • sslEnabled (Boolean)

    whether to enable SSL for requests.

  • paramValidation (Boolean|map)

    whether input parameters should be validated against the operation description before sending the request. Defaults to true. Pass a map to enable any of the following specific validation features:

    • min [Boolean] — Validates that a value meets the min constraint. This is enabled by default when paramValidation is set to true.
    • max [Boolean] — Validates that a value meets the max constraint.
    • pattern [Boolean] — Validates that a string value matches a regular expression.
    • enum [Boolean] — Validates that a string value matches one of the allowable enum values.
  • computeChecksums (Boolean)

    whether to compute checksums for payload bodies when the service accepts it (currently supported in S3 only)

  • convertResponseTypes (Boolean)

    whether types are converted when parsing response data. Currently only supported for JSON based services. Turning this off may improve performance on large response payloads. Defaults to true.

  • correctClockSkew (Boolean)

    whether to apply a clock skew correction and retry requests that fail because of an skewed client clock. Defaults to false.

  • s3ForcePathStyle (Boolean)

    whether to force path style URLs for S3 objects.

  • s3BucketEndpoint (Boolean)

    whether the provided endpoint addresses an individual bucket (false if it addresses the root API endpoint). Note that setting this configuration option requires an endpoint to be provided explicitly to the service constructor.

  • s3DisableBodySigning (Boolean)

    whether S3 body signing should be disabled when using signature version v4. Body signing can only be disabled when using https. Defaults to true.

  • s3UsEast1RegionalEndpoint ('legacy'|'regional')

    when region is set to 'us-east-1', whether to send s3 request to global endpoints or 'us-east-1' regional endpoints. This config is only applicable to S3 client. Defaults to legacy

  • s3UseArnRegion (Boolean)

    whether to override the request region with the region inferred from requested resource's ARN. Only available for S3 buckets Defaults to true

  • retryDelayOptions (map)

    A set of options to configure the retry delay on retryable errors. Currently supported options are:

    • base [Integer] — The base number of milliseconds to use in the exponential backoff for operation retries. Defaults to 100 ms for all services except DynamoDB, where it defaults to 50ms.
    • customBackoff [function] — A custom function that accepts a retry count and error and returns the amount of time to delay in milliseconds. If the result is a non-zero negative value, no further retry attempts will be made. The base option will be ignored if this option is supplied. The function is only called for retryable errors.
  • httpOptions (map)

    A set of options to pass to the low-level HTTP request. Currently supported options are:

    • proxy [String] — the URL to proxy requests through
    • agent [http.Agent, https.Agent] — the Agent object to perform HTTP requests with. Used for connection pooling. Defaults to the global agent (http.globalAgent) for non-SSL connections. Note that for SSL connections, a special Agent object is used in order to enable peer certificate verification. This feature is only available in the Node.js environment.
    • connectTimeout [Integer] — Sets the socket to timeout after failing to establish a connection with the server after connectTimeout milliseconds. This timeout has no effect once a socket connection has been established.
    • timeout [Integer] — Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000).
    • xhrAsync [Boolean] — Whether the SDK will send asynchronous HTTP requests. Used in the browser environment only. Set to false to send requests synchronously. Defaults to true (async on).
    • xhrWithCredentials [Boolean] — Sets the "withCredentials" property of an XMLHttpRequest object. Used in the browser environment only. Defaults to false.
  • apiVersion (String, Date)

    a String in YYYY-MM-DD format (or a date) that represents the latest possible API version that can be used in all services (unless overridden by apiVersions). Specify 'latest' to use the latest possible version.

  • apiVersions (map<String, String|Date>)

    a map of service identifiers (the lowercase service class name) with the API version to use when instantiating a service. Specify 'latest' for each individual that can use the latest available version.

  • logger (#write, #log)

    an object that responds to .write() (like a stream) or .log() (like the console object) in order to log information about requests

  • systemClockOffset (Number)

    an offset value in milliseconds to apply to all signing times. Use this to compensate for clock skew when your system may be out of sync with the service time. Note that this configuration option can only be applied to the global AWS.config object and cannot be overridden in service-specific configuration. Defaults to 0 milliseconds.

  • signatureVersion (String)

    the signature version to sign requests with (overriding the API configuration). Possible values are: 'v2', 'v3', 'v4'.

  • signatureCache (Boolean)

    whether the signature to sign requests with (overriding the API configuration) is cached. Only applies to the signature version 'v4'. Defaults to true.

  • dynamoDbCrc32 (Boolean)

    whether to validate the CRC32 checksum of HTTP response bodies returned by DynamoDB. Default: true.

  • useAccelerateEndpoint (Boolean)

    Whether to use the S3 Transfer Acceleration endpoint with the S3 service. Default: false.

  • clientSideMonitoring (Boolean)

    whether to collect and publish this client's performance metrics of all its API requests.

  • endpointDiscoveryEnabled (Boolean|undefined)

    whether to call operations with endpoints given by service dynamically. Setting this

  • endpointCacheSize (Number)

    the size of the global cache storing endpoints from endpoint discovery operations. Once endpoint cache is created, updating this setting cannot change existing cache size. Defaults to 1000

  • hostPrefixEnabled (Boolean)

    whether to marshal request parameters to the prefix of hostname. Defaults to true.

  • stsRegionalEndpoints ('legacy'|'regional')

    whether to send sts request to global endpoints or regional endpoints. Defaults to 'legacy'.

  • useFipsEndpoint (Boolean)

    Enables FIPS compatible endpoints. Defaults to false.

  • useDualstackEndpoint (Boolean)

    Enables IPv6 dualstack endpoint. Defaults to false.

Property Details

endpointAWS.Endpoint (readwrite)

Returns an Endpoint object representing the endpoint URL for service requests.

Returns:

  • (AWS.Endpoint)

    an Endpoint object representing the endpoint URL for service requests.

Method Details

associateAlias(params = {}, callback) ⇒ AWS.Request

Associates an alias (also known as a CNAME or an alternate domain name) with a CloudFront distribution.

With this operation you can move an alias that's already in use on a CloudFront distribution to a different distribution in one step. This prevents the downtime that could occur if you first remove the alias from one distribution and then separately add the alias to another distribution.

To use this operation to associate an alias with a distribution, you provide the alias and the ID of the target distribution for the alias. For more information, including how to set up the target distribution, prerequisites that you must complete, and other restrictions, see Moving an alternate domain name to a different distribution in the Amazon CloudFront Developer Guide.

Service Reference:

Examples:

Calling the associateAlias operation

var params = {
  Alias: 'STRING_VALUE', /* required */
  TargetDistributionId: 'STRING_VALUE' /* required */
};
cloudfront.associateAlias(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TargetDistributionId — (String)

      The ID of the distribution that you're associating the alias with.

    • Alias — (String)

      The alias (also known as a CNAME) to add to the target distribution.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

copyDistribution(params = {}, callback) ⇒ AWS.Request

Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow.

After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution's configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution.

This API operation requires the following IAM permissions:

Service Reference:

Examples:

Calling the copyDistribution operation

var params = {
  CallerReference: 'STRING_VALUE', /* required */
  PrimaryDistributionId: 'STRING_VALUE', /* required */
  Enabled: true || false,
  IfMatch: 'STRING_VALUE',
  Staging: true || false
};
cloudfront.copyDistribution(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • PrimaryDistributionId — (String)

      The identifier of the primary distribution whose configuration you are copying. To get a distribution ID, use ListDistributions.

    • Staging — (Boolean)

      The type of distribution that your primary distribution will be copied to. The only valid value is True, indicating that you are copying to a staging distribution.

    • IfMatch — (String)

      The version identifier of the primary distribution whose configuration you are copying. This is the ETag value returned in the response to GetDistribution and GetDistributionConfig.

    • CallerReference — (String)

      A value that uniquely identifies a request to create a resource. This helps to prevent CloudFront from creating a duplicate resource if you accidentally resubmit an identical request.

    • Enabled — (Boolean)

      A Boolean flag to specify the state of the staging distribution when it's created. When you set this value to True, the staging distribution is enabled. When you set this value to False, the staging distribution is disabled.

      If you omit this field, the default value is True.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Distribution — (map)

        A distribution tells CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery.

        • Idrequired — (String)

          The distribution's identifier. For example: E1U5RQF7T870K0.

        • ARNrequired — (String)

          The distribution's Amazon Resource Name (ARN).

        • Statusrequired — (String)

          The distribution's status. When the status is Deployed, the distribution's information is fully propagated to all CloudFront edge locations.

        • LastModifiedTimerequired — (Date)

          The date and time when the distribution was last modified.

        • InProgressInvalidationBatchesrequired — (Integer)

          The number of invalidation batches currently in progress.

        • DomainNamerequired — (String)

          The distribution's CloudFront domain name. For example: d111111abcdef8.cloudfront.net.

        • ActiveTrustedSigners — (map)

          We recommend using TrustedKeyGroups instead of TrustedSigners.

          This field contains a list of Amazon Web Services account IDs and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • ActiveTrustedKeyGroups — (map)

          This field contains a list of key groups and the public keys in each key group that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the key groups have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of key groups in the list.

          • Items — (Array<map>)

            A list of key groups, including the identifiers of the public keys in each key group that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • KeyGroupId — (String)

              The identifier of the key group that contains the public keys.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • DistributionConfigrequired — (map)

          The distribution's configuration.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • DefaultRootObject — (String)

            The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

            Specify only the object name, for example, index.html. Don't add a / before the object name.

            If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

            To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

            To replace the default root object, update the distribution configuration and specify the new object.

            For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

          • Originsrequired — (map)

            A complex type that contains information about origins for this distribution.

            • Quantityrequired — (Integer)

              The number of origins for this distribution.

            • Itemsrequired — (Array<map>)

              A list of origins.

              • Idrequired — (String)

                A unique identifier for the origin. This value must be unique within the distribution.

                Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

              • DomainNamerequired — (String)

                The domain name for the origin.

                For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

              • OriginPath — (String)

                An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

                For more information, see Origin Path in the Amazon CloudFront Developer Guide.

              • CustomHeaders — (map)

                A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

                For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of custom headers, if any, for this distribution.

                • Items — (Array<map>)

                  Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                  • HeaderNamerequired — (String)

                    The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                  • HeaderValuerequired — (String)

                    The value for the header that you specified in the HeaderName field.

              • S3OriginConfig — (map)

                Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

                • OriginAccessIdentityrequired — (String)

                  The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                  origin-access-identity/cloudfront/ID-of-origin-access-identity

                  where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                  For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

              • CustomOriginConfig — (map)

                Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

                • HTTPPortrequired — (Integer)

                  The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

                • HTTPSPortrequired — (Integer)

                  The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

                • OriginProtocolPolicyrequired — (String)

                  Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                  • http-only – CloudFront always uses HTTP to connect to the origin.

                  • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                  • https-only – CloudFront always uses HTTPS to connect to the origin.

                  Possible values include:
                  • "http-only"
                  • "match-viewer"
                  • "https-only"
                • OriginSslProtocols — (map)

                  Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                  For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                  • Itemsrequired — (Array<String>)

                    A list that contains allowed SSL/TLS protocols for this distribution.

                • OriginReadTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                  For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

                • OriginKeepaliveTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                  For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

              • ConnectionAttempts — (Integer)

                The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

                For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

                For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

              • ConnectionTimeout — (Integer)

                The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

                For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

              • OriginShield — (map)

                CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

                For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  A flag that specifies whether Origin Shield is enabled.

                  When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

                • OriginShieldRegion — (String)

                  The Amazon Web Services Region for Origin Shield.

                  Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                  When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

              • OriginAccessControlId — (String)

                The unique identifier of an origin access control for this origin.

                For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

          • OriginGroups — (map)

            A complex type that contains information about origin groups for this distribution.

            • Quantityrequired — (Integer)

              The number of origin groups.

            • Items — (Array<map>)

              The items (origin groups) in a distribution.

              • Idrequired — (String)

                The origin group's ID.

              • FailoverCriteriarequired — (map)

                A complex type that contains information about the failover criteria for an origin group.

                • StatusCodesrequired — (map)

                  The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                  • Quantityrequired — (Integer)

                    The number of status codes.

                  • Itemsrequired — (Array<Integer>)

                    The items (status codes) for an origin group.

              • Membersrequired — (map)

                A complex type that contains information about the origins in an origin group.

                • Quantityrequired — (Integer)

                  The number of origins in an origin group.

                • Itemsrequired — (Array<map>)

                  Items (origins) in an origin group.

                  • OriginIdrequired — (String)

                    The ID for an origin in an origin group.

          • DefaultCacheBehaviorrequired — (map)

            A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CacheBehaviors — (map)

            A complex type that contains zero or more CacheBehavior elements.

            • Quantityrequired — (Integer)

              The number of cache behaviors for this distribution.

            • Items — (Array<map>)

              Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

              • PathPatternrequired — (String)

                The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

                Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

                The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

                For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

              • TargetOriginIdrequired — (String)

                The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

              • TrustedSigners — (map)

                We recommend using TrustedKeyGroups instead of TrustedSigners.

                A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of Amazon Web Services accounts in the list.

                • Items — (Array<String>)

                  A list of Amazon Web Services account identifiers.

              • TrustedKeyGroups — (map)

                A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of key groups in the list.

                • Items — (Array<String>)

                  A list of key groups identifiers.

              • ViewerProtocolPolicyrequired — (String)

                The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

                • allow-all: Viewers can use HTTP or HTTPS.

                • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

                • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

                For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

                Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
                Possible values include:
                • "allow-all"
                • "https-only"
                • "redirect-to-https"
              • AllowedMethods — (map)

                A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

                • CloudFront forwards only GET and HEAD requests.

                • CloudFront forwards only GET, HEAD, and OPTIONS requests.

                • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

                If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

                • Quantityrequired — (Integer)

                  The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

                • CachedMethods — (map)

                  A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                  • CloudFront caches responses to GET and HEAD requests.

                  • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                  If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                  • Itemsrequired — (Array<String>)

                    A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

              • SmoothStreaming — (Boolean)

                Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

              • Compress — (Boolean)

                Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

              • LambdaFunctionAssociations — (map)

                A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

                • Quantityrequired — (Integer)

                  The number of Lambda@Edge function associations for this cache behavior.

                • Items — (Array<map>)

                  Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                  • LambdaFunctionARNrequired — (String)

                    The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                  • EventTyperequired — (String)

                    Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                    • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                    • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                    • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                    • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                      If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
                  • IncludeBody — (Boolean)

                    A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

              • FunctionAssociations — (map)

                A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • Quantityrequired — (Integer)

                  The number of CloudFront functions in the list.

                • Items — (Array<map>)

                  The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                  • FunctionARNrequired — (String)

                    The Amazon Resource Name (ARN) of the function.

                  • EventTyperequired — (String)

                    The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
              • FieldLevelEncryptionId — (String)

                The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

              • RealtimeLogConfigArn — (String)

                The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

              • CachePolicyId — (String)

                The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              • OriginRequestPolicyId — (String)

                The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              • ResponseHeadersPolicyId — (String)

                The identifier for a response headers policy.

              • ForwardedValues — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

                If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

                A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

                • QueryStringrequired — (Boolean)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                  If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                  If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                  If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                  For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

                • Cookiesrequired — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                  • Forwardrequired — (String)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                    Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "all"
                  • WhitelistedNames — (map)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                    If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                    For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • Headers — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                  For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

                • QueryStringCacheKeys — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                  • Quantityrequired — (Integer)

                    The number of whitelisted query string parameters for a cache behavior.

                  • Items — (Array<String>)

                    A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

              • MinTTL — (Integer)

                This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

              • DefaultTTL — (Integer)

                This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • MaxTTL — (Integer)

                This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CustomErrorResponses — (map)

            A complex type that controls the following:

            • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

            • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

            For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

            • Items — (Array<map>)

              A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ErrorCoderequired — (Integer)

                The HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ResponsePagePath — (String)

                The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

                • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

                • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

                If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

                We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

              • ResponseCode — (String)

                The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

                • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

                • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

                • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

                If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

              • ErrorCachingMinTTL — (Integer)

                The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

                For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Commentrequired — (String)

            A comment to describe the distribution. The comment cannot be longer than 128 characters.

          • Logging — (map)

            A complex type that controls whether access logs are written for the distribution.

            For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

            • IncludeCookiesrequired — (Boolean)

              Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • PriceClass — (String)

            The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

            If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

            For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            From this field, you can enable or disable the selected distribution.

          • ViewerCertificate — (map)

            A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

            • CloudFrontDefaultCertificate — (Boolean)

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

              If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

              • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

              • MinimumProtocolVersion

              • SSLSupportMethod

            • IAMCertificateId — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

              If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • ACMCertificateArn — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

              If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • SSLSupportMethod — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

              • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

              • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

              • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

              Possible values include:
              • "sni-only"
              • "vip"
              • "static-ip"
            • MinimumProtocolVersion — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

              • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

              • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

              For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: On the CloudFront console, this setting is called Security Policy.

              When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

              Possible values include:
              • "SSLv3"
              • "TLSv1"
              • "TLSv1_2016"
              • "TLSv1.1_2016"
              • "TLSv1.2_2018"
              • "TLSv1.2_2019"
              • "TLSv1.2_2021"
            • Certificate — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

            • CertificateSource — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

              Possible values include:
              • "cloudfront"
              • "iam"
              • "acm"
          • Restrictions — (map)

            A complex type that identifies ways in which you want to restrict distribution of your content.

            • GeoRestrictionrequired — (map)

              A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

              • RestrictionTyperequired — (String)

                The method that you want to use to restrict distribution of your content by country:

                • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

                • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

                • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

                Possible values include:
                • "blacklist"
                • "whitelist"
                • "none"
              • Quantityrequired — (Integer)

                When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

              • Items — (Array<String>)

                A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

                The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

                CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

          • WebACLId — (String)

            A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

            WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

          • HttpVersion — (String)

            (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

            For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

            For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

            Possible values include:
            • "http1.1"
            • "http2"
            • "http3"
            • "http2and3"
          • IsIPV6Enabled — (Boolean)

            If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

            In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

            If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

            • You enable IPv6 for the distribution

            • You're using alternate domain names in the URLs for your objects

            For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

            If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

          • ContinuousDeploymentPolicyId — (String)

            The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

          • Staging — (Boolean)

            A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

        • AliasICPRecordals — (Array<map>)

          Amazon Web Services services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

          For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with Amazon Web Services services in China.

          • CNAME — (String)

            A domain name associated with a distribution.

          • ICPRecordalStatus — (String)

            The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China.

            The status values returned are the following:

            • APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it.

            • SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number.

            • PENDING indicates that CloudFront can't determine the ICP recordal status of the CNAME associated with the distribution because there was an error in trying to determine the status. You can try again to see if the error is resolved in which case CloudFront returns an APPROVED or SUSPENDED status.

            Possible values include:
            • "APPROVED"
            • "SUSPENDED"
            • "PENDING"
      • Location — (String)

        The URL of the staging distribution.

      • ETag — (String)

        The version identifier for the current version of the staging distribution.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createCachePolicy(params = {}, callback) ⇒ AWS.Request

Creates a cache policy.

After you create a cache policy, you can attach it to one or more cache behaviors. When it's attached to a cache behavior, the cache policy determines the following:

  • The values that CloudFront includes in the cache key. These values can include HTTP headers, cookies, and URL query strings. CloudFront uses the cache key to find an object in its cache that it can return to the viewer.

  • The default, minimum, and maximum time to live (TTL) values that you want objects to stay in the CloudFront cache.

The headers, cookies, and query strings that are included in the cache key are also included in requests that CloudFront sends to the origin. CloudFront sends a request when it can't find an object in its cache that matches the request's cache key. If you want to send values to the origin but not include them in the cache key, use OriginRequestPolicy.

For more information about cache policies, see Controlling the cache key in the Amazon CloudFront Developer Guide.

Service Reference:

Examples:

Calling the createCachePolicy operation

var params = {
  CachePolicyConfig: { /* required */
    MinTTL: 'NUMBER_VALUE', /* required */
    Name: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE',
    DefaultTTL: 'NUMBER_VALUE',
    MaxTTL: 'NUMBER_VALUE',
    ParametersInCacheKeyAndForwardedToOrigin: {
      CookiesConfig: { /* required */
        CookieBehavior: none | whitelist | allExcept | all, /* required */
        Cookies: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        }
      },
      EnableAcceptEncodingGzip: true || false, /* required */
      HeadersConfig: { /* required */
        HeaderBehavior: none | whitelist, /* required */
        Headers: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        }
      },
      QueryStringsConfig: { /* required */
        QueryStringBehavior: none | whitelist | allExcept | all, /* required */
        QueryStrings: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        }
      },
      EnableAcceptEncodingBrotli: true || false
    }
  }
};
cloudfront.createCachePolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CachePolicyConfig — (map)

      A cache policy configuration.

      • Comment — (String)

        A comment to describe the cache policy. The comment cannot be longer than 128 characters.

      • Namerequired — (String)

        A unique name to identify the cache policy.

      • DefaultTTL — (Integer)

        The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object's time to live (TTL) only when the origin does not send Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        The default value for this field is 86400 seconds (one day). If the value of MinTTL is more than 86400 seconds, then the default value for this field is the same as the value of MinTTL.

      • MaxTTL — (Integer)

        The maximum amount of time, in seconds, that objects stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value only when the origin sends Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        The default value for this field is 31536000 seconds (one year). If the value of MinTTL or DefaultTTL is more than 31536000 seconds, then the default value for this field is the same as the value of DefaultTTL.

      • MinTTLrequired — (Integer)

        The minimum amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

      • ParametersInCacheKeyAndForwardedToOrigin — (map)

        The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are also included in requests that CloudFront sends to the origin.

        • EnableAcceptEncodingGziprequired — (Boolean)

          A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

          This field is related to the EnableAcceptEncodingBrotli field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

          • Normalizes the value of the viewer's Accept-Encoding header

          • Includes the normalized header in the cache key

          • Includes the normalized header in the request to the origin, if a request is necessary

          For more information, see Compression support in the Amazon CloudFront Developer Guide.

          If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

          If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

        • EnableAcceptEncodingBrotli — (Boolean)

          A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

          This field is related to the EnableAcceptEncodingGzip field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

          • Normalizes the value of the viewer's Accept-Encoding header

          • Includes the normalized header in the cache key

          • Includes the normalized header in the request to the origin, if a request is necessary

          For more information, see Compression support in the Amazon CloudFront Developer Guide.

          If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

          If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

        • HeadersConfigrequired — (map)

          An 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.

          • HeaderBehaviorrequired — (String)

            Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

            • none – No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in an OriginRequestPolicy are included in origin requests.

            • whitelist – Only the HTTP headers that are listed in the Headers type are included in the cache key and in requests that CloudFront sends to the origin.

            Possible values include:
            • "none"
            • "whitelist"
          • Headers — (map)

            Contains a list of HTTP header names.

            • Quantityrequired — (Integer)

              The number of header names in the Items list.

            • Items — (Array<String>)

              A list of HTTP header names.

        • CookiesConfigrequired — (map)

          An 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.

          • CookieBehaviorrequired — (String)

            Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

            • none – No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in an OriginRequestPolicy are included in origin requests.

            • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in the cache key and in requests that CloudFront sends to the origin.

            • allExcept – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except for those that are listed in the CookieNames type, which are not included.

            • all – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

            Possible values include:
            • "none"
            • "whitelist"
            • "allExcept"
            • "all"
          • Cookies — (map)

            Contains a list of cookie names.

            • Quantityrequired — (Integer)

              The number of cookie names in the Items list.

            • Items — (Array<String>)

              A list of cookie names.

        • QueryStringsConfigrequired — (map)

          An 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.

          • QueryStringBehaviorrequired — (String)

            Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

            • none – No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in an OriginRequestPolicy are included in origin requests.

            • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in the cache key and in requests that CloudFront sends to the origin.

            • allExcept – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except those that are listed in the QueryStringNames type, which are not included.

            • all – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

            Possible values include:
            • "none"
            • "whitelist"
            • "allExcept"
            • "all"
          • QueryStrings — (map)

            Contains the specific query strings in viewer requests that either are or are not included in the cache key and in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the CachePolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

            • Quantityrequired — (Integer)

              The number of query string names in the Items list.

            • Items — (Array<String>)

              A list of query string names.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CachePolicy — (map)

        A cache policy.

        • Idrequired — (String)

          The unique identifier for the cache policy.

        • LastModifiedTimerequired — (Date)

          The date and time when the cache policy was last modified.

        • CachePolicyConfigrequired — (map)

          The cache policy configuration.

          • Comment — (String)

            A comment to describe the cache policy. The comment cannot be longer than 128 characters.

          • Namerequired — (String)

            A unique name to identify the cache policy.

          • DefaultTTL — (Integer)

            The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object's time to live (TTL) only when the origin does not send Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            The default value for this field is 86400 seconds (one day). If the value of MinTTL is more than 86400 seconds, then the default value for this field is the same as the value of MinTTL.

          • MaxTTL — (Integer)

            The maximum amount of time, in seconds, that objects stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value only when the origin sends Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            The default value for this field is 31536000 seconds (one year). If the value of MinTTL or DefaultTTL is more than 31536000 seconds, then the default value for this field is the same as the value of DefaultTTL.

          • MinTTLrequired — (Integer)

            The minimum amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • ParametersInCacheKeyAndForwardedToOrigin — (map)

            The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are also included in requests that CloudFront sends to the origin.

            • EnableAcceptEncodingGziprequired — (Boolean)

              A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

              This field is related to the EnableAcceptEncodingBrotli field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

              • Normalizes the value of the viewer's Accept-Encoding header

              • Includes the normalized header in the cache key

              • Includes the normalized header in the request to the origin, if a request is necessary

              For more information, see Compression support in the Amazon CloudFront Developer Guide.

              If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

              If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

            • EnableAcceptEncodingBrotli — (Boolean)

              A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

              This field is related to the EnableAcceptEncodingGzip field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

              • Normalizes the value of the viewer's Accept-Encoding header

              • Includes the normalized header in the cache key

              • Includes the normalized header in the request to the origin, if a request is necessary

              For more information, see Compression support in the Amazon CloudFront Developer Guide.

              If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

              If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

            • HeadersConfigrequired — (map)

              An 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.

              • HeaderBehaviorrequired — (String)

                Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                • none – No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in an OriginRequestPolicy are included in origin requests.

                • whitelist – Only the HTTP headers that are listed in the Headers type are included in the cache key and in requests that CloudFront sends to the origin.

                Possible values include:
                • "none"
                • "whitelist"
              • Headers — (map)

                Contains a list of HTTP header names.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

            • CookiesConfigrequired — (map)

              An 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.

              • CookieBehaviorrequired — (String)

                Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                • none – No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in an OriginRequestPolicy are included in origin requests.

                • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in the cache key and in requests that CloudFront sends to the origin.

                • allExcept – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except for those that are listed in the CookieNames type, which are not included.

                • all – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

                Possible values include:
                • "none"
                • "whitelist"
                • "allExcept"
                • "all"
              • Cookies — (map)

                Contains a list of cookie names.

                • Quantityrequired — (Integer)

                  The number of cookie names in the Items list.

                • Items — (Array<String>)

                  A list of cookie names.

            • QueryStringsConfigrequired — (map)

              An 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.

              • QueryStringBehaviorrequired — (String)

                Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                • none – No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in an OriginRequestPolicy are included in origin requests.

                • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in the cache key and in requests that CloudFront sends to the origin.

                • allExcept – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except those that are listed in the QueryStringNames type, which are not included.

                • all – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

                Possible values include:
                • "none"
                • "whitelist"
                • "allExcept"
                • "all"
              • QueryStrings — (map)

                Contains the specific query strings in viewer requests that either are or are not included in the cache key and in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the CachePolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

                • Quantityrequired — (Integer)

                  The number of query string names in the Items list.

                • Items — (Array<String>)

                  A list of query string names.

      • Location — (String)

        The fully qualified URI of the cache policy just created.

      • ETag — (String)

        The current version of the cache policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createCloudFrontOriginAccessIdentity(params = {}, callback) ⇒ AWS.Request

Creates a new origin access identity. If you're using Amazon S3 for your origin, you can use an origin access identity to require users to access your content using a CloudFront URL instead of the Amazon S3 URL. For more information about how to use origin access identities, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

Examples:

Calling the createCloudFrontOriginAccessIdentity operation

var params = {
  CloudFrontOriginAccessIdentityConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE' /* required */
  }
};
cloudfront.createCloudFrontOriginAccessIdentity(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CloudFrontOriginAccessIdentityConfig — (map)

      The current configuration information for the identity.

      • CallerReferencerequired — (String)

        A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

        If the value of CallerReference is new (regardless of the content of the CloudFrontOriginAccessIdentityConfig object), a new origin access identity is created.

        If the CallerReference is a value already sent in a previous identity request, and the content of the CloudFrontOriginAccessIdentityConfig is identical to the original request (ignoring white space), the response includes the same information returned to the original request.

        If the CallerReference is a value you already sent in a previous request to create an identity, but the content of the CloudFrontOriginAccessIdentityConfig is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists error.

      • Commentrequired — (String)

        A comment to describe the origin access identity. The comment cannot be longer than 128 characters.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CloudFrontOriginAccessIdentity — (map)

        The origin access identity's information.

        • Idrequired — (String)

          The ID for the origin access identity, for example, E74FTE3AJFJ256A.

        • S3CanonicalUserIdrequired — (String)

          The Amazon S3 canonical user ID for the origin access identity, used when giving the origin access identity read permission to an object in Amazon S3.

        • CloudFrontOriginAccessIdentityConfig — (map)

          The current configuration information for the identity.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the CloudFrontOriginAccessIdentityConfig object), a new origin access identity is created.

            If the CallerReference is a value already sent in a previous identity request, and the content of the CloudFrontOriginAccessIdentityConfig is identical to the original request (ignoring white space), the response includes the same information returned to the original request.

            If the CallerReference is a value you already sent in a previous request to create an identity, but the content of the CloudFrontOriginAccessIdentityConfig is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists error.

          • Commentrequired — (String)

            A comment to describe the origin access identity. The comment cannot be longer than 128 characters.

      • Location — (String)

        The fully qualified URI of the new origin access identity just created.

      • ETag — (String)

        The current version of the origin access identity created.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createContinuousDeploymentPolicy(params = {}, callback) ⇒ AWS.Request

Creates a continuous deployment policy that distributes traffic for a custom domain name to two different CloudFront distributions.

To use a continuous deployment policy, first use CopyDistribution to create a staging distribution, then use UpdateDistribution to modify the staging distribution's configuration.

After you create and update a staging distribution, you can use a continuous deployment policy to incrementally move traffic to the staging distribution. This workflow enables you to test changes to a distribution's configuration before moving all of your domain's production traffic to the new configuration.

Examples:

Calling the createContinuousDeploymentPolicy operation

var params = {
  ContinuousDeploymentPolicyConfig: { /* required */
    Enabled: true || false, /* required */
    StagingDistributionDnsNames: { /* required */
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    TrafficConfig: {
      Type: SingleWeight | SingleHeader, /* required */
      SingleHeaderConfig: {
        Header: 'STRING_VALUE', /* required */
        Value: 'STRING_VALUE' /* required */
      },
      SingleWeightConfig: {
        Weight: 'NUMBER_VALUE', /* required */
        SessionStickinessConfig: {
          IdleTTL: 'NUMBER_VALUE', /* required */
          MaximumTTL: 'NUMBER_VALUE' /* required */
        }
      }
    }
  }
};
cloudfront.createContinuousDeploymentPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ContinuousDeploymentPolicyConfig — (map)

      Contains the configuration for a continuous deployment policy.

      • StagingDistributionDnsNamesrequired — (map)

        The CloudFront domain name of the staging distribution. For example: d111111abcdef8.cloudfront.net.

        • Quantityrequired — (Integer)

          The number of CloudFront domain names in your staging distribution.

        • Items — (Array<String>)

          The CloudFront domain name of the staging distribution.

      • Enabledrequired — (Boolean)

        A Boolean that indicates whether this continuous deployment policy is enabled (in effect). When this value is true, this policy is enabled and in effect. When this value is false, this policy is not enabled and has no effect.

      • TrafficConfig — (map)

        Contains the parameters for routing production traffic from your primary to staging distributions.

        • SingleWeightConfig — (map)

          Contains the percentage of traffic to send to the staging distribution.

          • Weightrequired — (Float)

            The percentage of traffic to send to a staging distribution, expressed as a decimal number between 0 and .15.

          • SessionStickinessConfig — (map)

            Session stickiness provides the ability to define multiple requests from a single viewer as a single session. This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.

            • IdleTTLrequired — (Integer)

              The amount of time after which you want sessions to cease if no requests are received. Allowed values are 300–3600 seconds (5–60 minutes).

              The value must be less than or equal to MaximumTTL.

            • MaximumTTLrequired — (Integer)

              The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes).

              The value must be less than or equal to IdleTTL.

        • SingleHeaderConfig — (map)

          Determines which HTTP requests are sent to the staging distribution.

          • Headerrequired — (String)

            The request header name that you want CloudFront to send to your staging distribution. The header must contain the prefix aws-cf-cd-.

          • Valuerequired — (String)

            The request header value.

        • Typerequired — (String)

          The type of traffic configuration.

          Possible values include:
          • "SingleWeight"
          • "SingleHeader"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ContinuousDeploymentPolicy — (map)

        A continuous deployment policy.

        • Idrequired — (String)

          The identifier of the continuous deployment policy.

        • LastModifiedTimerequired — (Date)

          The date and time the continuous deployment policy was last modified.

        • ContinuousDeploymentPolicyConfigrequired — (map)

          Contains the configuration for a continuous deployment policy.

          • StagingDistributionDnsNamesrequired — (map)

            The CloudFront domain name of the staging distribution. For example: d111111abcdef8.cloudfront.net.

            • Quantityrequired — (Integer)

              The number of CloudFront domain names in your staging distribution.

            • Items — (Array<String>)

              The CloudFront domain name of the staging distribution.

          • Enabledrequired — (Boolean)

            A Boolean that indicates whether this continuous deployment policy is enabled (in effect). When this value is true, this policy is enabled and in effect. When this value is false, this policy is not enabled and has no effect.

          • TrafficConfig — (map)

            Contains the parameters for routing production traffic from your primary to staging distributions.

            • SingleWeightConfig — (map)

              Contains the percentage of traffic to send to the staging distribution.

              • Weightrequired — (Float)

                The percentage of traffic to send to a staging distribution, expressed as a decimal number between 0 and .15.

              • SessionStickinessConfig — (map)

                Session stickiness provides the ability to define multiple requests from a single viewer as a single session. This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.

                • IdleTTLrequired — (Integer)

                  The amount of time after which you want sessions to cease if no requests are received. Allowed values are 300–3600 seconds (5–60 minutes).

                  The value must be less than or equal to MaximumTTL.

                • MaximumTTLrequired — (Integer)

                  The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes).

                  The value must be less than or equal to IdleTTL.

            • SingleHeaderConfig — (map)

              Determines which HTTP requests are sent to the staging distribution.

              • Headerrequired — (String)

                The request header name that you want CloudFront to send to your staging distribution. The header must contain the prefix aws-cf-cd-.

              • Valuerequired — (String)

                The request header value.

            • Typerequired — (String)

              The type of traffic configuration.

              Possible values include:
              • "SingleWeight"
              • "SingleHeader"
      • Location — (String)

        The location of the continuous deployment policy.

      • ETag — (String)

        The version identifier for the current version of the continuous deployment policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createDistribution(params = {}, callback) ⇒ AWS.Request

Creates a CloudFront distribution.

Service Reference:

Examples:

Calling the createDistribution operation

var params = {
  DistributionConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE', /* required */
    DefaultCacheBehavior: { /* required */
      TargetOriginId: 'STRING_VALUE', /* required */
      ViewerProtocolPolicy: allow-all | https-only | redirect-to-https, /* required */
      AllowedMethods: {
        Items: [ /* required */
          GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
          /* more items */
        ],
        Quantity: 'NUMBER_VALUE', /* required */
        CachedMethods: {
          Items: [ /* required */
            GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
            /* more items */
          ],
          Quantity: 'NUMBER_VALUE' /* required */
        }
      },
      CachePolicyId: 'STRING_VALUE',
      Compress: true || false,
      DefaultTTL: 'NUMBER_VALUE',
      FieldLevelEncryptionId: 'STRING_VALUE',
      ForwardedValues: {
        Cookies: { /* required */
          Forward: none | whitelist | all, /* required */
          WhitelistedNames: {
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              'STRING_VALUE',
              /* more items */
            ]
          }
        },
        QueryString: true || false, /* required */
        Headers: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        },
        QueryStringCacheKeys: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        }
      },
      FunctionAssociations: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
            FunctionARN: 'STRING_VALUE' /* required */
          },
          /* more items */
        ]
      },
      LambdaFunctionAssociations: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
            LambdaFunctionARN: 'STRING_VALUE', /* required */
            IncludeBody: true || false
          },
          /* more items */
        ]
      },
      MaxTTL: 'NUMBER_VALUE',
      MinTTL: 'NUMBER_VALUE',
      OriginRequestPolicyId: 'STRING_VALUE',
      RealtimeLogConfigArn: 'STRING_VALUE',
      ResponseHeadersPolicyId: 'STRING_VALUE',
      SmoothStreaming: true || false,
      TrustedKeyGroups: {
        Enabled: true || false, /* required */
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      TrustedSigners: {
        Enabled: true || false, /* required */
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    Enabled: true || false, /* required */
    Origins: { /* required */
      Items: [ /* required */
        {
          DomainName: 'STRING_VALUE', /* required */
          Id: 'STRING_VALUE', /* required */
          ConnectionAttempts: 'NUMBER_VALUE',
          ConnectionTimeout: 'NUMBER_VALUE',
          CustomHeaders: {
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              {
                HeaderName: 'STRING_VALUE', /* required */
                HeaderValue: 'STRING_VALUE' /* required */
              },
              /* more items */
            ]
          },
          CustomOriginConfig: {
            HTTPPort: 'NUMBER_VALUE', /* required */
            HTTPSPort: 'NUMBER_VALUE', /* required */
            OriginProtocolPolicy: http-only | match-viewer | https-only, /* required */
            OriginKeepaliveTimeout: 'NUMBER_VALUE',
            OriginReadTimeout: 'NUMBER_VALUE',
            OriginSslProtocols: {
              Items: [ /* required */
                SSLv3 | TLSv1 | TLSv1.1 | TLSv1.2,
                /* more items */
              ],
              Quantity: 'NUMBER_VALUE' /* required */
            }
          },
          OriginAccessControlId: 'STRING_VALUE',
          OriginPath: 'STRING_VALUE',
          OriginShield: {
            Enabled: true || false, /* required */
            OriginShieldRegion: 'STRING_VALUE'
          },
          S3OriginConfig: {
            OriginAccessIdentity: 'STRING_VALUE' /* required */
          }
        },
        /* more items */
      ],
      Quantity: 'NUMBER_VALUE' /* required */
    },
    Aliases: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    CacheBehaviors: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          PathPattern: 'STRING_VALUE', /* required */
          TargetOriginId: 'STRING_VALUE', /* required */
          ViewerProtocolPolicy: allow-all | https-only | redirect-to-https, /* required */
          AllowedMethods: {
            Items: [ /* required */
              GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
              /* more items */
            ],
            Quantity: 'NUMBER_VALUE', /* required */
            CachedMethods: {
              Items: [ /* required */
                GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
                /* more items */
              ],
              Quantity: 'NUMBER_VALUE' /* required */
            }
          },
          CachePolicyId: 'STRING_VALUE',
          Compress: true || false,
          DefaultTTL: 'NUMBER_VALUE',
          FieldLevelEncryptionId: 'STRING_VALUE',
          ForwardedValues: {
            Cookies: { /* required */
              Forward: none | whitelist | all, /* required */
              WhitelistedNames: {
                Quantity: 'NUMBER_VALUE', /* required */
                Items: [
                  'STRING_VALUE',
                  /* more items */
                ]
              }
            },
            QueryString: true || false, /* required */
            Headers: {
              Quantity: 'NUMBER_VALUE', /* required */
              Items: [
                'STRING_VALUE',
                /* more items */
              ]
            },
            QueryStringCacheKeys: {
              Quantity: 'NUMBER_VALUE', /* required */
              Items: [
                'STRING_VALUE',
                /* more items */
              ]
            }
          },
          FunctionAssociations: {
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              {
                EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
                FunctionARN: 'STRING_VALUE' /* required */
              },
              /* more items */
            ]
          },
          LambdaFunctionAssociations: {
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              {
                EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
                LambdaFunctionARN: 'STRING_VALUE', /* required */
                IncludeBody: true || false
              },
              /* more items */
            ]
          },
          MaxTTL: 'NUMBER_VALUE',
          MinTTL: 'NUMBER_VALUE',
          OriginRequestPolicyId: 'STRING_VALUE',
          RealtimeLogConfigArn: 'STRING_VALUE',
          ResponseHeadersPolicyId: 'STRING_VALUE',
          SmoothStreaming: true || false,
          TrustedKeyGroups: {
            Enabled: true || false, /* required */
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              'STRING_VALUE',
              /* more items */
            ]
          },
          TrustedSigners: {
            Enabled: true || false, /* required */
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              'STRING_VALUE',
              /* more items */
            ]
          }
        },
        /* more items */
      ]
    },
    ContinuousDeploymentPolicyId: 'STRING_VALUE',
    CustomErrorResponses: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          ErrorCode: 'NUMBER_VALUE', /* required */
          ErrorCachingMinTTL: 'NUMBER_VALUE',
          ResponseCode: 'STRING_VALUE',
          ResponsePagePath: 'STRING_VALUE'
        },
        /* more items */
      ]
    },
    DefaultRootObject: 'STRING_VALUE',
    HttpVersion: http1.1 | http2 | http3 | http2and3,
    IsIPV6Enabled: true || false,
    Logging: {
      Bucket: 'STRING_VALUE', /* required */
      Enabled: true || false, /* required */
      IncludeCookies: true || false, /* required */
      Prefix: 'STRING_VALUE' /* required */
    },
    OriginGroups: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          FailoverCriteria: { /* required */
            StatusCodes: { /* required */
              Items: [ /* required */
                'NUMBER_VALUE',
                /* more items */
              ],
              Quantity: 'NUMBER_VALUE' /* required */
            }
          },
          Id: 'STRING_VALUE', /* required */
          Members: { /* required */
            Items: [ /* required */
              {
                OriginId: 'STRING_VALUE' /* required */
              },
              /* more items */
            ],
            Quantity: 'NUMBER_VALUE' /* required */
          }
        },
        /* more items */
      ]
    },
    PriceClass: PriceClass_100 | PriceClass_200 | PriceClass_All,
    Restrictions: {
      GeoRestriction: { /* required */
        Quantity: 'NUMBER_VALUE', /* required */
        RestrictionType: blacklist | whitelist | none, /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    Staging: true || false,
    ViewerCertificate: {
      ACMCertificateArn: 'STRING_VALUE',
      Certificate: 'STRING_VALUE',
      CertificateSource: cloudfront | iam | acm,
      CloudFrontDefaultCertificate: true || false,
      IAMCertificateId: 'STRING_VALUE',
      MinimumProtocolVersion: SSLv3 | TLSv1 | TLSv1_2016 | TLSv1.1_2016 | TLSv1.2_2018 | TLSv1.2_2019 | TLSv1.2_2021,
      SSLSupportMethod: sni-only | vip | static-ip
    },
    WebACLId: 'STRING_VALUE'
  }
};
cloudfront.createDistribution(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DistributionConfig — (map)

      The distribution's configuration information.

      • CallerReferencerequired — (String)

        A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

        If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

        If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

      • Aliases — (map)

        A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

        • Quantityrequired — (Integer)

          The number of CNAME aliases, if any, that you want to associate with this distribution.

        • Items — (Array<String>)

          A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

      • DefaultRootObject — (String)

        The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

        Specify only the object name, for example, index.html. Don't add a / before the object name.

        If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

        To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

        To replace the default root object, update the distribution configuration and specify the new object.

        For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

      • Originsrequired — (map)

        A complex type that contains information about origins for this distribution.

        • Quantityrequired — (Integer)

          The number of origins for this distribution.

        • Itemsrequired — (Array<map>)

          A list of origins.

          • Idrequired — (String)

            A unique identifier for the origin. This value must be unique within the distribution.

            Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

          • DomainNamerequired — (String)

            The domain name for the origin.

            For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

          • OriginPath — (String)

            An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

            For more information, see Origin Path in the Amazon CloudFront Developer Guide.

          • CustomHeaders — (map)

            A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

            For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of custom headers, if any, for this distribution.

            • Items — (Array<map>)

              Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

              • HeaderNamerequired — (String)

                The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

              • HeaderValuerequired — (String)

                The value for the header that you specified in the HeaderName field.

          • S3OriginConfig — (map)

            Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

            • OriginAccessIdentityrequired — (String)

              The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

              origin-access-identity/cloudfront/ID-of-origin-access-identity

              where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

              If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

              To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

              To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

              For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

          • CustomOriginConfig — (map)

            Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

            • HTTPPortrequired — (Integer)

              The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

            • HTTPSPortrequired — (Integer)

              The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

            • OriginProtocolPolicyrequired — (String)

              Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

              • http-only – CloudFront always uses HTTP to connect to the origin.

              • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

              • https-only – CloudFront always uses HTTPS to connect to the origin.

              Possible values include:
              • "http-only"
              • "match-viewer"
              • "https-only"
            • OriginSslProtocols — (map)

              Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

              For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

              • Quantityrequired — (Integer)

                The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

              • Itemsrequired — (Array<String>)

                A list that contains allowed SSL/TLS protocols for this distribution.

            • OriginReadTimeout — (Integer)

              Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

              For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

            • OriginKeepaliveTimeout — (Integer)

              Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

              For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

          • ConnectionAttempts — (Integer)

            The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

            For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

            For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

          • ConnectionTimeout — (Integer)

            The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

            For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

          • OriginShield — (map)

            CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

            For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              A flag that specifies whether Origin Shield is enabled.

              When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

            • OriginShieldRegion — (String)

              The Amazon Web Services Region for Origin Shield.

              Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

              When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

          • OriginAccessControlId — (String)

            The unique identifier of an origin access control for this origin.

            For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

      • OriginGroups — (map)

        A complex type that contains information about origin groups for this distribution.

        • Quantityrequired — (Integer)

          The number of origin groups.

        • Items — (Array<map>)

          The items (origin groups) in a distribution.

          • Idrequired — (String)

            The origin group's ID.

          • FailoverCriteriarequired — (map)

            A complex type that contains information about the failover criteria for an origin group.

            • StatusCodesrequired — (map)

              The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

              • Quantityrequired — (Integer)

                The number of status codes.

              • Itemsrequired — (Array<Integer>)

                The items (status codes) for an origin group.

          • Membersrequired — (map)

            A complex type that contains information about the origins in an origin group.

            • Quantityrequired — (Integer)

              The number of origins in an origin group.

            • Itemsrequired — (Array<map>)

              Items (origins) in an origin group.

              • OriginIdrequired — (String)

                The ID for an origin in an origin group.

      • DefaultCacheBehaviorrequired — (map)

        A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

        • TargetOriginIdrequired — (String)

          The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

        • TrustedSigners — (map)

          We recommend using TrustedKeyGroups instead of TrustedSigners.

          A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

          When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<String>)

            A list of Amazon Web Services account identifiers.

        • TrustedKeyGroups — (map)

          A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

          When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of key groups in the list.

          • Items — (Array<String>)

            A list of key groups identifiers.

        • ViewerProtocolPolicyrequired — (String)

          The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

          • allow-all: Viewers can use HTTP or HTTPS.

          • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

          • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

          For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

          Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
          Possible values include:
          • "allow-all"
          • "https-only"
          • "redirect-to-https"
        • AllowedMethods — (map)

          A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

          • CloudFront forwards only GET and HEAD requests.

          • CloudFront forwards only GET, HEAD, and OPTIONS requests.

          • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

          If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

          • Quantityrequired — (Integer)

            The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

          • Itemsrequired — (Array<String>)

            A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

          • CachedMethods — (map)

            A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

            • CloudFront caches responses to GET and HEAD requests.

            • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

            If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

            • Quantityrequired — (Integer)

              The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

            • Itemsrequired — (Array<String>)

              A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

        • SmoothStreaming — (Boolean)

          Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

        • Compress — (Boolean)

          Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

        • LambdaFunctionAssociations — (map)

          A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

          • Quantityrequired — (Integer)

            The number of Lambda@Edge function associations for this cache behavior.

          • Items — (Array<map>)

            Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

            • LambdaFunctionARNrequired — (String)

              The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

            • EventTyperequired — (String)

              Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

              • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

              • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

              • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

              • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

              Possible values include:
              • "viewer-request"
              • "viewer-response"
              • "origin-request"
              • "origin-response"
            • IncludeBody — (Boolean)

              A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

        • FunctionAssociations — (map)

          A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

          • Quantityrequired — (Integer)

            The number of CloudFront functions in the list.

          • Items — (Array<map>)

            The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

            • FunctionARNrequired — (String)

              The Amazon Resource Name (ARN) of the function.

            • EventTyperequired — (String)

              The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

              Possible values include:
              • "viewer-request"
              • "viewer-response"
              • "origin-request"
              • "origin-response"
        • FieldLevelEncryptionId — (String)

          The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

        • RealtimeLogConfigArn — (String)

          The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

        • CachePolicyId — (String)

          The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

          A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

        • OriginRequestPolicyId — (String)

          The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

        • ResponseHeadersPolicyId — (String)

          The identifier for a response headers policy.

        • ForwardedValues — (map)

          This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

          If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

          If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

          A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

          A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

          • QueryStringrequired — (Boolean)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

            If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

            If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

            Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

            If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

            If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

            If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

            For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

          • Cookiesrequired — (map)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

            If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

            If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

            A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

            • Forwardrequired — (String)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

              Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

              Possible values include:
              • "none"
              • "whitelist"
              • "all"
            • WhitelistedNames — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

              If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

              For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

              • Quantityrequired — (Integer)

                The number of cookie names in the Items list.

              • Items — (Array<String>)

                A list of cookie names.

          • Headers — (map)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

            If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

            If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

            A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

            For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of header names in the Items list.

            • Items — (Array<String>)

              A list of HTTP header names.

          • QueryStringCacheKeys — (map)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

            If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

            If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

            A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

            • Quantityrequired — (Integer)

              The number of whitelisted query string parameters for a cache behavior.

            • Items — (Array<String>)

              A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

        • MinTTL — (Integer)

          This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

          The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

        • DefaultTTL — (Integer)

          This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

          The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        • MaxTTL — (Integer)

          This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

          The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

      • CacheBehaviors — (map)

        A complex type that contains zero or more CacheBehavior elements.

        • Quantityrequired — (Integer)

          The number of cache behaviors for this distribution.

        • Items — (Array<map>)

          Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

          • PathPatternrequired — (String)

            The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

            Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

            The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

            For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

          • TargetOriginIdrequired — (String)

            The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

          • TrustedSigners — (map)

            We recommend using TrustedKeyGroups instead of TrustedSigners.

            A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

            When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of Amazon Web Services accounts in the list.

            • Items — (Array<String>)

              A list of Amazon Web Services account identifiers.

          • TrustedKeyGroups — (map)

            A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

            When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of key groups in the list.

            • Items — (Array<String>)

              A list of key groups identifiers.

          • ViewerProtocolPolicyrequired — (String)

            The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

            • allow-all: Viewers can use HTTP or HTTPS.

            • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

            • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

            For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

            Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
            Possible values include:
            • "allow-all"
            • "https-only"
            • "redirect-to-https"
          • AllowedMethods — (map)

            A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

            • CloudFront forwards only GET and HEAD requests.

            • CloudFront forwards only GET, HEAD, and OPTIONS requests.

            • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

            If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

            • Quantityrequired — (Integer)

              The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

            • Itemsrequired — (Array<String>)

              A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

            • CachedMethods — (map)

              A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

              • CloudFront caches responses to GET and HEAD requests.

              • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

              If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

              • Quantityrequired — (Integer)

                The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

          • SmoothStreaming — (Boolean)

            Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

          • Compress — (Boolean)

            Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

          • LambdaFunctionAssociations — (map)

            A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

            • Quantityrequired — (Integer)

              The number of Lambda@Edge function associations for this cache behavior.

            • Items — (Array<map>)

              Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

              • LambdaFunctionARNrequired — (String)

                The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

              • EventTyperequired — (String)

                Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                  If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                Possible values include:
                • "viewer-request"
                • "viewer-response"
                • "origin-request"
                • "origin-response"
              • IncludeBody — (Boolean)

                A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

          • FunctionAssociations — (map)

            A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

            • Quantityrequired — (Integer)

              The number of CloudFront functions in the list.

            • Items — (Array<map>)

              The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • FunctionARNrequired — (String)

                The Amazon Resource Name (ARN) of the function.

              • EventTyperequired — (String)

                The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                Possible values include:
                • "viewer-request"
                • "viewer-response"
                • "origin-request"
                • "origin-response"
          • FieldLevelEncryptionId — (String)

            The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

          • RealtimeLogConfigArn — (String)

            The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

          • CachePolicyId — (String)

            The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

          • OriginRequestPolicyId — (String)

            The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

          • ResponseHeadersPolicyId — (String)

            The identifier for a response headers policy.

          • ForwardedValues — (map)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

            If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

            • QueryStringrequired — (Boolean)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

              If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

              If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

              If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

              For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

            • Cookiesrequired — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

              • Forwardrequired — (String)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                Possible values include:
                • "none"
                • "whitelist"
                • "all"
              • WhitelistedNames — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                • Quantityrequired — (Integer)

                  The number of cookie names in the Items list.

                • Items — (Array<String>)

                  A list of cookie names.

            • Headers — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

              For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

              • Quantityrequired — (Integer)

                The number of header names in the Items list.

              • Items — (Array<String>)

                A list of HTTP header names.

            • QueryStringCacheKeys — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

              • Quantityrequired — (Integer)

                The number of whitelisted query string parameters for a cache behavior.

              • Items — (Array<String>)

                A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

          • MinTTL — (Integer)

            This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

          • DefaultTTL — (Integer)

            This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • MaxTTL — (Integer)

            This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

      • CustomErrorResponses — (map)

        A complex type that controls the following:

        • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

        • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

        For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

        • Quantityrequired — (Integer)

          The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

        • Items — (Array<map>)

          A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

          • ErrorCoderequired — (Integer)

            The HTTP status code for which you want to specify a custom error page and/or a caching duration.

          • ResponsePagePath — (String)

            The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

            • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

            • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

            If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

            We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

          • ResponseCode — (String)

            The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

            • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

            • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

            • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

            If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

          • ErrorCachingMinTTL — (Integer)

            The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

            For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

      • Commentrequired — (String)

        A comment to describe the distribution. The comment cannot be longer than 128 characters.

      • Logging — (map)

        A complex type that controls whether access logs are written for the distribution.

        For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

        • Enabledrequired — (Boolean)

          Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

        • IncludeCookiesrequired — (Boolean)

          Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

        • Bucketrequired — (String)

          The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

        • Prefixrequired — (String)

          An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

      • PriceClass — (String)

        The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

        If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

        For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

        Possible values include:
        • "PriceClass_100"
        • "PriceClass_200"
        • "PriceClass_All"
      • Enabledrequired — (Boolean)

        From this field, you can enable or disable the selected distribution.

      • ViewerCertificate — (map)

        A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

        • CloudFrontDefaultCertificate — (Boolean)

          If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

          If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

          • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

          • MinimumProtocolVersion

          • SSLSupportMethod

        • IAMCertificateId — (String)

          If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

          If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

        • ACMCertificateArn — (String)

          If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

          If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

        • SSLSupportMethod — (String)

          If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

          • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

          • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

          • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

          If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

          Possible values include:
          • "sni-only"
          • "vip"
          • "static-ip"
        • MinimumProtocolVersion — (String)

          If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

          • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

          • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

          For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

          Note: On the CloudFront console, this setting is called Security Policy.

          When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

          If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

          Possible values include:
          • "SSLv3"
          • "TLSv1"
          • "TLSv1_2016"
          • "TLSv1.1_2016"
          • "TLSv1.2_2018"
          • "TLSv1.2_2019"
          • "TLSv1.2_2021"
        • Certificate — (String)

          This field is deprecated. Use one of the following fields instead:

          • ACMCertificateArn

          • IAMCertificateId

          • CloudFrontDefaultCertificate

        • CertificateSource — (String)

          This field is deprecated. Use one of the following fields instead:

          • ACMCertificateArn

          • IAMCertificateId

          • CloudFrontDefaultCertificate

          Possible values include:
          • "cloudfront"
          • "iam"
          • "acm"
      • Restrictions — (map)

        A complex type that identifies ways in which you want to restrict distribution of your content.

        • GeoRestrictionrequired — (map)

          A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

          • RestrictionTyperequired — (String)

            The method that you want to use to restrict distribution of your content by country:

            • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

            • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

            • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

            Possible values include:
            • "blacklist"
            • "whitelist"
            • "none"
          • Quantityrequired — (Integer)

            When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

          • Items — (Array<String>)

            A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

            The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

            CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

      • WebACLId — (String)

        A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

        WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

      • HttpVersion — (String)

        (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

        For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

        For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

        Possible values include:
        • "http1.1"
        • "http2"
        • "http3"
        • "http2and3"
      • IsIPV6Enabled — (Boolean)

        If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

        In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

        If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

        • You enable IPv6 for the distribution

        • You're using alternate domain names in the URLs for your objects

        For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

        If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

      • ContinuousDeploymentPolicyId — (String)

        The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

      • Staging — (Boolean)

        A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Distribution — (map)

        The distribution's information.

        • Idrequired — (String)

          The distribution's identifier. For example: E1U5RQF7T870K0.

        • ARNrequired — (String)

          The distribution's Amazon Resource Name (ARN).

        • Statusrequired — (String)

          The distribution's status. When the status is Deployed, the distribution's information is fully propagated to all CloudFront edge locations.

        • LastModifiedTimerequired — (Date)

          The date and time when the distribution was last modified.

        • InProgressInvalidationBatchesrequired — (Integer)

          The number of invalidation batches currently in progress.

        • DomainNamerequired — (String)

          The distribution's CloudFront domain name. For example: d111111abcdef8.cloudfront.net.

        • ActiveTrustedSigners — (map)

          We recommend using TrustedKeyGroups instead of TrustedSigners.

          This field contains a list of Amazon Web Services account IDs and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • ActiveTrustedKeyGroups — (map)

          This field contains a list of key groups and the public keys in each key group that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the key groups have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of key groups in the list.

          • Items — (Array<map>)

            A list of key groups, including the identifiers of the public keys in each key group that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • KeyGroupId — (String)

              The identifier of the key group that contains the public keys.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • DistributionConfigrequired — (map)

          The distribution's configuration.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • DefaultRootObject — (String)

            The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

            Specify only the object name, for example, index.html. Don't add a / before the object name.

            If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

            To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

            To replace the default root object, update the distribution configuration and specify the new object.

            For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

          • Originsrequired — (map)

            A complex type that contains information about origins for this distribution.

            • Quantityrequired — (Integer)

              The number of origins for this distribution.

            • Itemsrequired — (Array<map>)

              A list of origins.

              • Idrequired — (String)

                A unique identifier for the origin. This value must be unique within the distribution.

                Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

              • DomainNamerequired — (String)

                The domain name for the origin.

                For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

              • OriginPath — (String)

                An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

                For more information, see Origin Path in the Amazon CloudFront Developer Guide.

              • CustomHeaders — (map)

                A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

                For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of custom headers, if any, for this distribution.

                • Items — (Array<map>)

                  Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                  • HeaderNamerequired — (String)

                    The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                  • HeaderValuerequired — (String)

                    The value for the header that you specified in the HeaderName field.

              • S3OriginConfig — (map)

                Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

                • OriginAccessIdentityrequired — (String)

                  The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                  origin-access-identity/cloudfront/ID-of-origin-access-identity

                  where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                  For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

              • CustomOriginConfig — (map)

                Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

                • HTTPPortrequired — (Integer)

                  The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

                • HTTPSPortrequired — (Integer)

                  The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

                • OriginProtocolPolicyrequired — (String)

                  Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                  • http-only – CloudFront always uses HTTP to connect to the origin.

                  • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                  • https-only – CloudFront always uses HTTPS to connect to the origin.

                  Possible values include:
                  • "http-only"
                  • "match-viewer"
                  • "https-only"
                • OriginSslProtocols — (map)

                  Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                  For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                  • Itemsrequired — (Array<String>)

                    A list that contains allowed SSL/TLS protocols for this distribution.

                • OriginReadTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                  For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

                • OriginKeepaliveTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                  For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

              • ConnectionAttempts — (Integer)

                The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

                For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

                For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

              • ConnectionTimeout — (Integer)

                The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

                For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

              • OriginShield — (map)

                CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

                For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  A flag that specifies whether Origin Shield is enabled.

                  When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

                • OriginShieldRegion — (String)

                  The Amazon Web Services Region for Origin Shield.

                  Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                  When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

              • OriginAccessControlId — (String)

                The unique identifier of an origin access control for this origin.

                For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

          • OriginGroups — (map)

            A complex type that contains information about origin groups for this distribution.

            • Quantityrequired — (Integer)

              The number of origin groups.

            • Items — (Array<map>)

              The items (origin groups) in a distribution.

              • Idrequired — (String)

                The origin group's ID.

              • FailoverCriteriarequired — (map)

                A complex type that contains information about the failover criteria for an origin group.

                • StatusCodesrequired — (map)

                  The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                  • Quantityrequired — (Integer)

                    The number of status codes.

                  • Itemsrequired — (Array<Integer>)

                    The items (status codes) for an origin group.

              • Membersrequired — (map)

                A complex type that contains information about the origins in an origin group.

                • Quantityrequired — (Integer)

                  The number of origins in an origin group.

                • Itemsrequired — (Array<map>)

                  Items (origins) in an origin group.

                  • OriginIdrequired — (String)

                    The ID for an origin in an origin group.

          • DefaultCacheBehaviorrequired — (map)

            A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CacheBehaviors — (map)

            A complex type that contains zero or more CacheBehavior elements.

            • Quantityrequired — (Integer)

              The number of cache behaviors for this distribution.

            • Items — (Array<map>)

              Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

              • PathPatternrequired — (String)

                The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

                Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

                The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

                For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

              • TargetOriginIdrequired — (String)

                The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

              • TrustedSigners — (map)

                We recommend using TrustedKeyGroups instead of TrustedSigners.

                A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of Amazon Web Services accounts in the list.

                • Items — (Array<String>)

                  A list of Amazon Web Services account identifiers.

              • TrustedKeyGroups — (map)

                A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of key groups in the list.

                • Items — (Array<String>)

                  A list of key groups identifiers.

              • ViewerProtocolPolicyrequired — (String)

                The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

                • allow-all: Viewers can use HTTP or HTTPS.

                • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

                • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

                For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

                Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
                Possible values include:
                • "allow-all"
                • "https-only"
                • "redirect-to-https"
              • AllowedMethods — (map)

                A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

                • CloudFront forwards only GET and HEAD requests.

                • CloudFront forwards only GET, HEAD, and OPTIONS requests.

                • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

                If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

                • Quantityrequired — (Integer)

                  The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

                • CachedMethods — (map)

                  A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                  • CloudFront caches responses to GET and HEAD requests.

                  • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                  If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                  • Itemsrequired — (Array<String>)

                    A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

              • SmoothStreaming — (Boolean)

                Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

              • Compress — (Boolean)

                Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

              • LambdaFunctionAssociations — (map)

                A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

                • Quantityrequired — (Integer)

                  The number of Lambda@Edge function associations for this cache behavior.

                • Items — (Array<map>)

                  Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                  • LambdaFunctionARNrequired — (String)

                    The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                  • EventTyperequired — (String)

                    Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                    • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                    • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                    • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                    • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                      If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
                  • IncludeBody — (Boolean)

                    A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

              • FunctionAssociations — (map)

                A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • Quantityrequired — (Integer)

                  The number of CloudFront functions in the list.

                • Items — (Array<map>)

                  The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                  • FunctionARNrequired — (String)

                    The Amazon Resource Name (ARN) of the function.

                  • EventTyperequired — (String)

                    The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
              • FieldLevelEncryptionId — (String)

                The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

              • RealtimeLogConfigArn — (String)

                The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

              • CachePolicyId — (String)

                The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              • OriginRequestPolicyId — (String)

                The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              • ResponseHeadersPolicyId — (String)

                The identifier for a response headers policy.

              • ForwardedValues — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

                If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

                A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

                • QueryStringrequired — (Boolean)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                  If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                  If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                  If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                  For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

                • Cookiesrequired — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                  • Forwardrequired — (String)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                    Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "all"
                  • WhitelistedNames — (map)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                    If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                    For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • Headers — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                  For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

                • QueryStringCacheKeys — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                  • Quantityrequired — (Integer)

                    The number of whitelisted query string parameters for a cache behavior.

                  • Items — (Array<String>)

                    A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

              • MinTTL — (Integer)

                This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

              • DefaultTTL — (Integer)

                This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • MaxTTL — (Integer)

                This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CustomErrorResponses — (map)

            A complex type that controls the following:

            • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

            • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

            For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

            • Items — (Array<map>)

              A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ErrorCoderequired — (Integer)

                The HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ResponsePagePath — (String)

                The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

                • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

                • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

                If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

                We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

              • ResponseCode — (String)

                The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

                • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

                • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

                • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

                If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

              • ErrorCachingMinTTL — (Integer)

                The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

                For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Commentrequired — (String)

            A comment to describe the distribution. The comment cannot be longer than 128 characters.

          • Logging — (map)

            A complex type that controls whether access logs are written for the distribution.

            For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

            • IncludeCookiesrequired — (Boolean)

              Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • PriceClass — (String)

            The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

            If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

            For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            From this field, you can enable or disable the selected distribution.

          • ViewerCertificate — (map)

            A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

            • CloudFrontDefaultCertificate — (Boolean)

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

              If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

              • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

              • MinimumProtocolVersion

              • SSLSupportMethod

            • IAMCertificateId — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

              If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • ACMCertificateArn — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

              If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • SSLSupportMethod — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

              • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

              • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

              • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

              Possible values include:
              • "sni-only"
              • "vip"
              • "static-ip"
            • MinimumProtocolVersion — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

              • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

              • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

              For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: On the CloudFront console, this setting is called Security Policy.

              When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

              Possible values include:
              • "SSLv3"
              • "TLSv1"
              • "TLSv1_2016"
              • "TLSv1.1_2016"
              • "TLSv1.2_2018"
              • "TLSv1.2_2019"
              • "TLSv1.2_2021"
            • Certificate — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

            • CertificateSource — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

              Possible values include:
              • "cloudfront"
              • "iam"
              • "acm"
          • Restrictions — (map)

            A complex type that identifies ways in which you want to restrict distribution of your content.

            • GeoRestrictionrequired — (map)

              A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

              • RestrictionTyperequired — (String)

                The method that you want to use to restrict distribution of your content by country:

                • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

                • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

                • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

                Possible values include:
                • "blacklist"
                • "whitelist"
                • "none"
              • Quantityrequired — (Integer)

                When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

              • Items — (Array<String>)

                A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

                The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

                CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

          • WebACLId — (String)

            A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

            WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

          • HttpVersion — (String)

            (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

            For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

            For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

            Possible values include:
            • "http1.1"
            • "http2"
            • "http3"
            • "http2and3"
          • IsIPV6Enabled — (Boolean)

            If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

            In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

            If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

            • You enable IPv6 for the distribution

            • You're using alternate domain names in the URLs for your objects

            For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

            If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

          • ContinuousDeploymentPolicyId — (String)

            The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

          • Staging — (Boolean)

            A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

        • AliasICPRecordals — (Array<map>)

          Amazon Web Services services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

          For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with Amazon Web Services services in China.

          • CNAME — (String)

            A domain name associated with a distribution.

          • ICPRecordalStatus — (String)

            The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China.

            The status values returned are the following:

            • APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it.

            • SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number.

            • PENDING indicates that CloudFront can't determine the ICP recordal status of the CNAME associated with the distribution because there was an error in trying to determine the status. You can try again to see if the error is resolved in which case CloudFront returns an APPROVED or SUSPENDED status.

            Possible values include:
            • "APPROVED"
            • "SUSPENDED"
            • "PENDING"
      • Location — (String)

        The fully qualified URI of the new distribution resource just created.

      • ETag — (String)

        The current version of the distribution created.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createDistributionWithTags(params = {}, callback) ⇒ AWS.Request

Create a new distribution with tags. This API operation requires the following IAM permissions:

Service Reference:

Examples:

Calling the createDistributionWithTags operation

var params = {
  DistributionConfigWithTags: { /* required */
    DistributionConfig: { /* required */
      CallerReference: 'STRING_VALUE', /* required */
      Comment: 'STRING_VALUE', /* required */
      DefaultCacheBehavior: { /* required */
        TargetOriginId: 'STRING_VALUE', /* required */
        ViewerProtocolPolicy: allow-all | https-only | redirect-to-https, /* required */
        AllowedMethods: {
          Items: [ /* required */
            GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
            /* more items */
          ],
          Quantity: 'NUMBER_VALUE', /* required */
          CachedMethods: {
            Items: [ /* required */
              GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
              /* more items */
            ],
            Quantity: 'NUMBER_VALUE' /* required */
          }
        },
        CachePolicyId: 'STRING_VALUE',
        Compress: true || false,
        DefaultTTL: 'NUMBER_VALUE',
        FieldLevelEncryptionId: 'STRING_VALUE',
        ForwardedValues: {
          Cookies: { /* required */
            Forward: none | whitelist | all, /* required */
            WhitelistedNames: {
              Quantity: 'NUMBER_VALUE', /* required */
              Items: [
                'STRING_VALUE',
                /* more items */
              ]
            }
          },
          QueryString: true || false, /* required */
          Headers: {
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              'STRING_VALUE',
              /* more items */
            ]
          },
          QueryStringCacheKeys: {
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              'STRING_VALUE',
              /* more items */
            ]
          }
        },
        FunctionAssociations: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            {
              EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
              FunctionARN: 'STRING_VALUE' /* required */
            },
            /* more items */
          ]
        },
        LambdaFunctionAssociations: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            {
              EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
              LambdaFunctionARN: 'STRING_VALUE', /* required */
              IncludeBody: true || false
            },
            /* more items */
          ]
        },
        MaxTTL: 'NUMBER_VALUE',
        MinTTL: 'NUMBER_VALUE',
        OriginRequestPolicyId: 'STRING_VALUE',
        RealtimeLogConfigArn: 'STRING_VALUE',
        ResponseHeadersPolicyId: 'STRING_VALUE',
        SmoothStreaming: true || false,
        TrustedKeyGroups: {
          Enabled: true || false, /* required */
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        },
        TrustedSigners: {
          Enabled: true || false, /* required */
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        }
      },
      Enabled: true || false, /* required */
      Origins: { /* required */
        Items: [ /* required */
          {
            DomainName: 'STRING_VALUE', /* required */
            Id: 'STRING_VALUE', /* required */
            ConnectionAttempts: 'NUMBER_VALUE',
            ConnectionTimeout: 'NUMBER_VALUE',
            CustomHeaders: {
              Quantity: 'NUMBER_VALUE', /* required */
              Items: [
                {
                  HeaderName: 'STRING_VALUE', /* required */
                  HeaderValue: 'STRING_VALUE' /* required */
                },
                /* more items */
              ]
            },
            CustomOriginConfig: {
              HTTPPort: 'NUMBER_VALUE', /* required */
              HTTPSPort: 'NUMBER_VALUE', /* required */
              OriginProtocolPolicy: http-only | match-viewer | https-only, /* required */
              OriginKeepaliveTimeout: 'NUMBER_VALUE',
              OriginReadTimeout: 'NUMBER_VALUE',
              OriginSslProtocols: {
                Items: [ /* required */
                  SSLv3 | TLSv1 | TLSv1.1 | TLSv1.2,
                  /* more items */
                ],
                Quantity: 'NUMBER_VALUE' /* required */
              }
            },
            OriginAccessControlId: 'STRING_VALUE',
            OriginPath: 'STRING_VALUE',
            OriginShield: {
              Enabled: true || false, /* required */
              OriginShieldRegion: 'STRING_VALUE'
            },
            S3OriginConfig: {
              OriginAccessIdentity: 'STRING_VALUE' /* required */
            }
          },
          /* more items */
        ],
        Quantity: 'NUMBER_VALUE' /* required */
      },
      Aliases: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      CacheBehaviors: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            PathPattern: 'STRING_VALUE', /* required */
            TargetOriginId: 'STRING_VALUE', /* required */
            ViewerProtocolPolicy: allow-all | https-only | redirect-to-https, /* required */
            AllowedMethods: {
              Items: [ /* required */
                GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
                /* more items */
              ],
              Quantity: 'NUMBER_VALUE', /* required */
              CachedMethods: {
                Items: [ /* required */
                  GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
                  /* more items */
                ],
                Quantity: 'NUMBER_VALUE' /* required */
              }
            },
            CachePolicyId: 'STRING_VALUE',
            Compress: true || false,
            DefaultTTL: 'NUMBER_VALUE',
            FieldLevelEncryptionId: 'STRING_VALUE',
            ForwardedValues: {
              Cookies: { /* required */
                Forward: none | whitelist | all, /* required */
                WhitelistedNames: {
                  Quantity: 'NUMBER_VALUE', /* required */
                  Items: [
                    'STRING_VALUE',
                    /* more items */
                  ]
                }
              },
              QueryString: true || false, /* required */
              Headers: {
                Quantity: 'NUMBER_VALUE', /* required */
                Items: [
                  'STRING_VALUE',
                  /* more items */
                ]
              },
              QueryStringCacheKeys: {
                Quantity: 'NUMBER_VALUE', /* required */
                Items: [
                  'STRING_VALUE',
                  /* more items */
                ]
              }
            },
            FunctionAssociations: {
              Quantity: 'NUMBER_VALUE', /* required */
              Items: [
                {
                  EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
                  FunctionARN: 'STRING_VALUE' /* required */
                },
                /* more items */
              ]
            },
            LambdaFunctionAssociations: {
              Quantity: 'NUMBER_VALUE', /* required */
              Items: [
                {
                  EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
                  LambdaFunctionARN: 'STRING_VALUE', /* required */
                  IncludeBody: true || false
                },
                /* more items */
              ]
            },
            MaxTTL: 'NUMBER_VALUE',
            MinTTL: 'NUMBER_VALUE',
            OriginRequestPolicyId: 'STRING_VALUE',
            RealtimeLogConfigArn: 'STRING_VALUE',
            ResponseHeadersPolicyId: 'STRING_VALUE',
            SmoothStreaming: true || false,
            TrustedKeyGroups: {
              Enabled: true || false, /* required */
              Quantity: 'NUMBER_VALUE', /* required */
              Items: [
                'STRING_VALUE',
                /* more items */
              ]
            },
            TrustedSigners: {
              Enabled: true || false, /* required */
              Quantity: 'NUMBER_VALUE', /* required */
              Items: [
                'STRING_VALUE',
                /* more items */
              ]
            }
          },
          /* more items */
        ]
      },
      ContinuousDeploymentPolicyId: 'STRING_VALUE',
      CustomErrorResponses: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            ErrorCode: 'NUMBER_VALUE', /* required */
            ErrorCachingMinTTL: 'NUMBER_VALUE',
            ResponseCode: 'STRING_VALUE',
            ResponsePagePath: 'STRING_VALUE'
          },
          /* more items */
        ]
      },
      DefaultRootObject: 'STRING_VALUE',
      HttpVersion: http1.1 | http2 | http3 | http2and3,
      IsIPV6Enabled: true || false,
      Logging: {
        Bucket: 'STRING_VALUE', /* required */
        Enabled: true || false, /* required */
        IncludeCookies: true || false, /* required */
        Prefix: 'STRING_VALUE' /* required */
      },
      OriginGroups: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            FailoverCriteria: { /* required */
              StatusCodes: { /* required */
                Items: [ /* required */
                  'NUMBER_VALUE',
                  /* more items */
                ],
                Quantity: 'NUMBER_VALUE' /* required */
              }
            },
            Id: 'STRING_VALUE', /* required */
            Members: { /* required */
              Items: [ /* required */
                {
                  OriginId: 'STRING_VALUE' /* required */
                },
                /* more items */
              ],
              Quantity: 'NUMBER_VALUE' /* required */
            }
          },
          /* more items */
        ]
      },
      PriceClass: PriceClass_100 | PriceClass_200 | PriceClass_All,
      Restrictions: {
        GeoRestriction: { /* required */
          Quantity: 'NUMBER_VALUE', /* required */
          RestrictionType: blacklist | whitelist | none, /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        }
      },
      Staging: true || false,
      ViewerCertificate: {
        ACMCertificateArn: 'STRING_VALUE',
        Certificate: 'STRING_VALUE',
        CertificateSource: cloudfront | iam | acm,
        CloudFrontDefaultCertificate: true || false,
        IAMCertificateId: 'STRING_VALUE',
        MinimumProtocolVersion: SSLv3 | TLSv1 | TLSv1_2016 | TLSv1.1_2016 | TLSv1.2_2018 | TLSv1.2_2019 | TLSv1.2_2021,
        SSLSupportMethod: sni-only | vip | static-ip
      },
      WebACLId: 'STRING_VALUE'
    },
    Tags: { /* required */
      Items: [
        {
          Key: 'STRING_VALUE', /* required */
          Value: 'STRING_VALUE'
        },
        /* more items */
      ]
    }
  }
};
cloudfront.createDistributionWithTags(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DistributionConfigWithTags — (map)

      The distribution's configuration information.

      • DistributionConfigrequired — (map)

        A distribution configuration.

        • CallerReferencerequired — (String)

          A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

          If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

          If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

        • Aliases — (map)

          A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

          • Quantityrequired — (Integer)

            The number of CNAME aliases, if any, that you want to associate with this distribution.

          • Items — (Array<String>)

            A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

        • DefaultRootObject — (String)

          The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

          Specify only the object name, for example, index.html. Don't add a / before the object name.

          If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

          To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

          To replace the default root object, update the distribution configuration and specify the new object.

          For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

        • Originsrequired — (map)

          A complex type that contains information about origins for this distribution.

          • Quantityrequired — (Integer)

            The number of origins for this distribution.

          • Itemsrequired — (Array<map>)

            A list of origins.

            • Idrequired — (String)

              A unique identifier for the origin. This value must be unique within the distribution.

              Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

            • DomainNamerequired — (String)

              The domain name for the origin.

              For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

            • OriginPath — (String)

              An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

              For more information, see Origin Path in the Amazon CloudFront Developer Guide.

            • CustomHeaders — (map)

              A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

              For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

              • Quantityrequired — (Integer)

                The number of custom headers, if any, for this distribution.

              • Items — (Array<map>)

                Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                • HeaderNamerequired — (String)

                  The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • HeaderValuerequired — (String)

                  The value for the header that you specified in the HeaderName field.

            • S3OriginConfig — (map)

              Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

              • OriginAccessIdentityrequired — (String)

                The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                origin-access-identity/cloudfront/ID-of-origin-access-identity

                where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

            • CustomOriginConfig — (map)

              Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

              • HTTPPortrequired — (Integer)

                The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

              • HTTPSPortrequired — (Integer)

                The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

              • OriginProtocolPolicyrequired — (String)

                Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                • http-only – CloudFront always uses HTTP to connect to the origin.

                • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                • https-only – CloudFront always uses HTTPS to connect to the origin.

                Possible values include:
                • "http-only"
                • "match-viewer"
                • "https-only"
              • OriginSslProtocols — (map)

                Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                • Itemsrequired — (Array<String>)

                  A list that contains allowed SSL/TLS protocols for this distribution.

              • OriginReadTimeout — (Integer)

                Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

              • OriginKeepaliveTimeout — (Integer)

                Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

            • ConnectionAttempts — (Integer)

              The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

              For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

              For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

            • ConnectionTimeout — (Integer)

              The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

              For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

            • OriginShield — (map)

              CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

              For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                A flag that specifies whether Origin Shield is enabled.

                When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

              • OriginShieldRegion — (String)

                The Amazon Web Services Region for Origin Shield.

                Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

            • OriginAccessControlId — (String)

              The unique identifier of an origin access control for this origin.

              For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

        • OriginGroups — (map)

          A complex type that contains information about origin groups for this distribution.

          • Quantityrequired — (Integer)

            The number of origin groups.

          • Items — (Array<map>)

            The items (origin groups) in a distribution.

            • Idrequired — (String)

              The origin group's ID.

            • FailoverCriteriarequired — (map)

              A complex type that contains information about the failover criteria for an origin group.

              • StatusCodesrequired — (map)

                The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                • Quantityrequired — (Integer)

                  The number of status codes.

                • Itemsrequired — (Array<Integer>)

                  The items (status codes) for an origin group.

            • Membersrequired — (map)

              A complex type that contains information about the origins in an origin group.

              • Quantityrequired — (Integer)

                The number of origins in an origin group.

              • Itemsrequired — (Array<map>)

                Items (origins) in an origin group.

                • OriginIdrequired — (String)

                  The ID for an origin in an origin group.

        • DefaultCacheBehaviorrequired — (map)

          A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

          • TargetOriginIdrequired — (String)

            The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

          • TrustedSigners — (map)

            We recommend using TrustedKeyGroups instead of TrustedSigners.

            A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

            When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of Amazon Web Services accounts in the list.

            • Items — (Array<String>)

              A list of Amazon Web Services account identifiers.

          • TrustedKeyGroups — (map)

            A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

            When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of key groups in the list.

            • Items — (Array<String>)

              A list of key groups identifiers.

          • ViewerProtocolPolicyrequired — (String)

            The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

            • allow-all: Viewers can use HTTP or HTTPS.

            • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

            • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

            For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

            Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
            Possible values include:
            • "allow-all"
            • "https-only"
            • "redirect-to-https"
          • AllowedMethods — (map)

            A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

            • CloudFront forwards only GET and HEAD requests.

            • CloudFront forwards only GET, HEAD, and OPTIONS requests.

            • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

            If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

            • Quantityrequired — (Integer)

              The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

            • Itemsrequired — (Array<String>)

              A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

            • CachedMethods — (map)

              A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

              • CloudFront caches responses to GET and HEAD requests.

              • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

              If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

              • Quantityrequired — (Integer)

                The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

          • SmoothStreaming — (Boolean)

            Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

          • Compress — (Boolean)

            Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

          • LambdaFunctionAssociations — (map)

            A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

            • Quantityrequired — (Integer)

              The number of Lambda@Edge function associations for this cache behavior.

            • Items — (Array<map>)

              Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

              • LambdaFunctionARNrequired — (String)

                The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

              • EventTyperequired — (String)

                Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                  If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                Possible values include:
                • "viewer-request"
                • "viewer-response"
                • "origin-request"
                • "origin-response"
              • IncludeBody — (Boolean)

                A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

          • FunctionAssociations — (map)

            A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

            • Quantityrequired — (Integer)

              The number of CloudFront functions in the list.

            • Items — (Array<map>)

              The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • FunctionARNrequired — (String)

                The Amazon Resource Name (ARN) of the function.

              • EventTyperequired — (String)

                The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                Possible values include:
                • "viewer-request"
                • "viewer-response"
                • "origin-request"
                • "origin-response"
          • FieldLevelEncryptionId — (String)

            The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

          • RealtimeLogConfigArn — (String)

            The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

          • CachePolicyId — (String)

            The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

          • OriginRequestPolicyId — (String)

            The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

          • ResponseHeadersPolicyId — (String)

            The identifier for a response headers policy.

          • ForwardedValues — (map)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

            If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

            • QueryStringrequired — (Boolean)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

              If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

              If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

              If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

              For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

            • Cookiesrequired — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

              • Forwardrequired — (String)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                Possible values include:
                • "none"
                • "whitelist"
                • "all"
              • WhitelistedNames — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                • Quantityrequired — (Integer)

                  The number of cookie names in the Items list.

                • Items — (Array<String>)

                  A list of cookie names.

            • Headers — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

              For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

              • Quantityrequired — (Integer)

                The number of header names in the Items list.

              • Items — (Array<String>)

                A list of HTTP header names.

            • QueryStringCacheKeys — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

              • Quantityrequired — (Integer)

                The number of whitelisted query string parameters for a cache behavior.

              • Items — (Array<String>)

                A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

          • MinTTL — (Integer)

            This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

          • DefaultTTL — (Integer)

            This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • MaxTTL — (Integer)

            This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        • CacheBehaviors — (map)

          A complex type that contains zero or more CacheBehavior elements.

          • Quantityrequired — (Integer)

            The number of cache behaviors for this distribution.

          • Items — (Array<map>)

            Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

            • PathPatternrequired — (String)

              The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

              Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

              The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

              For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        • CustomErrorResponses — (map)

          A complex type that controls the following:

          • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

          • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

          For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Quantityrequired — (Integer)

            The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

          • Items — (Array<map>)

            A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

            • ErrorCoderequired — (Integer)

              The HTTP status code for which you want to specify a custom error page and/or a caching duration.

            • ResponsePagePath — (String)

              The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

              • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

              • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

              If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

              We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

            • ResponseCode — (String)

              The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

              • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

              • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

              • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

              If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

            • ErrorCachingMinTTL — (Integer)

              The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

              For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

        • Commentrequired — (String)

          A comment to describe the distribution. The comment cannot be longer than 128 characters.

        • Logging — (map)

          A complex type that controls whether access logs are written for the distribution.

          For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

          • IncludeCookiesrequired — (Boolean)

            Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

          • Bucketrequired — (String)

            The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

          • Prefixrequired — (String)

            An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

        • PriceClass — (String)

          The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

          If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

          For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

          Possible values include:
          • "PriceClass_100"
          • "PriceClass_200"
          • "PriceClass_All"
        • Enabledrequired — (Boolean)

          From this field, you can enable or disable the selected distribution.

        • ViewerCertificate — (map)

          A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

          • CloudFrontDefaultCertificate — (Boolean)

            If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

            If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

            • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

            • MinimumProtocolVersion

            • SSLSupportMethod

          • IAMCertificateId — (String)

            If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

            If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

          • ACMCertificateArn — (String)

            If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

            If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

          • SSLSupportMethod — (String)

            If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

            • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

            • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

            • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

            If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

            Possible values include:
            • "sni-only"
            • "vip"
            • "static-ip"
          • MinimumProtocolVersion — (String)

            If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

            • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

            • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

            For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

            Note: On the CloudFront console, this setting is called Security Policy.

            When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

            If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

            Possible values include:
            • "SSLv3"
            • "TLSv1"
            • "TLSv1_2016"
            • "TLSv1.1_2016"
            • "TLSv1.2_2018"
            • "TLSv1.2_2019"
            • "TLSv1.2_2021"
          • Certificate — (String)

            This field is deprecated. Use one of the following fields instead:

            • ACMCertificateArn

            • IAMCertificateId

            • CloudFrontDefaultCertificate

          • CertificateSource — (String)

            This field is deprecated. Use one of the following fields instead:

            • ACMCertificateArn

            • IAMCertificateId

            • CloudFrontDefaultCertificate

            Possible values include:
            • "cloudfront"
            • "iam"
            • "acm"
        • Restrictions — (map)

          A complex type that identifies ways in which you want to restrict distribution of your content.

          • GeoRestrictionrequired — (map)

            A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

            • RestrictionTyperequired — (String)

              The method that you want to use to restrict distribution of your content by country:

              • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

              • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

              • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

              Possible values include:
              • "blacklist"
              • "whitelist"
              • "none"
            • Quantityrequired — (Integer)

              When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

            • Items — (Array<String>)

              A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

              The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

              CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

        • WebACLId — (String)

          A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

          WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

        • HttpVersion — (String)

          (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

          For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

          For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

          Possible values include:
          • "http1.1"
          • "http2"
          • "http3"
          • "http2and3"
        • IsIPV6Enabled — (Boolean)

          If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

          In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

          If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

          • You enable IPv6 for the distribution

          • You're using alternate domain names in the URLs for your objects

          For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

          If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

        • ContinuousDeploymentPolicyId — (String)

          The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

        • Staging — (Boolean)

          A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

      • Tagsrequired — (map)

        A complex type that contains zero or more Tag elements.

        • Items — (Array<map>)

          A complex type that contains Tag elements.

          • Keyrequired — (String)

            A string that contains Tag key.

            The string length should be between 1 and 128 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.

          • Value — (String)

            A string that contains an optional Tag value.

            The string length should be between 0 and 256 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Distribution — (map)

        The distribution's information.

        • Idrequired — (String)

          The distribution's identifier. For example: E1U5RQF7T870K0.

        • ARNrequired — (String)

          The distribution's Amazon Resource Name (ARN).

        • Statusrequired — (String)

          The distribution's status. When the status is Deployed, the distribution's information is fully propagated to all CloudFront edge locations.

        • LastModifiedTimerequired — (Date)

          The date and time when the distribution was last modified.

        • InProgressInvalidationBatchesrequired — (Integer)

          The number of invalidation batches currently in progress.

        • DomainNamerequired — (String)

          The distribution's CloudFront domain name. For example: d111111abcdef8.cloudfront.net.

        • ActiveTrustedSigners — (map)

          We recommend using TrustedKeyGroups instead of TrustedSigners.

          This field contains a list of Amazon Web Services account IDs and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • ActiveTrustedKeyGroups — (map)

          This field contains a list of key groups and the public keys in each key group that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the key groups have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of key groups in the list.

          • Items — (Array<map>)

            A list of key groups, including the identifiers of the public keys in each key group that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • KeyGroupId — (String)

              The identifier of the key group that contains the public keys.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • DistributionConfigrequired — (map)

          The distribution's configuration.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • DefaultRootObject — (String)

            The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

            Specify only the object name, for example, index.html. Don't add a / before the object name.

            If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

            To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

            To replace the default root object, update the distribution configuration and specify the new object.

            For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

          • Originsrequired — (map)

            A complex type that contains information about origins for this distribution.

            • Quantityrequired — (Integer)

              The number of origins for this distribution.

            • Itemsrequired — (Array<map>)

              A list of origins.

              • Idrequired — (String)

                A unique identifier for the origin. This value must be unique within the distribution.

                Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

              • DomainNamerequired — (String)

                The domain name for the origin.

                For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

              • OriginPath — (String)

                An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

                For more information, see Origin Path in the Amazon CloudFront Developer Guide.

              • CustomHeaders — (map)

                A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

                For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of custom headers, if any, for this distribution.

                • Items — (Array<map>)

                  Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                  • HeaderNamerequired — (String)

                    The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                  • HeaderValuerequired — (String)

                    The value for the header that you specified in the HeaderName field.

              • S3OriginConfig — (map)

                Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

                • OriginAccessIdentityrequired — (String)

                  The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                  origin-access-identity/cloudfront/ID-of-origin-access-identity

                  where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                  For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

              • CustomOriginConfig — (map)

                Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

                • HTTPPortrequired — (Integer)

                  The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

                • HTTPSPortrequired — (Integer)

                  The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

                • OriginProtocolPolicyrequired — (String)

                  Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                  • http-only – CloudFront always uses HTTP to connect to the origin.

                  • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                  • https-only – CloudFront always uses HTTPS to connect to the origin.

                  Possible values include:
                  • "http-only"
                  • "match-viewer"
                  • "https-only"
                • OriginSslProtocols — (map)

                  Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                  For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                  • Itemsrequired — (Array<String>)

                    A list that contains allowed SSL/TLS protocols for this distribution.

                • OriginReadTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                  For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

                • OriginKeepaliveTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                  For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

              • ConnectionAttempts — (Integer)

                The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

                For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

                For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

              • ConnectionTimeout — (Integer)

                The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

                For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

              • OriginShield — (map)

                CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

                For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  A flag that specifies whether Origin Shield is enabled.

                  When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

                • OriginShieldRegion — (String)

                  The Amazon Web Services Region for Origin Shield.

                  Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                  When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

              • OriginAccessControlId — (String)

                The unique identifier of an origin access control for this origin.

                For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

          • OriginGroups — (map)

            A complex type that contains information about origin groups for this distribution.

            • Quantityrequired — (Integer)

              The number of origin groups.

            • Items — (Array<map>)

              The items (origin groups) in a distribution.

              • Idrequired — (String)

                The origin group's ID.

              • FailoverCriteriarequired — (map)

                A complex type that contains information about the failover criteria for an origin group.

                • StatusCodesrequired — (map)

                  The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                  • Quantityrequired — (Integer)

                    The number of status codes.

                  • Itemsrequired — (Array<Integer>)

                    The items (status codes) for an origin group.

              • Membersrequired — (map)

                A complex type that contains information about the origins in an origin group.

                • Quantityrequired — (Integer)

                  The number of origins in an origin group.

                • Itemsrequired — (Array<map>)

                  Items (origins) in an origin group.

                  • OriginIdrequired — (String)

                    The ID for an origin in an origin group.

          • DefaultCacheBehaviorrequired — (map)

            A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CacheBehaviors — (map)

            A complex type that contains zero or more CacheBehavior elements.

            • Quantityrequired — (Integer)

              The number of cache behaviors for this distribution.

            • Items — (Array<map>)

              Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

              • PathPatternrequired — (String)

                The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

                Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

                The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

                For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

              • TargetOriginIdrequired — (String)

                The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

              • TrustedSigners — (map)

                We recommend using TrustedKeyGroups instead of TrustedSigners.

                A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of Amazon Web Services accounts in the list.

                • Items — (Array<String>)

                  A list of Amazon Web Services account identifiers.

              • TrustedKeyGroups — (map)

                A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of key groups in the list.

                • Items — (Array<String>)

                  A list of key groups identifiers.

              • ViewerProtocolPolicyrequired — (String)

                The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

                • allow-all: Viewers can use HTTP or HTTPS.

                • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

                • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

                For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

                Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
                Possible values include:
                • "allow-all"
                • "https-only"
                • "redirect-to-https"
              • AllowedMethods — (map)

                A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

                • CloudFront forwards only GET and HEAD requests.

                • CloudFront forwards only GET, HEAD, and OPTIONS requests.

                • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

                If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

                • Quantityrequired — (Integer)

                  The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

                • CachedMethods — (map)

                  A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                  • CloudFront caches responses to GET and HEAD requests.

                  • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                  If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                  • Itemsrequired — (Array<String>)

                    A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

              • SmoothStreaming — (Boolean)

                Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

              • Compress — (Boolean)

                Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

              • LambdaFunctionAssociations — (map)

                A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

                • Quantityrequired — (Integer)

                  The number of Lambda@Edge function associations for this cache behavior.

                • Items — (Array<map>)

                  Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                  • LambdaFunctionARNrequired — (String)

                    The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                  • EventTyperequired — (String)

                    Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                    • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                    • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                    • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                    • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                      If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
                  • IncludeBody — (Boolean)

                    A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

              • FunctionAssociations — (map)

                A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • Quantityrequired — (Integer)

                  The number of CloudFront functions in the list.

                • Items — (Array<map>)

                  The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                  • FunctionARNrequired — (String)

                    The Amazon Resource Name (ARN) of the function.

                  • EventTyperequired — (String)

                    The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
              • FieldLevelEncryptionId — (String)

                The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

              • RealtimeLogConfigArn — (String)

                The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

              • CachePolicyId — (String)

                The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              • OriginRequestPolicyId — (String)

                The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              • ResponseHeadersPolicyId — (String)

                The identifier for a response headers policy.

              • ForwardedValues — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

                If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

                A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

                • QueryStringrequired — (Boolean)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                  If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                  If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                  If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                  For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

                • Cookiesrequired — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                  • Forwardrequired — (String)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                    Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "all"
                  • WhitelistedNames — (map)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                    If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                    For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • Headers — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                  For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

                • QueryStringCacheKeys — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                  • Quantityrequired — (Integer)

                    The number of whitelisted query string parameters for a cache behavior.

                  • Items — (Array<String>)

                    A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

              • MinTTL — (Integer)

                This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

              • DefaultTTL — (Integer)

                This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • MaxTTL — (Integer)

                This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CustomErrorResponses — (map)

            A complex type that controls the following:

            • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

            • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

            For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

            • Items — (Array<map>)

              A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ErrorCoderequired — (Integer)

                The HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ResponsePagePath — (String)

                The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

                • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

                • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

                If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

                We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

              • ResponseCode — (String)

                The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

                • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

                • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

                • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

                If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

              • ErrorCachingMinTTL — (Integer)

                The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

                For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Commentrequired — (String)

            A comment to describe the distribution. The comment cannot be longer than 128 characters.

          • Logging — (map)

            A complex type that controls whether access logs are written for the distribution.

            For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

            • IncludeCookiesrequired — (Boolean)

              Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • PriceClass — (String)

            The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

            If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

            For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            From this field, you can enable or disable the selected distribution.

          • ViewerCertificate — (map)

            A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

            • CloudFrontDefaultCertificate — (Boolean)

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

              If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

              • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

              • MinimumProtocolVersion

              • SSLSupportMethod

            • IAMCertificateId — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

              If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • ACMCertificateArn — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

              If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • SSLSupportMethod — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

              • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

              • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

              • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

              Possible values include:
              • "sni-only"
              • "vip"
              • "static-ip"
            • MinimumProtocolVersion — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

              • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

              • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

              For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: On the CloudFront console, this setting is called Security Policy.

              When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

              Possible values include:
              • "SSLv3"
              • "TLSv1"
              • "TLSv1_2016"
              • "TLSv1.1_2016"
              • "TLSv1.2_2018"
              • "TLSv1.2_2019"
              • "TLSv1.2_2021"
            • Certificate — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

            • CertificateSource — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

              Possible values include:
              • "cloudfront"
              • "iam"
              • "acm"
          • Restrictions — (map)

            A complex type that identifies ways in which you want to restrict distribution of your content.

            • GeoRestrictionrequired — (map)

              A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

              • RestrictionTyperequired — (String)

                The method that you want to use to restrict distribution of your content by country:

                • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

                • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

                • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

                Possible values include:
                • "blacklist"
                • "whitelist"
                • "none"
              • Quantityrequired — (Integer)

                When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

              • Items — (Array<String>)

                A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

                The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

                CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

          • WebACLId — (String)

            A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

            WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

          • HttpVersion — (String)

            (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

            For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

            For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

            Possible values include:
            • "http1.1"
            • "http2"
            • "http3"
            • "http2and3"
          • IsIPV6Enabled — (Boolean)

            If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

            In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

            If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

            • You enable IPv6 for the distribution

            • You're using alternate domain names in the URLs for your objects

            For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

            If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

          • ContinuousDeploymentPolicyId — (String)

            The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

          • Staging — (Boolean)

            A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

        • AliasICPRecordals — (Array<map>)

          Amazon Web Services services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

          For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with Amazon Web Services services in China.

          • CNAME — (String)

            A domain name associated with a distribution.

          • ICPRecordalStatus — (String)

            The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China.

            The status values returned are the following:

            • APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it.

            • SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number.

            • PENDING indicates that CloudFront can't determine the ICP recordal status of the CNAME associated with the distribution because there was an error in trying to determine the status. You can try again to see if the error is resolved in which case CloudFront returns an APPROVED or SUSPENDED status.

            Possible values include:
            • "APPROVED"
            • "SUSPENDED"
            • "PENDING"
      • Location — (String)

        The fully qualified URI of the new distribution resource just created.

      • ETag — (String)

        The current version of the distribution created.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createFieldLevelEncryptionConfig(params = {}, callback) ⇒ AWS.Request

Create a new field-level encryption configuration.

Examples:

Calling the createFieldLevelEncryptionConfig operation

var params = {
  FieldLevelEncryptionConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE',
    ContentTypeProfileConfig: {
      ForwardWhenContentTypeIsUnknown: true || false, /* required */
      ContentTypeProfiles: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            ContentType: 'STRING_VALUE', /* required */
            Format: URLEncoded, /* required */
            ProfileId: 'STRING_VALUE'
          },
          /* more items */
        ]
      }
    },
    QueryArgProfileConfig: {
      ForwardWhenQueryArgProfileIsUnknown: true || false, /* required */
      QueryArgProfiles: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            ProfileId: 'STRING_VALUE', /* required */
            QueryArg: 'STRING_VALUE' /* required */
          },
          /* more items */
        ]
      }
    }
  }
};
cloudfront.createFieldLevelEncryptionConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • FieldLevelEncryptionConfig — (map)

      The request to create a new field-level encryption configuration.

      • CallerReferencerequired — (String)

        A unique number that ensures the request can't be replayed.

      • Comment — (String)

        An optional comment about the configuration. The comment cannot be longer than 128 characters.

      • QueryArgProfileConfig — (map)

        A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.

        • ForwardWhenQueryArgProfileIsUnknownrequired — (Boolean)

          Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.

        • QueryArgProfiles — (map)

          Profiles specified for query argument-profile mapping for field-level encryption.

          • Quantityrequired — (Integer)

            Number of profiles for query argument-profile mapping for field-level encryption.

          • Items — (Array<map>)

            Number of items for query argument-profile mapping for field-level encryption.

            • QueryArgrequired — (String)

              Query argument for field-level encryption query argument-profile mapping.

            • ProfileIdrequired — (String)

              ID of profile to use for field-level encryption query argument-profile mapping

      • ContentTypeProfileConfig — (map)

        A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.

        • ForwardWhenContentTypeIsUnknownrequired — (Boolean)

          The setting in a field-level encryption content type-profile mapping that specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.

        • ContentTypeProfiles — (map)

          The configuration for a field-level encryption content type-profile.

          • Quantityrequired — (Integer)

            The number of field-level encryption content type-profile mappings.

          • Items — (Array<map>)

            Items in a field-level encryption content type-profile mapping.

            • Formatrequired — (String)

              The format for a field-level encryption content type-profile mapping.

              Possible values include:
              • "URLEncoded"
            • ProfileId — (String)

              The profile ID for a field-level encryption content type-profile mapping.

            • ContentTyperequired — (String)

              The content type for a field-level encryption content type-profile mapping.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FieldLevelEncryption — (map)

        Returned when you create a new field-level encryption configuration.

        • Idrequired — (String)

          The configuration ID for a field-level encryption configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.

        • LastModifiedTimerequired — (Date)

          The last time the field-level encryption configuration was changed.

        • FieldLevelEncryptionConfigrequired — (map)

          A complex data type that includes the profile configurations specified for field-level encryption.

          • CallerReferencerequired — (String)

            A unique number that ensures the request can't be replayed.

          • Comment — (String)

            An optional comment about the configuration. The comment cannot be longer than 128 characters.

          • QueryArgProfileConfig — (map)

            A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.

            • ForwardWhenQueryArgProfileIsUnknownrequired — (Boolean)

              Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.

            • QueryArgProfiles — (map)

              Profiles specified for query argument-profile mapping for field-level encryption.

              • Quantityrequired — (Integer)

                Number of profiles for query argument-profile mapping for field-level encryption.

              • Items — (Array<map>)

                Number of items for query argument-profile mapping for field-level encryption.

                • QueryArgrequired — (String)

                  Query argument for field-level encryption query argument-profile mapping.

                • ProfileIdrequired — (String)

                  ID of profile to use for field-level encryption query argument-profile mapping

          • ContentTypeProfileConfig — (map)

            A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.

            • ForwardWhenContentTypeIsUnknownrequired — (Boolean)

              The setting in a field-level encryption content type-profile mapping that specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.

            • ContentTypeProfiles — (map)

              The configuration for a field-level encryption content type-profile.

              • Quantityrequired — (Integer)

                The number of field-level encryption content type-profile mappings.

              • Items — (Array<map>)

                Items in a field-level encryption content type-profile mapping.

                • Formatrequired — (String)

                  The format for a field-level encryption content type-profile mapping.

                  Possible values include:
                  • "URLEncoded"
                • ProfileId — (String)

                  The profile ID for a field-level encryption content type-profile mapping.

                • ContentTyperequired — (String)

                  The content type for a field-level encryption content type-profile mapping.

      • Location — (String)

        The fully qualified URI of the new configuration resource just created.

      • ETag — (String)

        The current version of the field level encryption configuration. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createFieldLevelEncryptionProfile(params = {}, callback) ⇒ AWS.Request

Create a field-level encryption profile.

Examples:

Calling the createFieldLevelEncryptionProfile operation

var params = {
  FieldLevelEncryptionProfileConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    EncryptionEntities: { /* required */
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          FieldPatterns: { /* required */
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              'STRING_VALUE',
              /* more items */
            ]
          },
          ProviderId: 'STRING_VALUE', /* required */
          PublicKeyId: 'STRING_VALUE' /* required */
        },
        /* more items */
      ]
    },
    Name: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE'
  }
};
cloudfront.createFieldLevelEncryptionProfile(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • FieldLevelEncryptionProfileConfig — (map)

      The request to create a field-level encryption profile.

      • Namerequired — (String)

        Profile name for the field-level encryption profile.

      • CallerReferencerequired — (String)

        A unique number that ensures that the request can't be replayed.

      • Comment — (String)

        An optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters.

      • EncryptionEntitiesrequired — (map)

        A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.

        • Quantityrequired — (Integer)

          Number of field pattern items in a field-level encryption content type-profile mapping.

        • Items — (Array<map>)

          An array of field patterns in a field-level encryption content type-profile mapping.

          • PublicKeyIdrequired — (String)

            The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.

          • ProviderIdrequired — (String)

            The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.

          • FieldPatternsrequired — (map)

            Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (). You can't overlap field patterns. For example, you can't have both ABC and AB*. Note that field patterns are case-sensitive.

            • Quantityrequired — (Integer)

              The number of field-level encryption field patterns.

            • Items — (Array<String>)

              An array of the field-level encryption field patterns.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FieldLevelEncryptionProfile — (map)

        Returned when you create a new field-level encryption profile.

        • Idrequired — (String)

          The ID for a field-level encryption profile configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.

        • LastModifiedTimerequired — (Date)

          The last time the field-level encryption profile was updated.

        • FieldLevelEncryptionProfileConfigrequired — (map)

          A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.

          • Namerequired — (String)

            Profile name for the field-level encryption profile.

          • CallerReferencerequired — (String)

            A unique number that ensures that the request can't be replayed.

          • Comment — (String)

            An optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters.

          • EncryptionEntitiesrequired — (map)

            A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.

            • Quantityrequired — (Integer)

              Number of field pattern items in a field-level encryption content type-profile mapping.

            • Items — (Array<map>)

              An array of field patterns in a field-level encryption content type-profile mapping.

              • PublicKeyIdrequired — (String)

                The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.

              • ProviderIdrequired — (String)

                The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.

              • FieldPatternsrequired — (map)

                Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (). You can't overlap field patterns. For example, you can't have both ABC and AB*. Note that field patterns are case-sensitive.

                • Quantityrequired — (Integer)

                  The number of field-level encryption field patterns.

                • Items — (Array<String>)

                  An array of the field-level encryption field patterns.

      • Location — (String)

        The fully qualified URI of the new profile resource just created.

      • ETag — (String)

        The current version of the field level encryption profile. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createFunction(params = {}, callback) ⇒ AWS.Request

Creates a CloudFront function.

To create a function, you provide the function code and some configuration information about the function. The response contains an Amazon Resource Name (ARN) that uniquely identifies the function.

When you create a function, it's in the DEVELOPMENT stage. In this stage, you can test the function with TestFunction, and update it with UpdateFunction.

When you're ready to use your function with a CloudFront distribution, use PublishFunction to copy the function from the DEVELOPMENT stage to LIVE. When it's live, you can attach the function to a distribution's cache behavior, using the function's ARN.

Service Reference:

Examples:

To create a function


/* Use the following command to create a function. */

 var params = {
  FunctionCode: <Binary String>, 
  FunctionConfig: {
   Comment: "my-function-comment", 
   KeyValueStoreAssociations: {
    Items: [
       {
      KeyValueStoreARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
     }
    ], 
    Quantity: 1
   }, 
   Runtime: "cloudfront-js-2.0"
  }, 
  Name: "my-function-name"
 };
 cloudfront.createFunction(params, function(err, data) {
   if (err) console.log(err, err.stack); // an error occurred
   else     console.log(data);           // successful response
   /*
   data = {
    ETag: "ETVPDKIKX0DER", 
    FunctionSummary: {
     FunctionConfig: {
      Comment: "my-function-comment", 
      KeyValueStoreAssociations: {
       Items: [
          {
         KeyValueStoreARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
        }
       ], 
       Quantity: 1
      }, 
      Runtime: "cloudfront-js-2.0"
     }, 
     FunctionMetadata: {
      CreatedTime: <Date Representation>, 
      FunctionARN: "arn:aws:cloudfront::123456789012:function/my-function-name", 
      LastModifiedTime: <Date Representation>, 
      Stage: "DEVELOPMENT"
     }, 
     Name: "my-function-name", 
     Status: "UNPUBLISHED"
    }, 
    Location: "https://cloudfront.amazonaws.com/2020-05-31/function/arn:aws:cloudfront::123456789012:function/my-function-name"
   }
   */
 });

Calling the createFunction operation

var params = {
  FunctionCode: Buffer.from('...') || 'STRING_VALUE' /* Strings will be Base-64 encoded on your behalf */, /* required */
  FunctionConfig: { /* required */
    Comment: 'STRING_VALUE', /* required */
    Runtime: cloudfront-js-1.0 | cloudfront-js-2.0, /* required */
    KeyValueStoreAssociations: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          KeyValueStoreARN: 'STRING_VALUE' /* required */
        },
        /* more items */
      ]
    }
  },
  Name: 'STRING_VALUE' /* required */
};
cloudfront.createFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      A name to identify the function.

    • FunctionConfig — (map)

      Configuration information about the function, including an optional comment and the function's runtime.

      • Commentrequired — (String)

        A comment to describe the function.

      • Runtimerequired — (String)

        The function's runtime environment version.

        Possible values include:
        • "cloudfront-js-1.0"
        • "cloudfront-js-2.0"
      • KeyValueStoreAssociations — (map)

        The configuration for the Key Value Store associations.

        • Quantityrequired — (Integer)

          The quantity of Key Value Store associations.

        • Items — (Array<map>)

          The items of the Key Value Store association.

          • KeyValueStoreARNrequired — (String)

            The Amazon Resource Name (ARN) of the Key Value Store association.

    • FunctionCode — (Buffer, Typed Array, Blob, String)

      The function code. For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FunctionSummary — (map)

        Contains configuration information and metadata about a CloudFront function.

        • Namerequired — (String)

          The name of the CloudFront function.

        • Status — (String)

          The status of the CloudFront function.

        • FunctionConfigrequired — (map)

          Contains configuration information about a CloudFront function.

          • Commentrequired — (String)

            A comment to describe the function.

          • Runtimerequired — (String)

            The function's runtime environment version.

            Possible values include:
            • "cloudfront-js-1.0"
            • "cloudfront-js-2.0"
          • KeyValueStoreAssociations — (map)

            The configuration for the Key Value Store associations.

            • Quantityrequired — (Integer)

              The quantity of Key Value Store associations.

            • Items — (Array<map>)

              The items of the Key Value Store association.

              • KeyValueStoreARNrequired — (String)

                The Amazon Resource Name (ARN) of the Key Value Store association.

        • FunctionMetadatarequired — (map)

          Contains metadata about a CloudFront function.

          • FunctionARNrequired — (String)

            The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function.

          • Stage — (String)

            The stage that the function is in, either DEVELOPMENT or LIVE.

            When a function is in the DEVELOPMENT stage, you can test the function with TestFunction, and update it with UpdateFunction.

            When a function is in the LIVE stage, you can attach the function to a distribution's cache behavior, using the function's ARN.

            Possible values include:
            • "DEVELOPMENT"
            • "LIVE"
          • CreatedTime — (Date)

            The date and time when the function was created.

          • LastModifiedTimerequired — (Date)

            The date and time when the function was most recently updated.

      • Location — (String)

        The URL of the CloudFront function. Use the URL to manage the function with the CloudFront API.

      • ETag — (String)

        The version identifier for the current version of the CloudFront function.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createInvalidation(params = {}, callback) ⇒ AWS.Request

Create a new invalidation.

Service Reference:

Examples:

Calling the createInvalidation operation

var params = {
  DistributionId: 'STRING_VALUE', /* required */
  InvalidationBatch: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    Paths: { /* required */
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        'STRING_VALUE',
        /* more items */
      ]
    }
  }
};
cloudfront.createInvalidation(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DistributionId — (String)

      The distribution's id.

    • InvalidationBatch — (map)

      The batch information for the invalidation.

      • Pathsrequired — (map)

        A complex type that contains information about the objects that you want to invalidate. For more information, see Specifying the Objects to Invalidate in the Amazon CloudFront Developer Guide.

        • Quantityrequired — (Integer)

          The number of invalidation paths specified for the objects that you want to invalidate.

        • Items — (Array<String>)

          A complex type that contains a list of the paths that you want to invalidate.

      • CallerReferencerequired — (String)

        A value that you specify to uniquely identify an invalidation request. CloudFront uses the value to prevent you from accidentally resubmitting an identical request. Whenever you create a new invalidation request, you must specify a new value for CallerReference and change other values in the request as applicable. One way to ensure that the value of CallerReference is unique is to use a timestamp, for example, 20120301090000.

        If you make a second invalidation request with the same value for CallerReference, and if the rest of the request is the same, CloudFront doesn't create a new invalidation request. Instead, CloudFront returns information about the invalidation request that you previously created with the same CallerReference.

        If CallerReference is a value you already sent in a previous invalidation batch request but the content of any Path is different from the original request, CloudFront returns an InvalidationBatchAlreadyExists error.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Location — (String)

        The fully qualified URI of the distribution and invalidation batch request, including the Invalidation ID.

      • Invalidation — (map)

        The invalidation's information.

        • Idrequired — (String)

          The identifier for the invalidation request. For example: IDFDVBD632BHDS5.

        • Statusrequired — (String)

          The status of the invalidation request. When the invalidation batch is finished, the status is Completed.

        • CreateTimerequired — (Date)

          The date and time the invalidation request was first made.

        • InvalidationBatchrequired — (map)

          The current invalidation information for the batch request.

          • Pathsrequired — (map)

            A complex type that contains information about the objects that you want to invalidate. For more information, see Specifying the Objects to Invalidate in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of invalidation paths specified for the objects that you want to invalidate.

            • Items — (Array<String>)

              A complex type that contains a list of the paths that you want to invalidate.

          • CallerReferencerequired — (String)

            A value that you specify to uniquely identify an invalidation request. CloudFront uses the value to prevent you from accidentally resubmitting an identical request. Whenever you create a new invalidation request, you must specify a new value for CallerReference and change other values in the request as applicable. One way to ensure that the value of CallerReference is unique is to use a timestamp, for example, 20120301090000.

            If you make a second invalidation request with the same value for CallerReference, and if the rest of the request is the same, CloudFront doesn't create a new invalidation request. Instead, CloudFront returns information about the invalidation request that you previously created with the same CallerReference.

            If CallerReference is a value you already sent in a previous invalidation batch request but the content of any Path is different from the original request, CloudFront returns an InvalidationBatchAlreadyExists error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createKeyGroup(params = {}, callback) ⇒ AWS.Request

Creates a key group that you can use with CloudFront signed URLs and signed cookies.

To create a key group, you must specify at least one public key for the key group. After you create a key group, you can reference it from one or more cache behaviors. When you reference a key group in a cache behavior, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

Service Reference:

Examples:

Calling the createKeyGroup operation

var params = {
  KeyGroupConfig: { /* required */
    Items: [ /* required */
      'STRING_VALUE',
      /* more items */
    ],
    Name: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE'
  }
};
cloudfront.createKeyGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • KeyGroupConfig — (map)

      A key group configuration.

      • Namerequired — (String)

        A name to identify the key group.

      • Itemsrequired — (Array<String>)

        A list of the identifiers of the public keys in the key group.

      • Comment — (String)

        A comment to describe the key group. The comment cannot be longer than 128 characters.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • KeyGroup — (map)

        The key group that was just created.

        • Idrequired — (String)

          The identifier for the key group.

        • LastModifiedTimerequired — (Date)

          The date and time when the key group was last modified.

        • KeyGroupConfigrequired — (map)

          The key group configuration.

          • Namerequired — (String)

            A name to identify the key group.

          • Itemsrequired — (Array<String>)

            A list of the identifiers of the public keys in the key group.

          • Comment — (String)

            A comment to describe the key group. The comment cannot be longer than 128 characters.

      • Location — (String)

        The URL of the key group.

      • ETag — (String)

        The identifier for this version of the key group.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createKeyValueStore(params = {}, callback) ⇒ AWS.Request

Specifies the Key Value Store resource to add to your account. In your account, the Key Value Store names must be unique. You can also import Key Value Store data in JSON format from an S3 bucket by providing a valid ImportSource that you own.

Service Reference:

Examples:

To create a KeyValueStore


/* Use the following command to create a KeyValueStore. */

 var params = {
  Comment: "my-key-valuestore-comment", 
  ImportSource: {
   SourceARN: "arn:aws:s3:::my-bucket/validJSON.json", 
   SourceType: "S3"
  }, 
  Name: "my-keyvaluestore-name"
 };
 cloudfront.createKeyValueStore(params, function(err, data) {
   if (err) console.log(err, err.stack); // an error occurred
   else     console.log(data);           // successful response
   /*
   data = {
    ETag: "ETVPDKIKX0DER", 
    KeyValueStore: {
     ARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", 
     Comment: "my-key-valuestore-comment", 
     Id: "54947df8-0e9e-4471-a2f9-9af509fb5889", 
     LastModifiedTime: <Date Representation>, 
     Name: "my-keyvaluestore-name", 
     Status: "PROVISIONING"
    }, 
    Location: "https://cloudfront.amazonaws.com/2020-05-31/key-value-store/arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
   }
   */
 });

Calling the createKeyValueStore operation

var params = {
  Name: 'STRING_VALUE', /* required */
  Comment: 'STRING_VALUE',
  ImportSource: {
    SourceARN: 'STRING_VALUE', /* required */
    SourceType: S3 /* required */
  }
};
cloudfront.createKeyValueStore(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the Key Value Store. The maximum length of the name is 32 characters.

    • Comment — (String)

      The comment of the Key Value Store.

    • ImportSource — (map)

      The S3 bucket that provides the source for the import. The source must be in a valid JSON format.

      • SourceTyperequired — (String)

        The source type of the import source for the Key Value Store.

        Possible values include:
        • "S3"
      • SourceARNrequired — (String)

        The Amazon Resource Name (ARN) of the import source for the Key Value Store.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • KeyValueStore — (map)

        The resulting Key Value Store.

        • Namerequired — (String)

          The name of the Key Value Store.

        • Idrequired — (String)

          The unique Id for the Key Value Store.

        • Commentrequired — (String)

          A comment for the Key Value Store.

        • ARNrequired — (String)

          The Amazon Resource Name (ARN) of the Key Value Store.

        • Status — (String)

          The status of the Key Value Store.

        • LastModifiedTimerequired — (Date)

          The last-modified time of the Key Value Store.

      • ETag — (String)

        The ETag in the resulting Key Value Store.

      • Location — (String)

        The location of the resulting Key Value Store.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createMonitoringSubscription(params = {}, callback) ⇒ AWS.Request

Enables additional CloudWatch metrics for the specified CloudFront distribution. The additional metrics incur an additional cost.

For more information, see Viewing additional CloudFront distribution metrics in the Amazon CloudFront Developer Guide.

Service Reference:

Examples:

Calling the createMonitoringSubscription operation

var params = {
  DistributionId: 'STRING_VALUE', /* required */
  MonitoringSubscription: { /* required */
    RealtimeMetricsSubscriptionConfig: {
      RealtimeMetricsSubscriptionStatus: Enabled | Disabled /* required */
    }
  }
};
cloudfront.createMonitoringSubscription(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DistributionId — (String)

      The ID of the distribution that you are enabling metrics for.

    • MonitoringSubscription — (map)

      A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution.

      • RealtimeMetricsSubscriptionConfig — (map)

        A subscription configuration for additional CloudWatch metrics.

        • RealtimeMetricsSubscriptionStatusrequired — (String)

          A flag that indicates whether additional CloudWatch metrics are enabled for a given CloudFront distribution.

          Possible values include:
          • "Enabled"
          • "Disabled"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • MonitoringSubscription — (map)

        A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution.

        • RealtimeMetricsSubscriptionConfig — (map)

          A subscription configuration for additional CloudWatch metrics.

          • RealtimeMetricsSubscriptionStatusrequired — (String)

            A flag that indicates whether additional CloudWatch metrics are enabled for a given CloudFront distribution.

            Possible values include:
            • "Enabled"
            • "Disabled"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createOriginAccessControl(params = {}, callback) ⇒ AWS.Request

Creates a new origin access control in CloudFront. After you create an origin access control, you can add it to an origin in a CloudFront distribution so that CloudFront sends authenticated (signed) requests to the origin.

This makes it possible to block public access to the origin, allowing viewers (users) to access the origin's content only through CloudFront.

For more information about using a CloudFront origin access control, see Restricting access to an Amazon Web Services origin in the Amazon CloudFront Developer Guide.

Service Reference:

Examples:

Calling the createOriginAccessControl operation

var params = {
  OriginAccessControlConfig: { /* required */
    Name: 'STRING_VALUE', /* required */
    OriginAccessControlOriginType: s3 | mediastore, /* required */
    SigningBehavior: never | always | no-override, /* required */
    SigningProtocol: sigv4, /* required */
    Description: 'STRING_VALUE'
  }
};
cloudfront.createOriginAccessControl(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • OriginAccessControlConfig — (map)

      Contains the origin access control.

      • Namerequired — (String)

        A name to identify the origin access control.

      • Description — (String)

        A description of the origin access control.

      • SigningProtocolrequired — (String)

        The signing protocol of the origin access control, which determines how CloudFront signs (authenticates) requests. The only valid value is sigv4.

        Possible values include:
        • "sigv4"
      • SigningBehaviorrequired — (String)

        Specifies which requests CloudFront signs (adds authentication information to). Specify always for the most common use case. For more information, see origin access control advanced settings in the Amazon CloudFront Developer Guide.

        This field can have one of the following values:

        • always – CloudFront signs all origin requests, overwriting the Authorization header from the viewer request if one exists.

        • never – CloudFront doesn't sign any origin requests. This value turns off origin access control for all origins in all distributions that use this origin access control.

        • no-override – If the viewer request doesn't contain the Authorization header, then CloudFront signs the origin request. If the viewer request contains the Authorization header, then CloudFront doesn't sign the origin request and instead passes along the Authorization header from the viewer request. WARNING: To pass along the Authorization header from the viewer request, you must add the Authorization header to a cache policy for all cache behaviors that use origins associated with this origin access control.

        Possible values include:
        • "never"
        • "always"
        • "no-override"
      • OriginAccessControlOriginTyperequired — (String)

        The type of origin that this origin access control is for.

        Possible values include:
        • "s3"
        • "mediastore"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • OriginAccessControl — (map)

        Contains an origin access control.

        • Idrequired — (String)

          The unique identifier of the origin access control.

        • OriginAccessControlConfig — (map)

          The origin access control.

          • Namerequired — (String)

            A name to identify the origin access control.

          • Description — (String)

            A description of the origin access control.

          • SigningProtocolrequired — (String)

            The signing protocol of the origin access control, which determines how CloudFront signs (authenticates) requests. The only valid value is sigv4.

            Possible values include:
            • "sigv4"
          • SigningBehaviorrequired — (String)

            Specifies which requests CloudFront signs (adds authentication information to). Specify always for the most common use case. For more information, see origin access control advanced settings in the Amazon CloudFront Developer Guide.

            This field can have one of the following values:

            • always – CloudFront signs all origin requests, overwriting the Authorization header from the viewer request if one exists.

            • never – CloudFront doesn't sign any origin requests. This value turns off origin access control for all origins in all distributions that use this origin access control.

            • no-override – If the viewer request doesn't contain the Authorization header, then CloudFront signs the origin request. If the viewer request contains the Authorization header, then CloudFront doesn't sign the origin request and instead passes along the Authorization header from the viewer request. WARNING: To pass along the Authorization header from the viewer request, you must add the Authorization header to a cache policy for all cache behaviors that use origins associated with this origin access control.

            Possible values include:
            • "never"
            • "always"
            • "no-override"
          • OriginAccessControlOriginTyperequired — (String)

            The type of origin that this origin access control is for.

            Possible values include:
            • "s3"
            • "mediastore"
      • Location — (String)

        The URL of the origin access control.

      • ETag — (String)

        The version identifier for the current version of the origin access control.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createOriginRequestPolicy(params = {}, callback) ⇒ AWS.Request

Creates an origin request policy.

After you create an origin request policy, you can attach it to one or more cache behaviors. When it's attached to a cache behavior, the origin request policy determines the values that CloudFront includes in requests that it sends to the origin. Each request that CloudFront sends to the origin includes the following:

  • The request body and the URL path (without the domain name) from the viewer request.

  • The headers that CloudFront automatically includes in every origin request, including Host, User-Agent, and X-Amz-Cf-Id.

  • All HTTP headers, cookies, and URL query strings that are specified in the cache policy or the origin request policy. These can include items from the viewer request and, in the case of headers, additional ones that are added by CloudFront.

CloudFront sends a request when it can't find a valid object in its cache that matches the request. If you want to send values to the origin and also include them in the cache key, use CachePolicy.

For more information about origin request policies, see Controlling origin requests in the Amazon CloudFront Developer Guide.

Service Reference:

Examples:

Calling the createOriginRequestPolicy operation

var params = {
  OriginRequestPolicyConfig: { /* required */
    CookiesConfig: { /* required */
      CookieBehavior: none | whitelist | all | allExcept, /* required */
      Cookies: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    HeadersConfig: { /* required */
      HeaderBehavior: none | whitelist | allViewer | allViewerAndWhitelistCloudFront | allExcept, /* required */
      Headers: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    Name: 'STRING_VALUE', /* required */
    QueryStringsConfig: { /* required */
      QueryStringBehavior: none | whitelist | all | allExcept, /* required */
      QueryStrings: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    Comment: 'STRING_VALUE'
  }
};
cloudfront.createOriginRequestPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • OriginRequestPolicyConfig — (map)

      An origin request policy configuration.

      • Comment — (String)

        A comment to describe the origin request policy. The comment cannot be longer than 128 characters.

      • Namerequired — (String)

        A unique name to identify the origin request policy.

      • HeadersConfigrequired — (map)

        The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.

        • HeaderBehaviorrequired — (String)

          Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:

          • none – No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in a CachePolicy are included in origin requests.

          • whitelist – Only the HTTP headers that are listed in the Headers type are included in requests that CloudFront sends to the origin.

          • allViewer – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.

          • allViewerAndWhitelistCloudFront – All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the Headers type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.

          • allExcept – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the Headers type, which are not included.

          Possible values include:
          • "none"
          • "whitelist"
          • "allViewer"
          • "allViewerAndWhitelistCloudFront"
          • "allExcept"
        • Headers — (map)

          Contains a list of HTTP header names.

          • Quantityrequired — (Integer)

            The number of header names in the Items list.

          • Items — (Array<String>)

            A list of HTTP header names.

      • CookiesConfigrequired — (map)

        The cookies from viewer requests to include in origin requests.

        • CookieBehaviorrequired — (String)

          Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

          • none – No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in a CachePolicy are included in origin requests.

          • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in requests that CloudFront sends to the origin.

          • all – All cookies in viewer requests are included in requests that CloudFront sends to the origin.

          • allExcept – All cookies in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the CookieNames type, which are not included.

          Possible values include:
          • "none"
          • "whitelist"
          • "all"
          • "allExcept"
        • Cookies — (map)

          Contains a list of cookie names.

          • Quantityrequired — (Integer)

            The number of cookie names in the Items list.

          • Items — (Array<String>)

            A list of cookie names.

      • QueryStringsConfigrequired — (map)

        The URL query strings from viewer requests to include in origin requests.

        • QueryStringBehaviorrequired — (String)

          Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

          • none – No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in a CachePolicy are included in origin requests.

          • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in requests that CloudFront sends to the origin.

          • all – All query strings in viewer requests are included in requests that CloudFront sends to the origin.

          • allExcept – All query strings in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the QueryStringNames type, which are not included.

          Possible values include:
          • "none"
          • "whitelist"
          • "all"
          • "allExcept"
        • QueryStrings — (map)

          Contains the specific query strings in viewer requests that either are or are not included in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the OriginRequestPolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

          • Quantityrequired — (Integer)

            The number of query string names in the Items list.

          • Items — (Array<String>)

            A list of query string names.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • OriginRequestPolicy — (map)

        An origin request policy.

        • Idrequired — (String)

          The unique identifier for the origin request policy.

        • LastModifiedTimerequired — (Date)

          The date and time when the origin request policy was last modified.

        • OriginRequestPolicyConfigrequired — (map)

          The origin request policy configuration.

          • Comment — (String)

            A comment to describe the origin request policy. The comment cannot be longer than 128 characters.

          • Namerequired — (String)

            A unique name to identify the origin request policy.

          • HeadersConfigrequired — (map)

            The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.

            • HeaderBehaviorrequired — (String)

              Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:

              • none – No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in a CachePolicy are included in origin requests.

              • whitelist – Only the HTTP headers that are listed in the Headers type are included in requests that CloudFront sends to the origin.

              • allViewer – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.

              • allViewerAndWhitelistCloudFront – All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the Headers type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.

              • allExcept – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the Headers type, which are not included.

              Possible values include:
              • "none"
              • "whitelist"
              • "allViewer"
              • "allViewerAndWhitelistCloudFront"
              • "allExcept"
            • Headers — (map)

              Contains a list of HTTP header names.

              • Quantityrequired — (Integer)

                The number of header names in the Items list.

              • Items — (Array<String>)

                A list of HTTP header names.

          • CookiesConfigrequired — (map)

            The cookies from viewer requests to include in origin requests.

            • CookieBehaviorrequired — (String)

              Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

              • none – No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in a CachePolicy are included in origin requests.

              • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in requests that CloudFront sends to the origin.

              • all – All cookies in viewer requests are included in requests that CloudFront sends to the origin.

              • allExcept – All cookies in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the CookieNames type, which are not included.

              Possible values include:
              • "none"
              • "whitelist"
              • "all"
              • "allExcept"
            • Cookies — (map)

              Contains a list of cookie names.

              • Quantityrequired — (Integer)

                The number of cookie names in the Items list.

              • Items — (Array<String>)

                A list of cookie names.

          • QueryStringsConfigrequired — (map)

            The URL query strings from viewer requests to include in origin requests.

            • QueryStringBehaviorrequired — (String)

              Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

              • none – No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in a CachePolicy are included in origin requests.

              • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in requests that CloudFront sends to the origin.

              • all – All query strings in viewer requests are included in requests that CloudFront sends to the origin.

              • allExcept – All query strings in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the QueryStringNames type, which are not included.

              Possible values include:
              • "none"
              • "whitelist"
              • "all"
              • "allExcept"
            • QueryStrings — (map)

              Contains the specific query strings in viewer requests that either are or are not included in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the OriginRequestPolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

              • Quantityrequired — (Integer)

                The number of query string names in the Items list.

              • Items — (Array<String>)

                A list of query string names.

      • Location — (String)

        The fully qualified URI of the origin request policy just created.

      • ETag — (String)

        The current version of the origin request policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createPublicKey(params = {}, callback) ⇒ AWS.Request

Uploads a public key to CloudFront that you can use with signed URLs and signed cookies, or with field-level encryption.

Service Reference:

Examples:

Calling the createPublicKey operation

var params = {
  PublicKeyConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    EncodedKey: 'STRING_VALUE', /* required */
    Name: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE'
  }
};
cloudfront.createPublicKey(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • PublicKeyConfig — (map)

      A CloudFront public key configuration.

      • CallerReferencerequired — (String)

        A string included in the request to help make sure that the request can't be replayed.

      • Namerequired — (String)

        A name to help identify the public key.

      • EncodedKeyrequired — (String)

        The public key that you can use with signed URLs and signed cookies, or with field-level encryption.

      • Comment — (String)

        A comment to describe the public key. The comment cannot be longer than 128 characters.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • PublicKey — (map)

        The public key.

        • Idrequired — (String)

          The identifier of the public key.

        • CreatedTimerequired — (Date)

          The date and time when the public key was uploaded.

        • PublicKeyConfigrequired — (map)

          Configuration information about a public key that you can use with signed URLs and signed cookies, or with field-level encryption.

          • CallerReferencerequired — (String)

            A string included in the request to help make sure that the request can't be replayed.

          • Namerequired — (String)

            A name to help identify the public key.

          • EncodedKeyrequired — (String)

            The public key that you can use with signed URLs and signed cookies, or with field-level encryption.

          • Comment — (String)

            A comment to describe the public key. The comment cannot be longer than 128 characters.

      • Location — (String)

        The URL of the public key.

      • ETag — (String)

        The identifier for this version of the public key.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createRealtimeLogConfig(params = {}, callback) ⇒ AWS.Request

Creates a real-time log configuration.

After you create a real-time log configuration, you can attach it to one or more cache behaviors to send real-time log data to the specified Amazon Kinesis data stream.

For more information about real-time log configurations, see Real-time logs in the Amazon CloudFront Developer Guide.

Service Reference:

Examples:

Calling the createRealtimeLogConfig operation

var params = {
  EndPoints: [ /* required */
    {
      StreamType: 'STRING_VALUE', /* required */
      KinesisStreamConfig: {
        RoleARN: 'STRING_VALUE', /* required */
        StreamARN: 'STRING_VALUE' /* required */
      }
    },
    /* more items */
  ],
  Fields: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  Name: 'STRING_VALUE', /* required */
  SamplingRate: 'NUMBER_VALUE' /* required */
};
cloudfront.createRealtimeLogConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • EndPoints — (Array<map>)

      Contains information about the Amazon Kinesis data stream where you are sending real-time log data.

      • StreamTyperequired — (String)

        The type of data stream where you are sending real-time log data. The only valid value is Kinesis.

      • KinesisStreamConfig — (map)

        Contains information about the Amazon Kinesis data stream where you are sending real-time log data.

        • RoleARNrequired — (String)

          The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.

          For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide.

        • StreamARNrequired — (String)

          The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.

    • Fields — (Array<String>)

      A list of fields to include in each real-time log record.

      For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.

    • Name — (String)

      A unique name to identify this real-time log configuration.

    • SamplingRate — (Integer)

      The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. You must provide an integer between 1 and 100, inclusive.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RealtimeLogConfig — (map)

        A real-time log configuration.

        • ARNrequired — (String)

          The Amazon Resource Name (ARN) of this real-time log configuration.

        • Namerequired — (String)

          The unique name of this real-time log configuration.

        • SamplingRaterequired — (Integer)

          The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. The sampling rate is an integer between 1 and 100, inclusive.

        • EndPointsrequired — (Array<map>)

          Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.

          • StreamTyperequired — (String)

            The type of data stream where you are sending real-time log data. The only valid value is Kinesis.

          • KinesisStreamConfig — (map)

            Contains information about the Amazon Kinesis data stream where you are sending real-time log data.

            • RoleARNrequired — (String)

              The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.

              For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide.

            • StreamARNrequired — (String)

              The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.

        • Fieldsrequired — (Array<String>)

          A list of fields that are included in each real-time log record. In an API response, the fields are provided in the same order in which they are sent to the Amazon Kinesis data stream.

          For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createResponseHeadersPolicy(params = {}, callback) ⇒ AWS.Request

Creates a response headers policy.

A response headers policy contains information about a set of HTTP headers. To create a response headers policy, you provide some metadata about the policy and a set of configurations that specify the headers.

After you create a response headers policy, you can use its ID to attach it to one or more cache behaviors in a CloudFront distribution. When it's attached to a cache behavior, the response headers policy affects the HTTP headers that CloudFront includes in HTTP responses to requests that match the cache behavior. CloudFront adds or removes response headers according to the configuration of the response headers policy.

For more information, see Adding or removing HTTP headers in CloudFront responses in the Amazon CloudFront Developer Guide.

Service Reference:

Examples:

Calling the createResponseHeadersPolicy operation

var params = {
  ResponseHeadersPolicyConfig: { /* required */
    Name: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE',
    CorsConfig: {
      AccessControlAllowCredentials: true || false, /* required */
      AccessControlAllowHeaders: { /* required */
        Items: [ /* required */
          'STRING_VALUE',
          /* more items */
        ],
        Quantity: 'NUMBER_VALUE' /* required */
      },
      AccessControlAllowMethods: { /* required */
        Items: [ /* required */
          GET | POST | OPTIONS | PUT | DELETE | PATCH | HEAD | ALL,
          /* more items */
        ],
        Quantity: 'NUMBER_VALUE' /* required */
      },
      AccessControlAllowOrigins: { /* required */
        Items: [ /* required */
          'STRING_VALUE',
          /* more items */
        ],
        Quantity: 'NUMBER_VALUE' /* required */
      },
      OriginOverride: true || false, /* required */
      AccessControlExposeHeaders: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      AccessControlMaxAgeSec: 'NUMBER_VALUE'
    },
    CustomHeadersConfig: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          Header: 'STRING_VALUE', /* required */
          Override: true || false, /* required */
          Value: 'STRING_VALUE' /* required */
        },
        /* more items */
      ]
    },
    RemoveHeadersConfig: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          Header: 'STRING_VALUE' /* required */
        },
        /* more items */
      ]
    },
    SecurityHeadersConfig: {
      ContentSecurityPolicy: {
        ContentSecurityPolicy: 'STRING_VALUE', /* required */
        Override: true || false /* required */
      },
      ContentTypeOptions: {
        Override: true || false /* required */
      },
      FrameOptions: {
        FrameOption: DENY | SAMEORIGIN, /* required */
        Override: true || false /* required */
      },
      ReferrerPolicy: {
        Override: true || false, /* required */
        ReferrerPolicy: no-referrer | no-referrer-when-downgrade | origin | origin-when-cross-origin | same-origin | strict-origin | strict-origin-when-cross-origin | unsafe-url /* required */
      },
      StrictTransportSecurity: {
        AccessControlMaxAgeSec: 'NUMBER_VALUE', /* required */
        Override: true || false, /* required */
        IncludeSubdomains: true || false,
        Preload: true || false
      },
      XSSProtection: {
        Override: true || false, /* required */
        Protection: true || false, /* required */
        ModeBlock: true || false,
        ReportUri: 'STRING_VALUE'
      }
    },
    ServerTimingHeadersConfig: {
      Enabled: true || false, /* required */
      SamplingRate: 'NUMBER_VALUE'
    }
  }
};
cloudfront.createResponseHeadersPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResponseHeadersPolicyConfig — (map)

      Contains metadata about the response headers policy, and a set of configurations that specify the HTTP headers.

      • Comment — (String)

        A comment to describe the response headers policy.

        The comment cannot be longer than 128 characters.

      • Namerequired — (String)

        A name to identify the response headers policy.

        The name must be unique for response headers policies in this Amazon Web Services account.

      • CorsConfig — (map)

        A configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).

        • AccessControlAllowOriginsrequired — (map)

          A list of origins (domain names) that CloudFront can use as the value for the Access-Control-Allow-Origin HTTP response header.

          For more information about the Access-Control-Allow-Origin HTTP response header, see Access-Control-Allow-Origin in the MDN Web Docs.

          • Quantityrequired — (Integer)

            The number of origins in the list.

          • Itemsrequired — (Array<String>)

            The list of origins (domain names). You can specify * to allow all origins.

        • AccessControlAllowHeadersrequired — (map)

          A list of HTTP header names that CloudFront includes as values for the Access-Control-Allow-Headers HTTP response header.

          For more information about the Access-Control-Allow-Headers HTTP response header, see Access-Control-Allow-Headers in the MDN Web Docs.

          • Quantityrequired — (Integer)

            The number of HTTP header names in the list.

          • Itemsrequired — (Array<String>)

            The list of HTTP header names. You can specify * to allow all headers.

        • AccessControlAllowMethodsrequired — (map)

          A list of HTTP methods that CloudFront includes as values for the Access-Control-Allow-Methods HTTP response header.

          For more information about the Access-Control-Allow-Methods HTTP response header, see Access-Control-Allow-Methods in the MDN Web Docs.

          • Quantityrequired — (Integer)

            The number of HTTP methods in the list.

          • Itemsrequired — (Array<String>)

            The list of HTTP methods. Valid values are:

            • GET

            • DELETE

            • HEAD

            • OPTIONS

            • PATCH

            • POST

            • PUT

            • ALL

            ALL is a special value that includes all of the listed HTTP methods.

        • AccessControlAllowCredentialsrequired — (Boolean)

          A Boolean that CloudFront uses as the value for the Access-Control-Allow-Credentials HTTP response header.

          For more information about the Access-Control-Allow-Credentials HTTP response header, see Access-Control-Allow-Credentials in the MDN Web Docs.

        • AccessControlExposeHeaders — (map)

          A list of HTTP headers that CloudFront includes as values for the Access-Control-Expose-Headers HTTP response header.

          For more information about the Access-Control-Expose-Headers HTTP response header, see Access-Control-Expose-Headers in the MDN Web Docs.

          • Quantityrequired — (Integer)

            The number of HTTP headers in the list.

          • Items — (Array<String>)

            The list of HTTP headers. You can specify * to expose all headers.

        • AccessControlMaxAgeSec — (Integer)

          A number that CloudFront uses as the value for the Access-Control-Max-Age HTTP response header.

          For more information about the Access-Control-Max-Age HTTP response header, see Access-Control-Max-Age in the MDN Web Docs.

        • OriginOverriderequired — (Boolean)

          A Boolean that determines whether CloudFront overrides HTTP response headers received from the origin with the ones specified in this response headers policy.

      • SecurityHeadersConfig — (map)

        A configuration for a set of security-related HTTP response headers.

        • XSSProtection — (map)

          Determines whether CloudFront includes the X-XSS-Protection HTTP response header and the header's value.

          For more information about the X-XSS-Protection HTTP response header, see X-XSS-Protection in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header received from the origin with the one specified in this response headers policy.

          • Protectionrequired — (Boolean)

            A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting is true, the value of the X-XSS-Protection header is 1. When this setting is false, the value of the X-XSS-Protection header is 0.

            For more information about these settings, see X-XSS-Protection in the MDN Web Docs.

          • ModeBlock — (Boolean)

            A Boolean that determines whether CloudFront includes the mode=block directive in the X-XSS-Protection header.

            For more information about this directive, see X-XSS-Protection in the MDN Web Docs.

          • ReportUri — (String)

            A reporting URI, which CloudFront uses as the value of the report directive in the X-XSS-Protection header.

            You cannot specify a ReportUri when ModeBlock is true.

            For more information about using a reporting URL, see X-XSS-Protection in the MDN Web Docs.

        • FrameOptions — (map)

          Determines whether CloudFront includes the X-Frame-Options HTTP response header and the header's value.

          For more information about the X-Frame-Options HTTP response header, see X-Frame-Options in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the X-Frame-Options HTTP response header received from the origin with the one specified in this response headers policy.

          • FrameOptionrequired — (String)

            The value of the X-Frame-Options HTTP response header. Valid values are DENY and SAMEORIGIN.

            For more information about these values, see X-Frame-Options in the MDN Web Docs.

            Possible values include:
            • "DENY"
            • "SAMEORIGIN"
        • ReferrerPolicy — (map)

          Determines whether CloudFront includes the Referrer-Policy HTTP response header and the header's value.

          For more information about the Referrer-Policy HTTP response header, see Referrer-Policy in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the Referrer-Policy HTTP response header received from the origin with the one specified in this response headers policy.

          • ReferrerPolicyrequired — (String)

            The value of the Referrer-Policy HTTP response header. Valid values are:

            • no-referrer

            • no-referrer-when-downgrade

            • origin

            • origin-when-cross-origin

            • same-origin

            • strict-origin

            • strict-origin-when-cross-origin

            • unsafe-url

            For more information about these values, see Referrer-Policy in the MDN Web Docs.

            Possible values include:
            • "no-referrer"
            • "no-referrer-when-downgrade"
            • "origin"
            • "origin-when-cross-origin"
            • "same-origin"
            • "strict-origin"
            • "strict-origin-when-cross-origin"
            • "unsafe-url"
        • ContentSecurityPolicy — (map)

          The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

          For more information about the Content-Security-Policy HTTP response header, see Content-Security-Policy in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the Content-Security-Policy HTTP response header received from the origin with the one specified in this response headers policy.

          • ContentSecurityPolicyrequired — (String)

            The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

        • ContentTypeOptions — (map)

          Determines whether CloudFront includes the X-Content-Type-Options HTTP response header with its value set to nosniff.

          For more information about the X-Content-Type-Options HTTP response header, see X-Content-Type-Options in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the X-Content-Type-Options HTTP response header received from the origin with the one specified in this response headers policy.

        • StrictTransportSecurity — (map)

          Determines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header's value.

          For more information about the Strict-Transport-Security HTTP response header, see Strict-Transport-Security in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the Strict-Transport-Security HTTP response header received from the origin with the one specified in this response headers policy.

          • IncludeSubdomains — (Boolean)

            A Boolean that determines whether CloudFront includes the includeSubDomains directive in the Strict-Transport-Security HTTP response header.

          • Preload — (Boolean)

            A Boolean that determines whether CloudFront includes the preload directive in the Strict-Transport-Security HTTP response header.

          • AccessControlMaxAgeSecrequired — (Integer)

            A number that CloudFront uses as the value for the max-age directive in the Strict-Transport-Security HTTP response header.

      • ServerTimingHeadersConfig — (map)

        A configuration for enabling the Server-Timing header in HTTP responses sent from CloudFront.

        • Enabledrequired — (Boolean)

          A Boolean that determines whether CloudFront adds the Server-Timing header to HTTP responses that it sends in response to requests that match a cache behavior that's associated with this response headers policy.

        • SamplingRate — (Float)

          A number 0–100 (inclusive) that specifies the percentage of responses that you want CloudFront to add the Server-Timing header to. When you set the sampling rate to 100, CloudFront adds the Server-Timing header to the HTTP response for every request that matches the cache behavior that this response headers policy is attached to. When you set it to 50, CloudFront adds the header to 50% of the responses for requests that match the cache behavior. You can set the sampling rate to any number 0–100 with up to four decimal places.

      • CustomHeadersConfig — (map)

        A configuration for a set of custom HTTP response headers.

        • Quantityrequired — (Integer)

          The number of HTTP response headers in the list.

        • Items — (Array<map>)

          The list of HTTP response headers and their values.

          • Headerrequired — (String)

            The HTTP response header name.

          • Valuerequired — (String)

            The value for the HTTP response header.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.

      • RemoveHeadersConfig — (map)

        A configuration for a set of HTTP headers to remove from the HTTP response.

        • Quantityrequired — (Integer)

          The number of HTTP header names in the list.

        • Items — (Array<map>)

          The list of HTTP header names.

          • Headerrequired — (String)

            The HTTP header name.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ResponseHeadersPolicy — (map)

        Contains a response headers policy.

        • Idrequired — (String)

          The identifier for the response headers policy.

        • LastModifiedTimerequired — (Date)

          The date and time when the response headers policy was last modified.

        • ResponseHeadersPolicyConfigrequired — (map)

          A response headers policy configuration.

          • Comment — (String)

            A comment to describe the response headers policy.

            The comment cannot be longer than 128 characters.

          • Namerequired — (String)

            A name to identify the response headers policy.

            The name must be unique for response headers policies in this Amazon Web Services account.

          • CorsConfig — (map)

            A configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).

            • AccessControlAllowOriginsrequired — (map)

              A list of origins (domain names) that CloudFront can use as the value for the Access-Control-Allow-Origin HTTP response header.

              For more information about the Access-Control-Allow-Origin HTTP response header, see Access-Control-Allow-Origin in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of origins in the list.

              • Itemsrequired — (Array<String>)

                The list of origins (domain names). You can specify * to allow all origins.

            • AccessControlAllowHeadersrequired — (map)

              A list of HTTP header names that CloudFront includes as values for the Access-Control-Allow-Headers HTTP response header.

              For more information about the Access-Control-Allow-Headers HTTP response header, see Access-Control-Allow-Headers in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of HTTP header names in the list.

              • Itemsrequired — (Array<String>)

                The list of HTTP header names. You can specify * to allow all headers.

            • AccessControlAllowMethodsrequired — (map)

              A list of HTTP methods that CloudFront includes as values for the Access-Control-Allow-Methods HTTP response header.

              For more information about the Access-Control-Allow-Methods HTTP response header, see Access-Control-Allow-Methods in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of HTTP methods in the list.

              • Itemsrequired — (Array<String>)

                The list of HTTP methods. Valid values are:

                • GET

                • DELETE

                • HEAD

                • OPTIONS

                • PATCH

                • POST

                • PUT

                • ALL

                ALL is a special value that includes all of the listed HTTP methods.

            • AccessControlAllowCredentialsrequired — (Boolean)

              A Boolean that CloudFront uses as the value for the Access-Control-Allow-Credentials HTTP response header.

              For more information about the Access-Control-Allow-Credentials HTTP response header, see Access-Control-Allow-Credentials in the MDN Web Docs.

            • AccessControlExposeHeaders — (map)

              A list of HTTP headers that CloudFront includes as values for the Access-Control-Expose-Headers HTTP response header.

              For more information about the Access-Control-Expose-Headers HTTP response header, see Access-Control-Expose-Headers in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of HTTP headers in the list.

              • Items — (Array<String>)

                The list of HTTP headers. You can specify * to expose all headers.

            • AccessControlMaxAgeSec — (Integer)

              A number that CloudFront uses as the value for the Access-Control-Max-Age HTTP response header.

              For more information about the Access-Control-Max-Age HTTP response header, see Access-Control-Max-Age in the MDN Web Docs.

            • OriginOverriderequired — (Boolean)

              A Boolean that determines whether CloudFront overrides HTTP response headers received from the origin with the ones specified in this response headers policy.

          • SecurityHeadersConfig — (map)

            A configuration for a set of security-related HTTP response headers.

            • XSSProtection — (map)

              Determines whether CloudFront includes the X-XSS-Protection HTTP response header and the header's value.

              For more information about the X-XSS-Protection HTTP response header, see X-XSS-Protection in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header received from the origin with the one specified in this response headers policy.

              • Protectionrequired — (Boolean)

                A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting is true, the value of the X-XSS-Protection header is 1. When this setting is false, the value of the X-XSS-Protection header is 0.

                For more information about these settings, see X-XSS-Protection in the MDN Web Docs.

              • ModeBlock — (Boolean)

                A Boolean that determines whether CloudFront includes the mode=block directive in the X-XSS-Protection header.

                For more information about this directive, see X-XSS-Protection in the MDN Web Docs.

              • ReportUri — (String)

                A reporting URI, which CloudFront uses as the value of the report directive in the X-XSS-Protection header.

                You cannot specify a ReportUri when ModeBlock is true.

                For more information about using a reporting URL, see X-XSS-Protection in the MDN Web Docs.

            • FrameOptions — (map)

              Determines whether CloudFront includes the X-Frame-Options HTTP response header and the header's value.

              For more information about the X-Frame-Options HTTP response header, see X-Frame-Options in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the X-Frame-Options HTTP response header received from the origin with the one specified in this response headers policy.

              • FrameOptionrequired — (String)

                The value of the X-Frame-Options HTTP response header. Valid values are DENY and SAMEORIGIN.

                For more information about these values, see X-Frame-Options in the MDN Web Docs.

                Possible values include:
                • "DENY"
                • "SAMEORIGIN"
            • ReferrerPolicy — (map)

              Determines whether CloudFront includes the Referrer-Policy HTTP response header and the header's value.

              For more information about the Referrer-Policy HTTP response header, see Referrer-Policy in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the Referrer-Policy HTTP response header received from the origin with the one specified in this response headers policy.

              • ReferrerPolicyrequired — (String)

                The value of the Referrer-Policy HTTP response header. Valid values are:

                • no-referrer

                • no-referrer-when-downgrade

                • origin

                • origin-when-cross-origin

                • same-origin

                • strict-origin

                • strict-origin-when-cross-origin

                • unsafe-url

                For more information about these values, see Referrer-Policy in the MDN Web Docs.

                Possible values include:
                • "no-referrer"
                • "no-referrer-when-downgrade"
                • "origin"
                • "origin-when-cross-origin"
                • "same-origin"
                • "strict-origin"
                • "strict-origin-when-cross-origin"
                • "unsafe-url"
            • ContentSecurityPolicy — (map)

              The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

              For more information about the Content-Security-Policy HTTP response header, see Content-Security-Policy in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the Content-Security-Policy HTTP response header received from the origin with the one specified in this response headers policy.

              • ContentSecurityPolicyrequired — (String)

                The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

            • ContentTypeOptions — (map)

              Determines whether CloudFront includes the X-Content-Type-Options HTTP response header with its value set to nosniff.

              For more information about the X-Content-Type-Options HTTP response header, see X-Content-Type-Options in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the X-Content-Type-Options HTTP response header received from the origin with the one specified in this response headers policy.

            • StrictTransportSecurity — (map)

              Determines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header's value.

              For more information about the Strict-Transport-Security HTTP response header, see Strict-Transport-Security in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the Strict-Transport-Security HTTP response header received from the origin with the one specified in this response headers policy.

              • IncludeSubdomains — (Boolean)

                A Boolean that determines whether CloudFront includes the includeSubDomains directive in the Strict-Transport-Security HTTP response header.

              • Preload — (Boolean)

                A Boolean that determines whether CloudFront includes the preload directive in the Strict-Transport-Security HTTP response header.

              • AccessControlMaxAgeSecrequired — (Integer)

                A number that CloudFront uses as the value for the max-age directive in the Strict-Transport-Security HTTP response header.

          • ServerTimingHeadersConfig — (map)

            A configuration for enabling the Server-Timing header in HTTP responses sent from CloudFront.

            • Enabledrequired — (Boolean)

              A Boolean that determines whether CloudFront adds the Server-Timing header to HTTP responses that it sends in response to requests that match a cache behavior that's associated with this response headers policy.

            • SamplingRate — (Float)

              A number 0–100 (inclusive) that specifies the percentage of responses that you want CloudFront to add the Server-Timing header to. When you set the sampling rate to 100, CloudFront adds the Server-Timing header to the HTTP response for every request that matches the cache behavior that this response headers policy is attached to. When you set it to 50, CloudFront adds the header to 50% of the responses for requests that match the cache behavior. You can set the sampling rate to any number 0–100 with up to four decimal places.

          • CustomHeadersConfig — (map)

            A configuration for a set of custom HTTP response headers.

            • Quantityrequired — (Integer)

              The number of HTTP response headers in the list.

            • Items — (Array<map>)

              The list of HTTP response headers and their values.

              • Headerrequired — (String)

                The HTTP response header name.

              • Valuerequired — (String)

                The value for the HTTP response header.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.

          • RemoveHeadersConfig — (map)

            A configuration for a set of HTTP headers to remove from the HTTP response.

            • Quantityrequired — (Integer)

              The number of HTTP header names in the list.

            • Items — (Array<map>)

              The list of HTTP header names.

              • Headerrequired — (String)

                The HTTP header name.

      • Location — (String)

        The URL of the response headers policy.

      • ETag — (String)

        The version identifier for the current version of the response headers policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createStreamingDistribution(params = {}, callback) ⇒ AWS.Request

This API is deprecated. Amazon CloudFront is deprecating real-time messaging protocol (RTMP) distributions on December 31, 2020. For more information, read the announcement on the Amazon CloudFront discussion forum.

Service Reference:

Examples:

Calling the createStreamingDistribution operation

var params = {
  StreamingDistributionConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE', /* required */
    Enabled: true || false, /* required */
    S3Origin: { /* required */
      DomainName: 'STRING_VALUE', /* required */
      OriginAccessIdentity: 'STRING_VALUE' /* required */
    },
    TrustedSigners: { /* required */
      Enabled: true || false, /* required */
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    Aliases: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    Logging: {
      Bucket: 'STRING_VALUE', /* required */
      Enabled: true || false, /* required */
      Prefix: 'STRING_VALUE' /* required */
    },
    PriceClass: PriceClass_100 | PriceClass_200 | PriceClass_All
  }
};
cloudfront.createStreamingDistribution(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • StreamingDistributionConfig — (map)

      The streaming distribution's configuration information.

      • CallerReferencerequired — (String)

        A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

        If the value of CallerReference is new (regardless of the content of the StreamingDistributionConfig object), CloudFront creates a new distribution.

        If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

      • S3Originrequired — (map)

        A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

        • DomainNamerequired — (String)

          The DNS name of the Amazon S3 origin.

        • OriginAccessIdentityrequired — (String)

          The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

          If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

          To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

          To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

          For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.

      • Aliases — (map)

        A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.

        • Quantityrequired — (Integer)

          The number of CNAME aliases, if any, that you want to associate with this distribution.

        • Items — (Array<String>)

          A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

      • Commentrequired — (String)

        Any comments you want to include about the streaming distribution.

      • Logging — (map)

        A complex type that controls whether access logs are written for the streaming distribution.

        • Enabledrequired — (Boolean)

          Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket and Prefix, the values are automatically deleted.

        • Bucketrequired — (String)

          The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

        • Prefixrequired — (String)

          An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

      • TrustedSignersrequired — (map)

        A complex type that specifies any Amazon Web Services accounts that you want to permit to create signed URLs for private content. If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

        • Enabledrequired — (Boolean)

          This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

        • Quantityrequired — (Integer)

          The number of Amazon Web Services accounts in the list.

        • Items — (Array<String>)

          A list of Amazon Web Services account identifiers.

      • PriceClass — (String)

        A complex type that contains information about price class for this streaming distribution.

        Possible values include:
        • "PriceClass_100"
        • "PriceClass_200"
        • "PriceClass_All"
      • Enabledrequired — (Boolean)

        Whether the streaming distribution is enabled to accept user requests for content.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • StreamingDistribution — (map)

        The streaming distribution's information.

        • Idrequired — (String)

          The identifier for the RTMP distribution. For example: EGTXBD79EXAMPLE.

        • ARNrequired — (String)

          The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your Amazon Web Services account ID.

        • Statusrequired — (String)

          The current status of the RTMP distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations.

        • LastModifiedTime — (Date)

          The date and time that the distribution was last modified.

        • DomainNamerequired — (String)

          The domain name that corresponds to the streaming distribution, for example, s5c39gqb8ow64r.cloudfront.net.

        • ActiveTrustedSignersrequired — (map)

          A complex type that lists the Amazon Web Services accounts, if any, that you included in the TrustedSigners complex type for this distribution. These are the accounts that you want to allow to create signed URLs for private content.

          The Signer complex type lists the Amazon Web Services account number of the trusted signer or self if the signer is the Amazon Web Services account that created the distribution. The Signer element also includes the IDs of any active CloudFront key pairs that are associated with the trusted signer's Amazon Web Services account. If no KeyPairId element appears for a Signer, that signer can't create signed URLs.

          For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • StreamingDistributionConfigrequired — (map)

          The current configuration information for the RTMP distribution.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the StreamingDistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • S3Originrequired — (map)

            A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

            • DomainNamerequired — (String)

              The DNS name of the Amazon S3 origin.

            • OriginAccessIdentityrequired — (String)

              The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

              If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

              To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

              To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

              For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • Commentrequired — (String)

            Any comments you want to include about the streaming distribution.

          • Logging — (map)

            A complex type that controls whether access logs are written for the streaming distribution.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket and Prefix, the values are automatically deleted.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • TrustedSignersrequired — (map)

            A complex type that specifies any Amazon Web Services accounts that you want to permit to create signed URLs for private content. If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of Amazon Web Services accounts in the list.

            • Items — (Array<String>)

              A list of Amazon Web Services account identifiers.

          • PriceClass — (String)

            A complex type that contains information about price class for this streaming distribution.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            Whether the streaming distribution is enabled to accept user requests for content.

      • Location — (String)

        The fully qualified URI of the new streaming distribution resource just created.

      • ETag — (String)

        The current version of the streaming distribution created.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createStreamingDistributionWithTags(params = {}, callback) ⇒ AWS.Request

This API is deprecated. Amazon CloudFront is deprecating real-time messaging protocol (RTMP) distributions on December 31, 2020. For more information, read the announcement on the Amazon CloudFront discussion forum.

Examples:

Calling the createStreamingDistributionWithTags operation

var params = {
  StreamingDistributionConfigWithTags: { /* required */
    StreamingDistributionConfig: { /* required */
      CallerReference: 'STRING_VALUE', /* required */
      Comment: 'STRING_VALUE', /* required */
      Enabled: true || false, /* required */
      S3Origin: { /* required */
        DomainName: 'STRING_VALUE', /* required */
        OriginAccessIdentity: 'STRING_VALUE' /* required */
      },
      TrustedSigners: { /* required */
        Enabled: true || false, /* required */
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      Aliases: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      Logging: {
        Bucket: 'STRING_VALUE', /* required */
        Enabled: true || false, /* required */
        Prefix: 'STRING_VALUE' /* required */
      },
      PriceClass: PriceClass_100 | PriceClass_200 | PriceClass_All
    },
    Tags: { /* required */
      Items: [
        {
          Key: 'STRING_VALUE', /* required */
          Value: 'STRING_VALUE'
        },
        /* more items */
      ]
    }
  }
};
cloudfront.createStreamingDistributionWithTags(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • StreamingDistributionConfigWithTags — (map)

      The streaming distribution's configuration information.

      • StreamingDistributionConfigrequired — (map)

        A streaming distribution Configuration.

        • CallerReferencerequired — (String)

          A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

          If the value of CallerReference is new (regardless of the content of the StreamingDistributionConfig object), CloudFront creates a new distribution.

          If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

        • S3Originrequired — (map)

          A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

          • DomainNamerequired — (String)

            The DNS name of the Amazon S3 origin.

          • OriginAccessIdentityrequired — (String)

            The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

            If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

            To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

            To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

            For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.

        • Aliases — (map)

          A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.

          • Quantityrequired — (Integer)

            The number of CNAME aliases, if any, that you want to associate with this distribution.

          • Items — (Array<String>)

            A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

        • Commentrequired — (String)

          Any comments you want to include about the streaming distribution.

        • Logging — (map)

          A complex type that controls whether access logs are written for the streaming distribution.

          • Enabledrequired — (Boolean)

            Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket and Prefix, the values are automatically deleted.

          • Bucketrequired — (String)

            The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

          • Prefixrequired — (String)

            An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

        • TrustedSignersrequired — (map)

          A complex type that specifies any Amazon Web Services accounts that you want to permit to create signed URLs for private content. If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<String>)

            A list of Amazon Web Services account identifiers.

        • PriceClass — (String)

          A complex type that contains information about price class for this streaming distribution.

          Possible values include:
          • "PriceClass_100"
          • "PriceClass_200"
          • "PriceClass_All"
        • Enabledrequired — (Boolean)

          Whether the streaming distribution is enabled to accept user requests for content.

      • Tagsrequired — (map)

        A complex type that contains zero or more Tag elements.

        • Items — (Array<map>)

          A complex type that contains Tag elements.

          • Keyrequired — (String)

            A string that contains Tag key.

            The string length should be between 1 and 128 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.

          • Value — (String)

            A string that contains an optional Tag value.

            The string length should be between 0 and 256 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • StreamingDistribution — (map)

        The streaming distribution's information.

        • Idrequired — (String)

          The identifier for the RTMP distribution. For example: EGTXBD79EXAMPLE.

        • ARNrequired — (String)

          The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your Amazon Web Services account ID.

        • Statusrequired — (String)

          The current status of the RTMP distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations.

        • LastModifiedTime — (Date)

          The date and time that the distribution was last modified.

        • DomainNamerequired — (String)

          The domain name that corresponds to the streaming distribution, for example, s5c39gqb8ow64r.cloudfront.net.

        • ActiveTrustedSignersrequired — (map)

          A complex type that lists the Amazon Web Services accounts, if any, that you included in the TrustedSigners complex type for this distribution. These are the accounts that you want to allow to create signed URLs for private content.

          The Signer complex type lists the Amazon Web Services account number of the trusted signer or self if the signer is the Amazon Web Services account that created the distribution. The Signer element also includes the IDs of any active CloudFront key pairs that are associated with the trusted signer's Amazon Web Services account. If no KeyPairId element appears for a Signer, that signer can't create signed URLs.

          For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • StreamingDistributionConfigrequired — (map)

          The current configuration information for the RTMP distribution.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the StreamingDistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • S3Originrequired — (map)

            A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

            • DomainNamerequired — (String)

              The DNS name of the Amazon S3 origin.

            • OriginAccessIdentityrequired — (String)

              The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

              If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

              To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

              To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

              For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • Commentrequired — (String)

            Any comments you want to include about the streaming distribution.

          • Logging — (map)

            A complex type that controls whether access logs are written for the streaming distribution.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket and Prefix, the values are automatically deleted.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • TrustedSignersrequired — (map)

            A complex type that specifies any Amazon Web Services accounts that you want to permit to create signed URLs for private content. If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of Amazon Web Services accounts in the list.

            • Items — (Array<String>)

              A list of Amazon Web Services account identifiers.

          • PriceClass — (String)

            A complex type that contains information about price class for this streaming distribution.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            Whether the streaming distribution is enabled to accept user requests for content.

      • Location — (String)

        The fully qualified URI of the new streaming distribution resource just created.

      • ETag — (String)

        The current version of the distribution created.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteCachePolicy(params = {}, callback) ⇒ AWS.Request

Deletes a cache policy.

You cannot delete a cache policy if it's attached to a cache behavior. First update your distributions to remove the cache policy from all cache behaviors, then delete the cache policy.

To delete a cache policy, you must provide the policy's identifier and version. To get these values, you can use ListCachePolicies or GetCachePolicy.

Service Reference:

Examples:

Calling the deleteCachePolicy operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteCachePolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The unique identifier for the cache policy that you are deleting. To get the identifier, you can use ListCachePolicies.

    • IfMatch — (String)

      The version of the cache policy that you are deleting. The version is the cache policy's ETag value, which you can get using ListCachePolicies, GetCachePolicy, or GetCachePolicyConfig.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteCloudFrontOriginAccessIdentity(params = {}, callback) ⇒ AWS.Request

Delete an origin access identity.

Examples:

Calling the deleteCloudFrontOriginAccessIdentity operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteCloudFrontOriginAccessIdentity(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The origin access identity's ID.

    • IfMatch — (String)

      The value of the ETag header you received from a previous GET or PUT request. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteContinuousDeploymentPolicy(params = {}, callback) ⇒ AWS.Request

Deletes a continuous deployment policy.

You cannot delete a continuous deployment policy that's attached to a primary distribution. First update your distribution to remove the continuous deployment policy, then you can delete the policy.

Examples:

Calling the deleteContinuousDeploymentPolicy operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteContinuousDeploymentPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier of the continuous deployment policy that you are deleting.

    • IfMatch — (String)

      The current version (ETag value) of the continuous deployment policy that you are deleting.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteDistribution(params = {}, callback) ⇒ AWS.Request

Delete a distribution.

Service Reference:

Examples:

Calling the deleteDistribution operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteDistribution(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The distribution ID.

    • IfMatch — (String)

      The value of the ETag header that you received when you disabled the distribution. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteFieldLevelEncryptionConfig(params = {}, callback) ⇒ AWS.Request

Remove a field-level encryption configuration.

Examples:

Calling the deleteFieldLevelEncryptionConfig operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteFieldLevelEncryptionConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The ID of the configuration you want to delete from CloudFront.

    • IfMatch — (String)

      The value of the ETag header that you received when retrieving the configuration identity to delete. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteFieldLevelEncryptionProfile(params = {}, callback) ⇒ AWS.Request

Remove a field-level encryption profile.

Examples:

Calling the deleteFieldLevelEncryptionProfile operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteFieldLevelEncryptionProfile(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      Request the ID of the profile you want to delete from CloudFront.

    • IfMatch — (String)

      The value of the ETag header that you received when retrieving the profile to delete. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteFunction(params = {}, callback) ⇒ AWS.Request

Deletes a CloudFront function.

You cannot delete a function if it's associated with a cache behavior. First, update your distributions to remove the function association from all cache behaviors, then delete the function.

To delete a function, you must provide the function's name and version (ETag value). To get these values, you can use ListFunctions and DescribeFunction.

Service Reference:

Examples:

Calling the deleteFunction operation

var params = {
  IfMatch: 'STRING_VALUE', /* required */
  Name: 'STRING_VALUE' /* required */
};
cloudfront.deleteFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the function that you are deleting.

    • IfMatch — (String)

      The current version (ETag value) of the function that you are deleting, which you can get using DescribeFunction.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteKeyGroup(params = {}, callback) ⇒ AWS.Request

Deletes a key group.

You cannot delete a key group that is referenced in a cache behavior. First update your distributions to remove the key group from all cache behaviors, then delete the key group.

To delete a key group, you must provide the key group's identifier and version. To get these values, use ListKeyGroups followed by GetKeyGroup or GetKeyGroupConfig.

Service Reference:

Examples:

Calling the deleteKeyGroup operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteKeyGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier of the key group that you are deleting. To get the identifier, use ListKeyGroups.

    • IfMatch — (String)

      The version of the key group that you are deleting. The version is the key group's ETag value. To get the ETag, use GetKeyGroup or GetKeyGroupConfig.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteKeyValueStore(params = {}, callback) ⇒ AWS.Request

Specifies the Key Value Store to delete.

Service Reference:

Examples:

To delete a KeyValueStore


/* Use the following command to delete a KeyValueStore. */

 var params = {
  IfMatch: "ETVPDKIKX0DER", 
  Name: "my-keyvaluestore-name"
 };
 cloudfront.deleteKeyValueStore(params, function(err, data) {
   if (err) console.log(err, err.stack); // an error occurred
   else     console.log(data);           // successful response
 });

Calling the deleteKeyValueStore operation

var params = {
  IfMatch: 'STRING_VALUE', /* required */
  Name: 'STRING_VALUE' /* required */
};
cloudfront.deleteKeyValueStore(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the Key Value Store.

    • IfMatch — (String)

      The Key Value Store to delete, if a match occurs.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteMonitoringSubscription(params = {}, callback) ⇒ AWS.Request

Disables additional CloudWatch metrics for the specified CloudFront distribution.

Service Reference:

Examples:

Calling the deleteMonitoringSubscription operation

var params = {
  DistributionId: 'STRING_VALUE' /* required */
};
cloudfront.deleteMonitoringSubscription(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DistributionId — (String)

      The ID of the distribution that you are disabling metrics for.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteOriginAccessControl(params = {}, callback) ⇒ AWS.Request

Deletes a CloudFront origin access control.

You cannot delete an origin access control if it's in use. First, update all distributions to remove the origin access control from all origins, then delete the origin access control.

Service Reference:

Examples:

Calling the deleteOriginAccessControl operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteOriginAccessControl(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The unique identifier of the origin access control that you are deleting.

    • IfMatch — (String)

      The current version (ETag value) of the origin access control that you are deleting.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteOriginRequestPolicy(params = {}, callback) ⇒ AWS.Request

Deletes an origin request policy.

You cannot delete an origin request policy if it's attached to any cache behaviors. First update your distributions to remove the origin request policy from all cache behaviors, then delete the origin request policy.

To delete an origin request policy, you must provide the policy's identifier and version. To get the identifier, you can use ListOriginRequestPolicies or GetOriginRequestPolicy.

Service Reference:

Examples:

Calling the deleteOriginRequestPolicy operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteOriginRequestPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The unique identifier for the origin request policy that you are deleting. To get the identifier, you can use ListOriginRequestPolicies.

    • IfMatch — (String)

      The version of the origin request policy that you are deleting. The version is the origin request policy's ETag value, which you can get using ListOriginRequestPolicies, GetOriginRequestPolicy, or GetOriginRequestPolicyConfig.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deletePublicKey(params = {}, callback) ⇒ AWS.Request

Remove a public key you previously added to CloudFront.

Service Reference:

Examples:

Calling the deletePublicKey operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deletePublicKey(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The ID of the public key you want to remove from CloudFront.

    • IfMatch — (String)

      The value of the ETag header that you received when retrieving the public key identity to delete. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteRealtimeLogConfig(params = {}, callback) ⇒ AWS.Request

Deletes a real-time log configuration.

You cannot delete a real-time log configuration if it's attached to a cache behavior. First update your distributions to remove the real-time log configuration from all cache behaviors, then delete the real-time log configuration.

To delete a real-time log configuration, you can provide the configuration's name or its Amazon Resource Name (ARN). You must provide at least one. If you provide both, CloudFront uses the name to identify the real-time log configuration to delete.

Service Reference:

Examples:

Calling the deleteRealtimeLogConfig operation

var params = {
  ARN: 'STRING_VALUE',
  Name: 'STRING_VALUE'
};
cloudfront.deleteRealtimeLogConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the real-time log configuration to delete.

    • ARN — (String)

      The Amazon Resource Name (ARN) of the real-time log configuration to delete.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteResponseHeadersPolicy(params = {}, callback) ⇒ AWS.Request

Deletes a response headers policy.

You cannot delete a response headers policy if it's attached to a cache behavior. First update your distributions to remove the response headers policy from all cache behaviors, then delete the response headers policy.

To delete a response headers policy, you must provide the policy's identifier and version. To get these values, you can use ListResponseHeadersPolicies or GetResponseHeadersPolicy.

Service Reference:

Examples:

Calling the deleteResponseHeadersPolicy operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteResponseHeadersPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier for the response headers policy that you are deleting.

      To get the identifier, you can use ListResponseHeadersPolicies.

    • IfMatch — (String)

      The version of the response headers policy that you are deleting.

      The version is the response headers policy's ETag value, which you can get using ListResponseHeadersPolicies, GetResponseHeadersPolicy, or GetResponseHeadersPolicyConfig.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteStreamingDistribution(params = {}, callback) ⇒ AWS.Request

Delete a streaming distribution. To delete an RTMP distribution using the CloudFront API, perform the following steps.

To delete an RTMP distribution using the CloudFront API:

  1. Disable the RTMP distribution.

  2. Submit a GET Streaming Distribution Config request to get the current configuration and the Etag header for the distribution.

  3. Update the XML document that was returned in the response to your GET Streaming Distribution Config request to change the value of Enabled to false.

  4. Submit a PUT Streaming Distribution Config request to update the configuration for your distribution. In the request body, include the XML document that you updated in Step 3. Then set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GET Streaming Distribution Config request in Step 2.

  5. Review the response to the PUT Streaming Distribution Config request to confirm that the distribution was successfully disabled.

  6. Submit a GET Streaming Distribution Config request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed.

  7. Submit a DELETE Streaming Distribution request. Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GET Streaming Distribution Config request in Step 2.

  8. Review the response to your DELETE Streaming Distribution request to confirm that the distribution was successfully deleted.

For information about deleting a distribution using the CloudFront console, see Deleting a Distribution in the Amazon CloudFront Developer Guide.

Service Reference:

Examples:

Calling the deleteStreamingDistribution operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.deleteStreamingDistribution(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The distribution ID.

    • IfMatch — (String)

      The value of the ETag header that you received when you disabled the streaming distribution. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeFunction(params = {}, callback) ⇒ AWS.Request

Gets configuration information and metadata about a CloudFront function, but not the function's code. To get a function's code, use GetFunction.

To get configuration information and metadata about a function, you must provide the function's name and stage. To get these values, you can use ListFunctions.

Service Reference:

Examples:

Calling the describeFunction operation

var params = {
  Name: 'STRING_VALUE', /* required */
  Stage: DEVELOPMENT | LIVE
};
cloudfront.describeFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the function that you are getting information about.

    • Stage — (String)

      The function's stage, either DEVELOPMENT or LIVE.

      Possible values include:
      • "DEVELOPMENT"
      • "LIVE"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FunctionSummary — (map)

        Contains configuration information and metadata about a CloudFront function.

        • Namerequired — (String)

          The name of the CloudFront function.

        • Status — (String)

          The status of the CloudFront function.

        • FunctionConfigrequired — (map)

          Contains configuration information about a CloudFront function.

          • Commentrequired — (String)

            A comment to describe the function.

          • Runtimerequired — (String)

            The function's runtime environment version.

            Possible values include:
            • "cloudfront-js-1.0"
            • "cloudfront-js-2.0"
          • KeyValueStoreAssociations — (map)

            The configuration for the Key Value Store associations.

            • Quantityrequired — (Integer)

              The quantity of Key Value Store associations.

            • Items — (Array<map>)

              The items of the Key Value Store association.

              • KeyValueStoreARNrequired — (String)

                The Amazon Resource Name (ARN) of the Key Value Store association.

        • FunctionMetadatarequired — (map)

          Contains metadata about a CloudFront function.

          • FunctionARNrequired — (String)

            The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function.

          • Stage — (String)

            The stage that the function is in, either DEVELOPMENT or LIVE.

            When a function is in the DEVELOPMENT stage, you can test the function with TestFunction, and update it with UpdateFunction.

            When a function is in the LIVE stage, you can attach the function to a distribution's cache behavior, using the function's ARN.

            Possible values include:
            • "DEVELOPMENT"
            • "LIVE"
          • CreatedTime — (Date)

            The date and time when the function was created.

          • LastModifiedTimerequired — (Date)

            The date and time when the function was most recently updated.

      • ETag — (String)

        The version identifier for the current version of the CloudFront function.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeKeyValueStore(params = {}, callback) ⇒ AWS.Request

Specifies the Key Value Store and its configuration.

Service Reference:

Examples:

To describe a KeyValueStore


/* Use the following command to describe a KeyValueStore. */

 var params = {
  Name: "my-keyvaluestore-name"
 };
 cloudfront.describeKeyValueStore(params, function(err, data) {
   if (err) console.log(err, err.stack); // an error occurred
   else     console.log(data);           // successful response
   /*
   data = {
    ETag: "ETVPDKIKX0DER", 
    KeyValueStore: {
     ARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", 
     Comment: "my-key-valuestore-comment", 
     Id: "54947df8-0e9e-4471-a2f9-9af509fb5889", 
     LastModifiedTime: <Date Representation>, 
     Name: "my-keyvaluestore-name", 
     Status: "READY"
    }
   }
   */
 });

Calling the describeKeyValueStore operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
cloudfront.describeKeyValueStore(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the Key Value Store.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • KeyValueStore — (map)

        The resulting Key Value Store.

        • Namerequired — (String)

          The name of the Key Value Store.

        • Idrequired — (String)

          The unique Id for the Key Value Store.

        • Commentrequired — (String)

          A comment for the Key Value Store.

        • ARNrequired — (String)

          The Amazon Resource Name (ARN) of the Key Value Store.

        • Status — (String)

          The status of the Key Value Store.

        • LastModifiedTimerequired — (Date)

          The last-modified time of the Key Value Store.

      • ETag — (String)

        The ETag of the resulting Key Value Store.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getCachePolicy(params = {}, callback) ⇒ AWS.Request

Gets a cache policy, including the following metadata:

  • The policy's identifier.

  • The date and time when the policy was last modified.

To get a cache policy, you must provide the policy's identifier. If the cache policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the cache policy is not attached to a cache behavior, you can get the identifier using ListCachePolicies.

Service Reference:

Examples:

Calling the getCachePolicy operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getCachePolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The unique identifier for the cache policy. If the cache policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the cache policy is not attached to a cache behavior, you can get the identifier using ListCachePolicies.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CachePolicy — (map)

        The cache policy.

        • Idrequired — (String)

          The unique identifier for the cache policy.

        • LastModifiedTimerequired — (Date)

          The date and time when the cache policy was last modified.

        • CachePolicyConfigrequired — (map)

          The cache policy configuration.

          • Comment — (String)

            A comment to describe the cache policy. The comment cannot be longer than 128 characters.

          • Namerequired — (String)

            A unique name to identify the cache policy.

          • DefaultTTL — (Integer)

            The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object's time to live (TTL) only when the origin does not send Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            The default value for this field is 86400 seconds (one day). If the value of MinTTL is more than 86400 seconds, then the default value for this field is the same as the value of MinTTL.

          • MaxTTL — (Integer)

            The maximum amount of time, in seconds, that objects stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value only when the origin sends Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            The default value for this field is 31536000 seconds (one year). If the value of MinTTL or DefaultTTL is more than 31536000 seconds, then the default value for this field is the same as the value of DefaultTTL.

          • MinTTLrequired — (Integer)

            The minimum amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • ParametersInCacheKeyAndForwardedToOrigin — (map)

            The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are also included in requests that CloudFront sends to the origin.

            • EnableAcceptEncodingGziprequired — (Boolean)

              A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

              This field is related to the EnableAcceptEncodingBrotli field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

              • Normalizes the value of the viewer's Accept-Encoding header

              • Includes the normalized header in the cache key

              • Includes the normalized header in the request to the origin, if a request is necessary

              For more information, see Compression support in the Amazon CloudFront Developer Guide.

              If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

              If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

            • EnableAcceptEncodingBrotli — (Boolean)

              A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

              This field is related to the EnableAcceptEncodingGzip field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

              • Normalizes the value of the viewer's Accept-Encoding header

              • Includes the normalized header in the cache key

              • Includes the normalized header in the request to the origin, if a request is necessary

              For more information, see Compression support in the Amazon CloudFront Developer Guide.

              If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

              If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

            • HeadersConfigrequired — (map)

              An 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.

              • HeaderBehaviorrequired — (String)

                Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                • none – No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in an OriginRequestPolicy are included in origin requests.

                • whitelist – Only the HTTP headers that are listed in the Headers type are included in the cache key and in requests that CloudFront sends to the origin.

                Possible values include:
                • "none"
                • "whitelist"
              • Headers — (map)

                Contains a list of HTTP header names.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

            • CookiesConfigrequired — (map)

              An 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.

              • CookieBehaviorrequired — (String)

                Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                • none – No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in an OriginRequestPolicy are included in origin requests.

                • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in the cache key and in requests that CloudFront sends to the origin.

                • allExcept – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except for those that are listed in the CookieNames type, which are not included.

                • all – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

                Possible values include:
                • "none"
                • "whitelist"
                • "allExcept"
                • "all"
              • Cookies — (map)

                Contains a list of cookie names.

                • Quantityrequired — (Integer)

                  The number of cookie names in the Items list.

                • Items — (Array<String>)

                  A list of cookie names.

            • QueryStringsConfigrequired — (map)

              An 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.

              • QueryStringBehaviorrequired — (String)

                Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                • none – No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in an OriginRequestPolicy are included in origin requests.

                • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in the cache key and in requests that CloudFront sends to the origin.

                • allExcept – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except those that are listed in the QueryStringNames type, which are not included.

                • all – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

                Possible values include:
                • "none"
                • "whitelist"
                • "allExcept"
                • "all"
              • QueryStrings — (map)

                Contains the specific query strings in viewer requests that either are or are not included in the cache key and in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the CachePolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

                • Quantityrequired — (Integer)

                  The number of query string names in the Items list.

                • Items — (Array<String>)

                  A list of query string names.

      • ETag — (String)

        The current version of the cache policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getCachePolicyConfig(params = {}, callback) ⇒ AWS.Request

Gets a cache policy configuration.

To get a cache policy configuration, you must provide the policy's identifier. If the cache policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the cache policy is not attached to a cache behavior, you can get the identifier using ListCachePolicies.

Service Reference:

Examples:

Calling the getCachePolicyConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getCachePolicyConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The unique identifier for the cache policy. If the cache policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the cache policy is not attached to a cache behavior, you can get the identifier using ListCachePolicies.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CachePolicyConfig — (map)

        The cache policy configuration.

        • Comment — (String)

          A comment to describe the cache policy. The comment cannot be longer than 128 characters.

        • Namerequired — (String)

          A unique name to identify the cache policy.

        • DefaultTTL — (Integer)

          The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object's time to live (TTL) only when the origin does not send Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          The default value for this field is 86400 seconds (one day). If the value of MinTTL is more than 86400 seconds, then the default value for this field is the same as the value of MinTTL.

        • MaxTTL — (Integer)

          The maximum amount of time, in seconds, that objects stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value only when the origin sends Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          The default value for this field is 31536000 seconds (one year). If the value of MinTTL or DefaultTTL is more than 31536000 seconds, then the default value for this field is the same as the value of DefaultTTL.

        • MinTTLrequired — (Integer)

          The minimum amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        • ParametersInCacheKeyAndForwardedToOrigin — (map)

          The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are also included in requests that CloudFront sends to the origin.

          • EnableAcceptEncodingGziprequired — (Boolean)

            A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

            This field is related to the EnableAcceptEncodingBrotli field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

            • Normalizes the value of the viewer's Accept-Encoding header

            • Includes the normalized header in the cache key

            • Includes the normalized header in the request to the origin, if a request is necessary

            For more information, see Compression support in the Amazon CloudFront Developer Guide.

            If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

            If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

          • EnableAcceptEncodingBrotli — (Boolean)

            A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

            This field is related to the EnableAcceptEncodingGzip field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

            • Normalizes the value of the viewer's Accept-Encoding header

            • Includes the normalized header in the cache key

            • Includes the normalized header in the request to the origin, if a request is necessary

            For more information, see Compression support in the Amazon CloudFront Developer Guide.

            If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

            If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

          • HeadersConfigrequired — (map)

            An 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.

            • HeaderBehaviorrequired — (String)

              Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

              • none – No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in an OriginRequestPolicy are included in origin requests.

              • whitelist – Only the HTTP headers that are listed in the Headers type are included in the cache key and in requests that CloudFront sends to the origin.

              Possible values include:
              • "none"
              • "whitelist"
            • Headers — (map)

              Contains a list of HTTP header names.

              • Quantityrequired — (Integer)

                The number of header names in the Items list.

              • Items — (Array<String>)

                A list of HTTP header names.

          • CookiesConfigrequired — (map)

            An 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.

            • CookieBehaviorrequired — (String)

              Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

              • none – No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in an OriginRequestPolicy are included in origin requests.

              • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in the cache key and in requests that CloudFront sends to the origin.

              • allExcept – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except for those that are listed in the CookieNames type, which are not included.

              • all – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

              Possible values include:
              • "none"
              • "whitelist"
              • "allExcept"
              • "all"
            • Cookies — (map)

              Contains a list of cookie names.

              • Quantityrequired — (Integer)

                The number of cookie names in the Items list.

              • Items — (Array<String>)

                A list of cookie names.

          • QueryStringsConfigrequired — (map)

            An 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.

            • QueryStringBehaviorrequired — (String)

              Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

              • none – No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in an OriginRequestPolicy are included in origin requests.

              • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in the cache key and in requests that CloudFront sends to the origin.

              • allExcept – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except those that are listed in the QueryStringNames type, which are not included.

              • all – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

              Possible values include:
              • "none"
              • "whitelist"
              • "allExcept"
              • "all"
            • QueryStrings — (map)

              Contains the specific query strings in viewer requests that either are or are not included in the cache key and in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the CachePolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

              • Quantityrequired — (Integer)

                The number of query string names in the Items list.

              • Items — (Array<String>)

                A list of query string names.

      • ETag — (String)

        The current version of the cache policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getCloudFrontOriginAccessIdentity(params = {}, callback) ⇒ AWS.Request

Get the information about an origin access identity.

Examples:

Calling the getCloudFrontOriginAccessIdentity operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getCloudFrontOriginAccessIdentity(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identity's ID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CloudFrontOriginAccessIdentity — (map)

        The origin access identity's information.

        • Idrequired — (String)

          The ID for the origin access identity, for example, E74FTE3AJFJ256A.

        • S3CanonicalUserIdrequired — (String)

          The Amazon S3 canonical user ID for the origin access identity, used when giving the origin access identity read permission to an object in Amazon S3.

        • CloudFrontOriginAccessIdentityConfig — (map)

          The current configuration information for the identity.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the CloudFrontOriginAccessIdentityConfig object), a new origin access identity is created.

            If the CallerReference is a value already sent in a previous identity request, and the content of the CloudFrontOriginAccessIdentityConfig is identical to the original request (ignoring white space), the response includes the same information returned to the original request.

            If the CallerReference is a value you already sent in a previous request to create an identity, but the content of the CloudFrontOriginAccessIdentityConfig is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists error.

          • Commentrequired — (String)

            A comment to describe the origin access identity. The comment cannot be longer than 128 characters.

      • ETag — (String)

        The current version of the origin access identity's information. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getCloudFrontOriginAccessIdentityConfig(params = {}, callback) ⇒ AWS.Request

Get the configuration information about an origin access identity.

Examples:

Calling the getCloudFrontOriginAccessIdentityConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getCloudFrontOriginAccessIdentityConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identity's ID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CloudFrontOriginAccessIdentityConfig — (map)

        The origin access identity's configuration information.

        • CallerReferencerequired — (String)

          A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

          If the value of CallerReference is new (regardless of the content of the CloudFrontOriginAccessIdentityConfig object), a new origin access identity is created.

          If the CallerReference is a value already sent in a previous identity request, and the content of the CloudFrontOriginAccessIdentityConfig is identical to the original request (ignoring white space), the response includes the same information returned to the original request.

          If the CallerReference is a value you already sent in a previous request to create an identity, but the content of the CloudFrontOriginAccessIdentityConfig is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists error.

        • Commentrequired — (String)

          A comment to describe the origin access identity. The comment cannot be longer than 128 characters.

      • ETag — (String)

        The current version of the configuration. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getContinuousDeploymentPolicy(params = {}, callback) ⇒ AWS.Request

Gets a continuous deployment policy, including metadata (the policy's identifier and the date and time when the policy was last modified).

Service Reference:

Examples:

Calling the getContinuousDeploymentPolicy operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getContinuousDeploymentPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier of the continuous deployment policy that you are getting.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ContinuousDeploymentPolicy — (map)

        A continuous deployment policy.

        • Idrequired — (String)

          The identifier of the continuous deployment policy.

        • LastModifiedTimerequired — (Date)

          The date and time the continuous deployment policy was last modified.

        • ContinuousDeploymentPolicyConfigrequired — (map)

          Contains the configuration for a continuous deployment policy.

          • StagingDistributionDnsNamesrequired — (map)

            The CloudFront domain name of the staging distribution. For example: d111111abcdef8.cloudfront.net.

            • Quantityrequired — (Integer)

              The number of CloudFront domain names in your staging distribution.

            • Items — (Array<String>)

              The CloudFront domain name of the staging distribution.

          • Enabledrequired — (Boolean)

            A Boolean that indicates whether this continuous deployment policy is enabled (in effect). When this value is true, this policy is enabled and in effect. When this value is false, this policy is not enabled and has no effect.

          • TrafficConfig — (map)

            Contains the parameters for routing production traffic from your primary to staging distributions.

            • SingleWeightConfig — (map)

              Contains the percentage of traffic to send to the staging distribution.

              • Weightrequired — (Float)

                The percentage of traffic to send to a staging distribution, expressed as a decimal number between 0 and .15.

              • SessionStickinessConfig — (map)

                Session stickiness provides the ability to define multiple requests from a single viewer as a single session. This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.

                • IdleTTLrequired — (Integer)

                  The amount of time after which you want sessions to cease if no requests are received. Allowed values are 300–3600 seconds (5–60 minutes).

                  The value must be less than or equal to MaximumTTL.

                • MaximumTTLrequired — (Integer)

                  The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes).

                  The value must be less than or equal to IdleTTL.

            • SingleHeaderConfig — (map)

              Determines which HTTP requests are sent to the staging distribution.

              • Headerrequired — (String)

                The request header name that you want CloudFront to send to your staging distribution. The header must contain the prefix aws-cf-cd-.

              • Valuerequired — (String)

                The request header value.

            • Typerequired — (String)

              The type of traffic configuration.

              Possible values include:
              • "SingleWeight"
              • "SingleHeader"
      • ETag — (String)

        The version identifier for the current version of the continuous deployment policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getContinuousDeploymentPolicyConfig(params = {}, callback) ⇒ AWS.Request

Gets configuration information about a continuous deployment policy.

Examples:

Calling the getContinuousDeploymentPolicyConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getContinuousDeploymentPolicyConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier of the continuous deployment policy whose configuration you are getting.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ContinuousDeploymentPolicyConfig — (map)

        Contains the configuration for a continuous deployment policy.

        • StagingDistributionDnsNamesrequired — (map)

          The CloudFront domain name of the staging distribution. For example: d111111abcdef8.cloudfront.net.

          • Quantityrequired — (Integer)

            The number of CloudFront domain names in your staging distribution.

          • Items — (Array<String>)

            The CloudFront domain name of the staging distribution.

        • Enabledrequired — (Boolean)

          A Boolean that indicates whether this continuous deployment policy is enabled (in effect). When this value is true, this policy is enabled and in effect. When this value is false, this policy is not enabled and has no effect.

        • TrafficConfig — (map)

          Contains the parameters for routing production traffic from your primary to staging distributions.

          • SingleWeightConfig — (map)

            Contains the percentage of traffic to send to the staging distribution.

            • Weightrequired — (Float)

              The percentage of traffic to send to a staging distribution, expressed as a decimal number between 0 and .15.

            • SessionStickinessConfig — (map)

              Session stickiness provides the ability to define multiple requests from a single viewer as a single session. This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.

              • IdleTTLrequired — (Integer)

                The amount of time after which you want sessions to cease if no requests are received. Allowed values are 300–3600 seconds (5–60 minutes).

                The value must be less than or equal to MaximumTTL.

              • MaximumTTLrequired — (Integer)

                The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes).

                The value must be less than or equal to IdleTTL.

          • SingleHeaderConfig — (map)

            Determines which HTTP requests are sent to the staging distribution.

            • Headerrequired — (String)

              The request header name that you want CloudFront to send to your staging distribution. The header must contain the prefix aws-cf-cd-.

            • Valuerequired — (String)

              The request header value.

          • Typerequired — (String)

            The type of traffic configuration.

            Possible values include:
            • "SingleWeight"
            • "SingleHeader"
      • ETag — (String)

        The version identifier for the current version of the continuous deployment policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getDistribution(params = {}, callback) ⇒ AWS.Request

Get the information about a distribution.

Service Reference:

Examples:

Calling the getDistribution operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getDistribution(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The distribution's ID. If the ID is empty, an empty distribution configuration is returned.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Distribution — (map)

        The distribution's information.

        • Idrequired — (String)

          The distribution's identifier. For example: E1U5RQF7T870K0.

        • ARNrequired — (String)

          The distribution's Amazon Resource Name (ARN).

        • Statusrequired — (String)

          The distribution's status. When the status is Deployed, the distribution's information is fully propagated to all CloudFront edge locations.

        • LastModifiedTimerequired — (Date)

          The date and time when the distribution was last modified.

        • InProgressInvalidationBatchesrequired — (Integer)

          The number of invalidation batches currently in progress.

        • DomainNamerequired — (String)

          The distribution's CloudFront domain name. For example: d111111abcdef8.cloudfront.net.

        • ActiveTrustedSigners — (map)

          We recommend using TrustedKeyGroups instead of TrustedSigners.

          This field contains a list of Amazon Web Services account IDs and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • ActiveTrustedKeyGroups — (map)

          This field contains a list of key groups and the public keys in each key group that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the key groups have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of key groups in the list.

          • Items — (Array<map>)

            A list of key groups, including the identifiers of the public keys in each key group that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • KeyGroupId — (String)

              The identifier of the key group that contains the public keys.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • DistributionConfigrequired — (map)

          The distribution's configuration.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • DefaultRootObject — (String)

            The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

            Specify only the object name, for example, index.html. Don't add a / before the object name.

            If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

            To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

            To replace the default root object, update the distribution configuration and specify the new object.

            For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

          • Originsrequired — (map)

            A complex type that contains information about origins for this distribution.

            • Quantityrequired — (Integer)

              The number of origins for this distribution.

            • Itemsrequired — (Array<map>)

              A list of origins.

              • Idrequired — (String)

                A unique identifier for the origin. This value must be unique within the distribution.

                Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

              • DomainNamerequired — (String)

                The domain name for the origin.

                For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

              • OriginPath — (String)

                An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

                For more information, see Origin Path in the Amazon CloudFront Developer Guide.

              • CustomHeaders — (map)

                A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

                For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of custom headers, if any, for this distribution.

                • Items — (Array<map>)

                  Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                  • HeaderNamerequired — (String)

                    The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                  • HeaderValuerequired — (String)

                    The value for the header that you specified in the HeaderName field.

              • S3OriginConfig — (map)

                Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

                • OriginAccessIdentityrequired — (String)

                  The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                  origin-access-identity/cloudfront/ID-of-origin-access-identity

                  where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                  For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

              • CustomOriginConfig — (map)

                Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

                • HTTPPortrequired — (Integer)

                  The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

                • HTTPSPortrequired — (Integer)

                  The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

                • OriginProtocolPolicyrequired — (String)

                  Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                  • http-only – CloudFront always uses HTTP to connect to the origin.

                  • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                  • https-only – CloudFront always uses HTTPS to connect to the origin.

                  Possible values include:
                  • "http-only"
                  • "match-viewer"
                  • "https-only"
                • OriginSslProtocols — (map)

                  Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                  For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                  • Itemsrequired — (Array<String>)

                    A list that contains allowed SSL/TLS protocols for this distribution.

                • OriginReadTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                  For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

                • OriginKeepaliveTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                  For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

              • ConnectionAttempts — (Integer)

                The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

                For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

                For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

              • ConnectionTimeout — (Integer)

                The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

                For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

              • OriginShield — (map)

                CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

                For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  A flag that specifies whether Origin Shield is enabled.

                  When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

                • OriginShieldRegion — (String)

                  The Amazon Web Services Region for Origin Shield.

                  Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                  When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

              • OriginAccessControlId — (String)

                The unique identifier of an origin access control for this origin.

                For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

          • OriginGroups — (map)

            A complex type that contains information about origin groups for this distribution.

            • Quantityrequired — (Integer)

              The number of origin groups.

            • Items — (Array<map>)

              The items (origin groups) in a distribution.

              • Idrequired — (String)

                The origin group's ID.

              • FailoverCriteriarequired — (map)

                A complex type that contains information about the failover criteria for an origin group.

                • StatusCodesrequired — (map)

                  The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                  • Quantityrequired — (Integer)

                    The number of status codes.

                  • Itemsrequired — (Array<Integer>)

                    The items (status codes) for an origin group.

              • Membersrequired — (map)

                A complex type that contains information about the origins in an origin group.

                • Quantityrequired — (Integer)

                  The number of origins in an origin group.

                • Itemsrequired — (Array<map>)

                  Items (origins) in an origin group.

                  • OriginIdrequired — (String)

                    The ID for an origin in an origin group.

          • DefaultCacheBehaviorrequired — (map)

            A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CacheBehaviors — (map)

            A complex type that contains zero or more CacheBehavior elements.

            • Quantityrequired — (Integer)

              The number of cache behaviors for this distribution.

            • Items — (Array<map>)

              Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

              • PathPatternrequired — (String)

                The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

                Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

                The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

                For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

              • TargetOriginIdrequired — (String)

                The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

              • TrustedSigners — (map)

                We recommend using TrustedKeyGroups instead of TrustedSigners.

                A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of Amazon Web Services accounts in the list.

                • Items — (Array<String>)

                  A list of Amazon Web Services account identifiers.

              • TrustedKeyGroups — (map)

                A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of key groups in the list.

                • Items — (Array<String>)

                  A list of key groups identifiers.

              • ViewerProtocolPolicyrequired — (String)

                The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

                • allow-all: Viewers can use HTTP or HTTPS.

                • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

                • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

                For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

                Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
                Possible values include:
                • "allow-all"
                • "https-only"
                • "redirect-to-https"
              • AllowedMethods — (map)

                A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

                • CloudFront forwards only GET and HEAD requests.

                • CloudFront forwards only GET, HEAD, and OPTIONS requests.

                • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

                If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

                • Quantityrequired — (Integer)

                  The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

                • CachedMethods — (map)

                  A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                  • CloudFront caches responses to GET and HEAD requests.

                  • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                  If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                  • Itemsrequired — (Array<String>)

                    A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

              • SmoothStreaming — (Boolean)

                Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

              • Compress — (Boolean)

                Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

              • LambdaFunctionAssociations — (map)

                A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

                • Quantityrequired — (Integer)

                  The number of Lambda@Edge function associations for this cache behavior.

                • Items — (Array<map>)

                  Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                  • LambdaFunctionARNrequired — (String)

                    The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                  • EventTyperequired — (String)

                    Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                    • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                    • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                    • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                    • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                      If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
                  • IncludeBody — (Boolean)

                    A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

              • FunctionAssociations — (map)

                A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • Quantityrequired — (Integer)

                  The number of CloudFront functions in the list.

                • Items — (Array<map>)

                  The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                  • FunctionARNrequired — (String)

                    The Amazon Resource Name (ARN) of the function.

                  • EventTyperequired — (String)

                    The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
              • FieldLevelEncryptionId — (String)

                The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

              • RealtimeLogConfigArn — (String)

                The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

              • CachePolicyId — (String)

                The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              • OriginRequestPolicyId — (String)

                The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              • ResponseHeadersPolicyId — (String)

                The identifier for a response headers policy.

              • ForwardedValues — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

                If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

                A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

                • QueryStringrequired — (Boolean)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                  If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                  If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                  If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                  For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

                • Cookiesrequired — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                  • Forwardrequired — (String)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                    Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "all"
                  • WhitelistedNames — (map)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                    If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                    For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • Headers — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                  For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

                • QueryStringCacheKeys — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                  • Quantityrequired — (Integer)

                    The number of whitelisted query string parameters for a cache behavior.

                  • Items — (Array<String>)

                    A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

              • MinTTL — (Integer)

                This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

              • DefaultTTL — (Integer)

                This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • MaxTTL — (Integer)

                This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CustomErrorResponses — (map)

            A complex type that controls the following:

            • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

            • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

            For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

            • Items — (Array<map>)

              A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ErrorCoderequired — (Integer)

                The HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ResponsePagePath — (String)

                The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

                • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

                • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

                If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

                We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

              • ResponseCode — (String)

                The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

                • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

                • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

                • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

                If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

              • ErrorCachingMinTTL — (Integer)

                The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

                For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Commentrequired — (String)

            A comment to describe the distribution. The comment cannot be longer than 128 characters.

          • Logging — (map)

            A complex type that controls whether access logs are written for the distribution.

            For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

            • IncludeCookiesrequired — (Boolean)

              Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • PriceClass — (String)

            The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

            If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

            For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            From this field, you can enable or disable the selected distribution.

          • ViewerCertificate — (map)

            A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

            • CloudFrontDefaultCertificate — (Boolean)

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

              If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

              • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

              • MinimumProtocolVersion

              • SSLSupportMethod

            • IAMCertificateId — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

              If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • ACMCertificateArn — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

              If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • SSLSupportMethod — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

              • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

              • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

              • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

              Possible values include:
              • "sni-only"
              • "vip"
              • "static-ip"
            • MinimumProtocolVersion — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

              • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

              • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

              For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: On the CloudFront console, this setting is called Security Policy.

              When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

              Possible values include:
              • "SSLv3"
              • "TLSv1"
              • "TLSv1_2016"
              • "TLSv1.1_2016"
              • "TLSv1.2_2018"
              • "TLSv1.2_2019"
              • "TLSv1.2_2021"
            • Certificate — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

            • CertificateSource — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

              Possible values include:
              • "cloudfront"
              • "iam"
              • "acm"
          • Restrictions — (map)

            A complex type that identifies ways in which you want to restrict distribution of your content.

            • GeoRestrictionrequired — (map)

              A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

              • RestrictionTyperequired — (String)

                The method that you want to use to restrict distribution of your content by country:

                • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

                • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

                • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

                Possible values include:
                • "blacklist"
                • "whitelist"
                • "none"
              • Quantityrequired — (Integer)

                When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

              • Items — (Array<String>)

                A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

                The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

                CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

          • WebACLId — (String)

            A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

            WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

          • HttpVersion — (String)

            (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

            For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

            For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

            Possible values include:
            • "http1.1"
            • "http2"
            • "http3"
            • "http2and3"
          • IsIPV6Enabled — (Boolean)

            If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

            In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

            If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

            • You enable IPv6 for the distribution

            • You're using alternate domain names in the URLs for your objects

            For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

            If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

          • ContinuousDeploymentPolicyId — (String)

            The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

          • Staging — (Boolean)

            A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

        • AliasICPRecordals — (Array<map>)

          Amazon Web Services services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

          For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with Amazon Web Services services in China.

          • CNAME — (String)

            A domain name associated with a distribution.

          • ICPRecordalStatus — (String)

            The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China.

            The status values returned are the following:

            • APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it.

            • SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number.

            • PENDING indicates that CloudFront can't determine the ICP recordal status of the CNAME associated with the distribution because there was an error in trying to determine the status. You can try again to see if the error is resolved in which case CloudFront returns an APPROVED or SUSPENDED status.

            Possible values include:
            • "APPROVED"
            • "SUSPENDED"
            • "PENDING"
      • ETag — (String)

        The current version of the distribution's information. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

Waiter Resource States:

getDistributionConfig(params = {}, callback) ⇒ AWS.Request

Get the configuration information about a distribution.

Service Reference:

Examples:

Calling the getDistributionConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getDistributionConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The distribution's ID. If the ID is empty, an empty distribution configuration is returned.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DistributionConfig — (map)

        The distribution's configuration information.

        • CallerReferencerequired — (String)

          A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

          If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

          If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

        • Aliases — (map)

          A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

          • Quantityrequired — (Integer)

            The number of CNAME aliases, if any, that you want to associate with this distribution.

          • Items — (Array<String>)

            A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

        • DefaultRootObject — (String)

          The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

          Specify only the object name, for example, index.html. Don't add a / before the object name.

          If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

          To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

          To replace the default root object, update the distribution configuration and specify the new object.

          For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

        • Originsrequired — (map)

          A complex type that contains information about origins for this distribution.

          • Quantityrequired — (Integer)

            The number of origins for this distribution.

          • Itemsrequired — (Array<map>)

            A list of origins.

            • Idrequired — (String)

              A unique identifier for the origin. This value must be unique within the distribution.

              Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

            • DomainNamerequired — (String)

              The domain name for the origin.

              For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

            • OriginPath — (String)

              An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

              For more information, see Origin Path in the Amazon CloudFront Developer Guide.

            • CustomHeaders — (map)

              A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

              For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

              • Quantityrequired — (Integer)

                The number of custom headers, if any, for this distribution.

              • Items — (Array<map>)

                Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                • HeaderNamerequired — (String)

                  The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • HeaderValuerequired — (String)

                  The value for the header that you specified in the HeaderName field.

            • S3OriginConfig — (map)

              Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

              • OriginAccessIdentityrequired — (String)

                The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                origin-access-identity/cloudfront/ID-of-origin-access-identity

                where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

            • CustomOriginConfig — (map)

              Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

              • HTTPPortrequired — (Integer)

                The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

              • HTTPSPortrequired — (Integer)

                The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

              • OriginProtocolPolicyrequired — (String)

                Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                • http-only – CloudFront always uses HTTP to connect to the origin.

                • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                • https-only – CloudFront always uses HTTPS to connect to the origin.

                Possible values include:
                • "http-only"
                • "match-viewer"
                • "https-only"
              • OriginSslProtocols — (map)

                Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                • Itemsrequired — (Array<String>)

                  A list that contains allowed SSL/TLS protocols for this distribution.

              • OriginReadTimeout — (Integer)

                Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

              • OriginKeepaliveTimeout — (Integer)

                Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

            • ConnectionAttempts — (Integer)

              The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

              For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

              For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

            • ConnectionTimeout — (Integer)

              The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

              For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

            • OriginShield — (map)

              CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

              For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                A flag that specifies whether Origin Shield is enabled.

                When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

              • OriginShieldRegion — (String)

                The Amazon Web Services Region for Origin Shield.

                Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

            • OriginAccessControlId — (String)

              The unique identifier of an origin access control for this origin.

              For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

        • OriginGroups — (map)

          A complex type that contains information about origin groups for this distribution.

          • Quantityrequired — (Integer)

            The number of origin groups.

          • Items — (Array<map>)

            The items (origin groups) in a distribution.

            • Idrequired — (String)

              The origin group's ID.

            • FailoverCriteriarequired — (map)

              A complex type that contains information about the failover criteria for an origin group.

              • StatusCodesrequired — (map)

                The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                • Quantityrequired — (Integer)

                  The number of status codes.

                • Itemsrequired — (Array<Integer>)

                  The items (status codes) for an origin group.

            • Membersrequired — (map)

              A complex type that contains information about the origins in an origin group.

              • Quantityrequired — (Integer)

                The number of origins in an origin group.

              • Itemsrequired — (Array<map>)

                Items (origins) in an origin group.

                • OriginIdrequired — (String)

                  The ID for an origin in an origin group.

        • DefaultCacheBehaviorrequired — (map)

          A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

          • TargetOriginIdrequired — (String)

            The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

          • TrustedSigners — (map)

            We recommend using TrustedKeyGroups instead of TrustedSigners.

            A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

            When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of Amazon Web Services accounts in the list.

            • Items — (Array<String>)

              A list of Amazon Web Services account identifiers.

          • TrustedKeyGroups — (map)

            A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

            When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of key groups in the list.

            • Items — (Array<String>)

              A list of key groups identifiers.

          • ViewerProtocolPolicyrequired — (String)

            The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

            • allow-all: Viewers can use HTTP or HTTPS.

            • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

            • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

            For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

            Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
            Possible values include:
            • "allow-all"
            • "https-only"
            • "redirect-to-https"
          • AllowedMethods — (map)

            A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

            • CloudFront forwards only GET and HEAD requests.

            • CloudFront forwards only GET, HEAD, and OPTIONS requests.

            • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

            If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

            • Quantityrequired — (Integer)

              The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

            • Itemsrequired — (Array<String>)

              A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

            • CachedMethods — (map)

              A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

              • CloudFront caches responses to GET and HEAD requests.

              • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

              If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

              • Quantityrequired — (Integer)

                The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

          • SmoothStreaming — (Boolean)

            Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

          • Compress — (Boolean)

            Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

          • LambdaFunctionAssociations — (map)

            A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

            • Quantityrequired — (Integer)

              The number of Lambda@Edge function associations for this cache behavior.

            • Items — (Array<map>)

              Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

              • LambdaFunctionARNrequired — (String)

                The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

              • EventTyperequired — (String)

                Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                  If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                Possible values include:
                • "viewer-request"
                • "viewer-response"
                • "origin-request"
                • "origin-response"
              • IncludeBody — (Boolean)

                A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

          • FunctionAssociations — (map)

            A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

            • Quantityrequired — (Integer)

              The number of CloudFront functions in the list.

            • Items — (Array<map>)

              The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • FunctionARNrequired — (String)

                The Amazon Resource Name (ARN) of the function.

              • EventTyperequired — (String)

                The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                Possible values include:
                • "viewer-request"
                • "viewer-response"
                • "origin-request"
                • "origin-response"
          • FieldLevelEncryptionId — (String)

            The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

          • RealtimeLogConfigArn — (String)

            The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

          • CachePolicyId — (String)

            The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

          • OriginRequestPolicyId — (String)

            The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

          • ResponseHeadersPolicyId — (String)

            The identifier for a response headers policy.

          • ForwardedValues — (map)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

            If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

            • QueryStringrequired — (Boolean)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

              If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

              If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

              If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

              For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

            • Cookiesrequired — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

              • Forwardrequired — (String)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                Possible values include:
                • "none"
                • "whitelist"
                • "all"
              • WhitelistedNames — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                • Quantityrequired — (Integer)

                  The number of cookie names in the Items list.

                • Items — (Array<String>)

                  A list of cookie names.

            • Headers — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

              For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

              • Quantityrequired — (Integer)

                The number of header names in the Items list.

              • Items — (Array<String>)

                A list of HTTP header names.

            • QueryStringCacheKeys — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

              • Quantityrequired — (Integer)

                The number of whitelisted query string parameters for a cache behavior.

              • Items — (Array<String>)

                A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

          • MinTTL — (Integer)

            This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

          • DefaultTTL — (Integer)

            This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • MaxTTL — (Integer)

            This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        • CacheBehaviors — (map)

          A complex type that contains zero or more CacheBehavior elements.

          • Quantityrequired — (Integer)

            The number of cache behaviors for this distribution.

          • Items — (Array<map>)

            Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

            • PathPatternrequired — (String)

              The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

              Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

              The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

              For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        • CustomErrorResponses — (map)

          A complex type that controls the following:

          • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

          • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

          For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Quantityrequired — (Integer)

            The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

          • Items — (Array<map>)

            A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

            • ErrorCoderequired — (Integer)

              The HTTP status code for which you want to specify a custom error page and/or a caching duration.

            • ResponsePagePath — (String)

              The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

              • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

              • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

              If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

              We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

            • ResponseCode — (String)

              The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

              • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

              • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

              • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

              If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

            • ErrorCachingMinTTL — (Integer)

              The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

              For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

        • Commentrequired — (String)

          A comment to describe the distribution. The comment cannot be longer than 128 characters.

        • Logging — (map)

          A complex type that controls whether access logs are written for the distribution.

          For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

          • IncludeCookiesrequired — (Boolean)

            Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

          • Bucketrequired — (String)

            The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

          • Prefixrequired — (String)

            An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

        • PriceClass — (String)

          The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

          If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

          For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

          Possible values include:
          • "PriceClass_100"
          • "PriceClass_200"
          • "PriceClass_All"
        • Enabledrequired — (Boolean)

          From this field, you can enable or disable the selected distribution.

        • ViewerCertificate — (map)

          A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

          • CloudFrontDefaultCertificate — (Boolean)

            If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

            If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

            • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

            • MinimumProtocolVersion

            • SSLSupportMethod

          • IAMCertificateId — (String)

            If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

            If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

          • ACMCertificateArn — (String)

            If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

            If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

          • SSLSupportMethod — (String)

            If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

            • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

            • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

            • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

            If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

            Possible values include:
            • "sni-only"
            • "vip"
            • "static-ip"
          • MinimumProtocolVersion — (String)

            If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

            • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

            • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

            For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

            Note: On the CloudFront console, this setting is called Security Policy.

            When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

            If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

            Possible values include:
            • "SSLv3"
            • "TLSv1"
            • "TLSv1_2016"
            • "TLSv1.1_2016"
            • "TLSv1.2_2018"
            • "TLSv1.2_2019"
            • "TLSv1.2_2021"
          • Certificate — (String)

            This field is deprecated. Use one of the following fields instead:

            • ACMCertificateArn

            • IAMCertificateId

            • CloudFrontDefaultCertificate

          • CertificateSource — (String)

            This field is deprecated. Use one of the following fields instead:

            • ACMCertificateArn

            • IAMCertificateId

            • CloudFrontDefaultCertificate

            Possible values include:
            • "cloudfront"
            • "iam"
            • "acm"
        • Restrictions — (map)

          A complex type that identifies ways in which you want to restrict distribution of your content.

          • GeoRestrictionrequired — (map)

            A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

            • RestrictionTyperequired — (String)

              The method that you want to use to restrict distribution of your content by country:

              • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

              • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

              • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

              Possible values include:
              • "blacklist"
              • "whitelist"
              • "none"
            • Quantityrequired — (Integer)

              When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

            • Items — (Array<String>)

              A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

              The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

              CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

        • WebACLId — (String)

          A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

          WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

        • HttpVersion — (String)

          (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

          For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

          For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

          Possible values include:
          • "http1.1"
          • "http2"
          • "http3"
          • "http2and3"
        • IsIPV6Enabled — (Boolean)

          If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

          In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

          If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

          • You enable IPv6 for the distribution

          • You're using alternate domain names in the URLs for your objects

          For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

          If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

        • ContinuousDeploymentPolicyId — (String)

          The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

        • Staging — (Boolean)

          A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

      • ETag — (String)

        The current version of the configuration. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getFieldLevelEncryption(params = {}, callback) ⇒ AWS.Request

Get the field-level encryption configuration information.

Service Reference:

Examples:

Calling the getFieldLevelEncryption operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getFieldLevelEncryption(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      Request the ID for the field-level encryption configuration information.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FieldLevelEncryption — (map)

        Return the field-level encryption configuration information.

        • Idrequired — (String)

          The configuration ID for a field-level encryption configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.

        • LastModifiedTimerequired — (Date)

          The last time the field-level encryption configuration was changed.

        • FieldLevelEncryptionConfigrequired — (map)

          A complex data type that includes the profile configurations specified for field-level encryption.

          • CallerReferencerequired — (String)

            A unique number that ensures the request can't be replayed.

          • Comment — (String)

            An optional comment about the configuration. The comment cannot be longer than 128 characters.

          • QueryArgProfileConfig — (map)

            A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.

            • ForwardWhenQueryArgProfileIsUnknownrequired — (Boolean)

              Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.

            • QueryArgProfiles — (map)

              Profiles specified for query argument-profile mapping for field-level encryption.

              • Quantityrequired — (Integer)

                Number of profiles for query argument-profile mapping for field-level encryption.

              • Items — (Array<map>)

                Number of items for query argument-profile mapping for field-level encryption.

                • QueryArgrequired — (String)

                  Query argument for field-level encryption query argument-profile mapping.

                • ProfileIdrequired — (String)

                  ID of profile to use for field-level encryption query argument-profile mapping

          • ContentTypeProfileConfig — (map)

            A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.

            • ForwardWhenContentTypeIsUnknownrequired — (Boolean)

              The setting in a field-level encryption content type-profile mapping that specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.

            • ContentTypeProfiles — (map)

              The configuration for a field-level encryption content type-profile.

              • Quantityrequired — (Integer)

                The number of field-level encryption content type-profile mappings.

              • Items — (Array<map>)

                Items in a field-level encryption content type-profile mapping.

                • Formatrequired — (String)

                  The format for a field-level encryption content type-profile mapping.

                  Possible values include:
                  • "URLEncoded"
                • ProfileId — (String)

                  The profile ID for a field-level encryption content type-profile mapping.

                • ContentTyperequired — (String)

                  The content type for a field-level encryption content type-profile mapping.

      • ETag — (String)

        The current version of the field level encryption configuration. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getFieldLevelEncryptionConfig(params = {}, callback) ⇒ AWS.Request

Get the field-level encryption configuration information.

Service Reference:

Examples:

Calling the getFieldLevelEncryptionConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getFieldLevelEncryptionConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      Request the ID for the field-level encryption configuration information.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FieldLevelEncryptionConfig — (map)

        Return the field-level encryption configuration information.

        • CallerReferencerequired — (String)

          A unique number that ensures the request can't be replayed.

        • Comment — (String)

          An optional comment about the configuration. The comment cannot be longer than 128 characters.

        • QueryArgProfileConfig — (map)

          A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.

          • ForwardWhenQueryArgProfileIsUnknownrequired — (Boolean)

            Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.

          • QueryArgProfiles — (map)

            Profiles specified for query argument-profile mapping for field-level encryption.

            • Quantityrequired — (Integer)

              Number of profiles for query argument-profile mapping for field-level encryption.

            • Items — (Array<map>)

              Number of items for query argument-profile mapping for field-level encryption.

              • QueryArgrequired — (String)

                Query argument for field-level encryption query argument-profile mapping.

              • ProfileIdrequired — (String)

                ID of profile to use for field-level encryption query argument-profile mapping

        • ContentTypeProfileConfig — (map)

          A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.

          • ForwardWhenContentTypeIsUnknownrequired — (Boolean)

            The setting in a field-level encryption content type-profile mapping that specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.

          • ContentTypeProfiles — (map)

            The configuration for a field-level encryption content type-profile.

            • Quantityrequired — (Integer)

              The number of field-level encryption content type-profile mappings.

            • Items — (Array<map>)

              Items in a field-level encryption content type-profile mapping.

              • Formatrequired — (String)

                The format for a field-level encryption content type-profile mapping.

                Possible values include:
                • "URLEncoded"
              • ProfileId — (String)

                The profile ID for a field-level encryption content type-profile mapping.

              • ContentTyperequired — (String)

                The content type for a field-level encryption content type-profile mapping.

      • ETag — (String)

        The current version of the field level encryption configuration. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getFieldLevelEncryptionProfile(params = {}, callback) ⇒ AWS.Request

Get the field-level encryption profile information.

Service Reference:

Examples:

Calling the getFieldLevelEncryptionProfile operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getFieldLevelEncryptionProfile(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      Get the ID for the field-level encryption profile information.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FieldLevelEncryptionProfile — (map)

        Return the field-level encryption profile information.

        • Idrequired — (String)

          The ID for a field-level encryption profile configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.

        • LastModifiedTimerequired — (Date)

          The last time the field-level encryption profile was updated.

        • FieldLevelEncryptionProfileConfigrequired — (map)

          A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.

          • Namerequired — (String)

            Profile name for the field-level encryption profile.

          • CallerReferencerequired — (String)

            A unique number that ensures that the request can't be replayed.

          • Comment — (String)

            An optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters.

          • EncryptionEntitiesrequired — (map)

            A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.

            • Quantityrequired — (Integer)

              Number of field pattern items in a field-level encryption content type-profile mapping.

            • Items — (Array<map>)

              An array of field patterns in a field-level encryption content type-profile mapping.

              • PublicKeyIdrequired — (String)

                The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.

              • ProviderIdrequired — (String)

                The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.

              • FieldPatternsrequired — (map)

                Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (). You can't overlap field patterns. For example, you can't have both ABC and AB*. Note that field patterns are case-sensitive.

                • Quantityrequired — (Integer)

                  The number of field-level encryption field patterns.

                • Items — (Array<String>)

                  An array of the field-level encryption field patterns.

      • ETag — (String)

        The current version of the field level encryption profile. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getFieldLevelEncryptionProfileConfig(params = {}, callback) ⇒ AWS.Request

Get the field-level encryption profile configuration information.

Examples:

Calling the getFieldLevelEncryptionProfileConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getFieldLevelEncryptionProfileConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      Get the ID for the field-level encryption profile configuration information.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FieldLevelEncryptionProfileConfig — (map)

        Return the field-level encryption profile configuration information.

        • Namerequired — (String)

          Profile name for the field-level encryption profile.

        • CallerReferencerequired — (String)

          A unique number that ensures that the request can't be replayed.

        • Comment — (String)

          An optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters.

        • EncryptionEntitiesrequired — (map)

          A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.

          • Quantityrequired — (Integer)

            Number of field pattern items in a field-level encryption content type-profile mapping.

          • Items — (Array<map>)

            An array of field patterns in a field-level encryption content type-profile mapping.

            • PublicKeyIdrequired — (String)

              The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.

            • ProviderIdrequired — (String)

              The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.

            • FieldPatternsrequired — (map)

              Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (). You can't overlap field patterns. For example, you can't have both ABC and AB*. Note that field patterns are case-sensitive.

              • Quantityrequired — (Integer)

                The number of field-level encryption field patterns.

              • Items — (Array<String>)

                An array of the field-level encryption field patterns.

      • ETag — (String)

        The current version of the field-level encryption profile configuration result. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getFunction(params = {}, callback) ⇒ AWS.Request

Gets the code of a CloudFront function. To get configuration information and metadata about a function, use DescribeFunction.

To get a function's code, you must provide the function's name and stage. To get these values, you can use ListFunctions.

Service Reference:

Examples:

Calling the getFunction operation

var params = {
  Name: 'STRING_VALUE', /* required */
  Stage: DEVELOPMENT | LIVE
};
cloudfront.getFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the function whose code you are getting.

    • Stage — (String)

      The function's stage, either DEVELOPMENT or LIVE.

      Possible values include:
      • "DEVELOPMENT"
      • "LIVE"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FunctionCode — (Buffer(Node.js), Typed Array(Browser))

        The function code of a CloudFront function.

      • ETag — (String)

        The version identifier for the current version of the CloudFront function.

      • ContentType — (String)

        The content type (media type) of the response.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getInvalidation(params = {}, callback) ⇒ AWS.Request

Get the information about an invalidation.

Service Reference:

Examples:

Calling the getInvalidation operation

var params = {
  DistributionId: 'STRING_VALUE', /* required */
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getInvalidation(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DistributionId — (String)

      The distribution's ID.

    • Id — (String)

      The identifier for the invalidation request, for example, IDFDVBD632BHDS5.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Invalidation — (map)

        The invalidation's information. For more information, see Invalidation Complex Type.

        • Idrequired — (String)

          The identifier for the invalidation request. For example: IDFDVBD632BHDS5.

        • Statusrequired — (String)

          The status of the invalidation request. When the invalidation batch is finished, the status is Completed.

        • CreateTimerequired — (Date)

          The date and time the invalidation request was first made.

        • InvalidationBatchrequired — (map)

          The current invalidation information for the batch request.

          • Pathsrequired — (map)

            A complex type that contains information about the objects that you want to invalidate. For more information, see Specifying the Objects to Invalidate in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of invalidation paths specified for the objects that you want to invalidate.

            • Items — (Array<String>)

              A complex type that contains a list of the paths that you want to invalidate.

          • CallerReferencerequired — (String)

            A value that you specify to uniquely identify an invalidation request. CloudFront uses the value to prevent you from accidentally resubmitting an identical request. Whenever you create a new invalidation request, you must specify a new value for CallerReference and change other values in the request as applicable. One way to ensure that the value of CallerReference is unique is to use a timestamp, for example, 20120301090000.

            If you make a second invalidation request with the same value for CallerReference, and if the rest of the request is the same, CloudFront doesn't create a new invalidation request. Instead, CloudFront returns information about the invalidation request that you previously created with the same CallerReference.

            If CallerReference is a value you already sent in a previous invalidation batch request but the content of any Path is different from the original request, CloudFront returns an InvalidationBatchAlreadyExists error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

Waiter Resource States:

getKeyGroup(params = {}, callback) ⇒ AWS.Request

Gets a key group, including the date and time when the key group was last modified.

To get a key group, you must provide the key group's identifier. If the key group is referenced in a distribution's cache behavior, you can get the key group's identifier using ListDistributions or GetDistribution. If the key group is not referenced in a cache behavior, you can get the identifier using ListKeyGroups.

Service Reference:

Examples:

Calling the getKeyGroup operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getKeyGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier of the key group that you are getting. To get the identifier, use ListKeyGroups.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • KeyGroup — (map)

        The key group.

        • Idrequired — (String)

          The identifier for the key group.

        • LastModifiedTimerequired — (Date)

          The date and time when the key group was last modified.

        • KeyGroupConfigrequired — (map)

          The key group configuration.

          • Namerequired — (String)

            A name to identify the key group.

          • Itemsrequired — (Array<String>)

            A list of the identifiers of the public keys in the key group.

          • Comment — (String)

            A comment to describe the key group. The comment cannot be longer than 128 characters.

      • ETag — (String)

        The identifier for this version of the key group.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getKeyGroupConfig(params = {}, callback) ⇒ AWS.Request

Gets a key group configuration.

To get a key group configuration, you must provide the key group's identifier. If the key group is referenced in a distribution's cache behavior, you can get the key group's identifier using ListDistributions or GetDistribution. If the key group is not referenced in a cache behavior, you can get the identifier using ListKeyGroups.

Service Reference:

Examples:

Calling the getKeyGroupConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getKeyGroupConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier of the key group whose configuration you are getting. To get the identifier, use ListKeyGroups.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • KeyGroupConfig — (map)

        The key group configuration.

        • Namerequired — (String)

          A name to identify the key group.

        • Itemsrequired — (Array<String>)

          A list of the identifiers of the public keys in the key group.

        • Comment — (String)

          A comment to describe the key group. The comment cannot be longer than 128 characters.

      • ETag — (String)

        The identifier for this version of the key group.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getMonitoringSubscription(params = {}, callback) ⇒ AWS.Request

Gets information about whether additional CloudWatch metrics are enabled for the specified CloudFront distribution.

Service Reference:

Examples:

Calling the getMonitoringSubscription operation

var params = {
  DistributionId: 'STRING_VALUE' /* required */
};
cloudfront.getMonitoringSubscription(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DistributionId — (String)

      The ID of the distribution that you are getting metrics information for.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • MonitoringSubscription — (map)

        A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution.

        • RealtimeMetricsSubscriptionConfig — (map)

          A subscription configuration for additional CloudWatch metrics.

          • RealtimeMetricsSubscriptionStatusrequired — (String)

            A flag that indicates whether additional CloudWatch metrics are enabled for a given CloudFront distribution.

            Possible values include:
            • "Enabled"
            • "Disabled"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getOriginAccessControl(params = {}, callback) ⇒ AWS.Request

Gets a CloudFront origin access control, including its unique identifier.

Service Reference:

Examples:

Calling the getOriginAccessControl operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getOriginAccessControl(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The unique identifier of the origin access control.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • OriginAccessControl — (map)

        Contains an origin access control, including its unique identifier.

        • Idrequired — (String)

          The unique identifier of the origin access control.

        • OriginAccessControlConfig — (map)

          The origin access control.

          • Namerequired — (String)

            A name to identify the origin access control.

          • Description — (String)

            A description of the origin access control.

          • SigningProtocolrequired — (String)

            The signing protocol of the origin access control, which determines how CloudFront signs (authenticates) requests. The only valid value is sigv4.

            Possible values include:
            • "sigv4"
          • SigningBehaviorrequired — (String)

            Specifies which requests CloudFront signs (adds authentication information to). Specify always for the most common use case. For more information, see origin access control advanced settings in the Amazon CloudFront Developer Guide.

            This field can have one of the following values:

            • always – CloudFront signs all origin requests, overwriting the Authorization header from the viewer request if one exists.

            • never – CloudFront doesn't sign any origin requests. This value turns off origin access control for all origins in all distributions that use this origin access control.

            • no-override – If the viewer request doesn't contain the Authorization header, then CloudFront signs the origin request. If the viewer request contains the Authorization header, then CloudFront doesn't sign the origin request and instead passes along the Authorization header from the viewer request. WARNING: To pass along the Authorization header from the viewer request, you must add the Authorization header to a cache policy for all cache behaviors that use origins associated with this origin access control.

            Possible values include:
            • "never"
            • "always"
            • "no-override"
          • OriginAccessControlOriginTyperequired — (String)

            The type of origin that this origin access control is for.

            Possible values include:
            • "s3"
            • "mediastore"
      • ETag — (String)

        The version identifier for the current version of the origin access control.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getOriginAccessControlConfig(params = {}, callback) ⇒ AWS.Request

Gets a CloudFront origin access control configuration.

Service Reference:

Examples:

Calling the getOriginAccessControlConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getOriginAccessControlConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The unique identifier of the origin access control.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • OriginAccessControlConfig — (map)

        Contains an origin access control configuration.

        • Namerequired — (String)

          A name to identify the origin access control.

        • Description — (String)

          A description of the origin access control.

        • SigningProtocolrequired — (String)

          The signing protocol of the origin access control, which determines how CloudFront signs (authenticates) requests. The only valid value is sigv4.

          Possible values include:
          • "sigv4"
        • SigningBehaviorrequired — (String)

          Specifies which requests CloudFront signs (adds authentication information to). Specify always for the most common use case. For more information, see origin access control advanced settings in the Amazon CloudFront Developer Guide.

          This field can have one of the following values:

          • always – CloudFront signs all origin requests, overwriting the Authorization header from the viewer request if one exists.

          • never – CloudFront doesn't sign any origin requests. This value turns off origin access control for all origins in all distributions that use this origin access control.

          • no-override – If the viewer request doesn't contain the Authorization header, then CloudFront signs the origin request. If the viewer request contains the Authorization header, then CloudFront doesn't sign the origin request and instead passes along the Authorization header from the viewer request. WARNING: To pass along the Authorization header from the viewer request, you must add the Authorization header to a cache policy for all cache behaviors that use origins associated with this origin access control.

          Possible values include:
          • "never"
          • "always"
          • "no-override"
        • OriginAccessControlOriginTyperequired — (String)

          The type of origin that this origin access control is for.

          Possible values include:
          • "s3"
          • "mediastore"
      • ETag — (String)

        The version identifier for the current version of the origin access control.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getOriginRequestPolicy(params = {}, callback) ⇒ AWS.Request

Gets an origin request policy, including the following metadata:

  • The policy's identifier.

  • The date and time when the policy was last modified.

To get an origin request policy, you must provide the policy's identifier. If the origin request policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the origin request policy is not attached to a cache behavior, you can get the identifier using ListOriginRequestPolicies.

Service Reference:

Examples:

Calling the getOriginRequestPolicy operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getOriginRequestPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The unique identifier for the origin request policy. If the origin request policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the origin request policy is not attached to a cache behavior, you can get the identifier using ListOriginRequestPolicies.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • OriginRequestPolicy — (map)

        The origin request policy.

        • Idrequired — (String)

          The unique identifier for the origin request policy.

        • LastModifiedTimerequired — (Date)

          The date and time when the origin request policy was last modified.

        • OriginRequestPolicyConfigrequired — (map)

          The origin request policy configuration.

          • Comment — (String)

            A comment to describe the origin request policy. The comment cannot be longer than 128 characters.

          • Namerequired — (String)

            A unique name to identify the origin request policy.

          • HeadersConfigrequired — (map)

            The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.

            • HeaderBehaviorrequired — (String)

              Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:

              • none – No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in a CachePolicy are included in origin requests.

              • whitelist – Only the HTTP headers that are listed in the Headers type are included in requests that CloudFront sends to the origin.

              • allViewer – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.

              • allViewerAndWhitelistCloudFront – All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the Headers type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.

              • allExcept – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the Headers type, which are not included.

              Possible values include:
              • "none"
              • "whitelist"
              • "allViewer"
              • "allViewerAndWhitelistCloudFront"
              • "allExcept"
            • Headers — (map)

              Contains a list of HTTP header names.

              • Quantityrequired — (Integer)

                The number of header names in the Items list.

              • Items — (Array<String>)

                A list of HTTP header names.

          • CookiesConfigrequired — (map)

            The cookies from viewer requests to include in origin requests.

            • CookieBehaviorrequired — (String)

              Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

              • none – No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in a CachePolicy are included in origin requests.

              • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in requests that CloudFront sends to the origin.

              • all – All cookies in viewer requests are included in requests that CloudFront sends to the origin.

              • allExcept – All cookies in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the CookieNames type, which are not included.

              Possible values include:
              • "none"
              • "whitelist"
              • "all"
              • "allExcept"
            • Cookies — (map)

              Contains a list of cookie names.

              • Quantityrequired — (Integer)

                The number of cookie names in the Items list.

              • Items — (Array<String>)

                A list of cookie names.

          • QueryStringsConfigrequired — (map)

            The URL query strings from viewer requests to include in origin requests.

            • QueryStringBehaviorrequired — (String)

              Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

              • none – No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in a CachePolicy are included in origin requests.

              • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in requests that CloudFront sends to the origin.

              • all – All query strings in viewer requests are included in requests that CloudFront sends to the origin.

              • allExcept – All query strings in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the QueryStringNames type, which are not included.

              Possible values include:
              • "none"
              • "whitelist"
              • "all"
              • "allExcept"
            • QueryStrings — (map)

              Contains the specific query strings in viewer requests that either are or are not included in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the OriginRequestPolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

              • Quantityrequired — (Integer)

                The number of query string names in the Items list.

              • Items — (Array<String>)

                A list of query string names.

      • ETag — (String)

        The current version of the origin request policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getOriginRequestPolicyConfig(params = {}, callback) ⇒ AWS.Request

Gets an origin request policy configuration.

To get an origin request policy configuration, you must provide the policy's identifier. If the origin request policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the origin request policy is not attached to a cache behavior, you can get the identifier using ListOriginRequestPolicies.

Service Reference:

Examples:

Calling the getOriginRequestPolicyConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getOriginRequestPolicyConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The unique identifier for the origin request policy. If the origin request policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the origin request policy is not attached to a cache behavior, you can get the identifier using ListOriginRequestPolicies.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • OriginRequestPolicyConfig — (map)

        The origin request policy configuration.

        • Comment — (String)

          A comment to describe the origin request policy. The comment cannot be longer than 128 characters.

        • Namerequired — (String)

          A unique name to identify the origin request policy.

        • HeadersConfigrequired — (map)

          The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.

          • HeaderBehaviorrequired — (String)

            Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:

            • none – No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in a CachePolicy are included in origin requests.

            • whitelist – Only the HTTP headers that are listed in the Headers type are included in requests that CloudFront sends to the origin.

            • allViewer – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.

            • allViewerAndWhitelistCloudFront – All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the Headers type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.

            • allExcept – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the Headers type, which are not included.

            Possible values include:
            • "none"
            • "whitelist"
            • "allViewer"
            • "allViewerAndWhitelistCloudFront"
            • "allExcept"
          • Headers — (map)

            Contains a list of HTTP header names.

            • Quantityrequired — (Integer)

              The number of header names in the Items list.

            • Items — (Array<String>)

              A list of HTTP header names.

        • CookiesConfigrequired — (map)

          The cookies from viewer requests to include in origin requests.

          • CookieBehaviorrequired — (String)

            Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

            • none – No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in a CachePolicy are included in origin requests.

            • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in requests that CloudFront sends to the origin.

            • all – All cookies in viewer requests are included in requests that CloudFront sends to the origin.

            • allExcept – All cookies in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the CookieNames type, which are not included.

            Possible values include:
            • "none"
            • "whitelist"
            • "all"
            • "allExcept"
          • Cookies — (map)

            Contains a list of cookie names.

            • Quantityrequired — (Integer)

              The number of cookie names in the Items list.

            • Items — (Array<String>)

              A list of cookie names.

        • QueryStringsConfigrequired — (map)

          The URL query strings from viewer requests to include in origin requests.

          • QueryStringBehaviorrequired — (String)

            Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

            • none – No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in a CachePolicy are included in origin requests.

            • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in requests that CloudFront sends to the origin.

            • all – All query strings in viewer requests are included in requests that CloudFront sends to the origin.

            • allExcept – All query strings in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the QueryStringNames type, which are not included.

            Possible values include:
            • "none"
            • "whitelist"
            • "all"
            • "allExcept"
          • QueryStrings — (map)

            Contains the specific query strings in viewer requests that either are or are not included in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the OriginRequestPolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

            • Quantityrequired — (Integer)

              The number of query string names in the Items list.

            • Items — (Array<String>)

              A list of query string names.

      • ETag — (String)

        The current version of the origin request policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getPublicKey(params = {}, callback) ⇒ AWS.Request

Gets a public key.

Service Reference:

Examples:

Calling the getPublicKey operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getPublicKey(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier of the public key you are getting.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • PublicKey — (map)

        The public key.

        • Idrequired — (String)

          The identifier of the public key.

        • CreatedTimerequired — (Date)

          The date and time when the public key was uploaded.

        • PublicKeyConfigrequired — (map)

          Configuration information about a public key that you can use with signed URLs and signed cookies, or with field-level encryption.

          • CallerReferencerequired — (String)

            A string included in the request to help make sure that the request can't be replayed.

          • Namerequired — (String)

            A name to help identify the public key.

          • EncodedKeyrequired — (String)

            The public key that you can use with signed URLs and signed cookies, or with field-level encryption.

          • Comment — (String)

            A comment to describe the public key. The comment cannot be longer than 128 characters.

      • ETag — (String)

        The identifier for this version of the public key.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getPublicKeyConfig(params = {}, callback) ⇒ AWS.Request

Gets a public key configuration.

Service Reference:

Examples:

Calling the getPublicKeyConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getPublicKeyConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier of the public key whose configuration you are getting.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • PublicKeyConfig — (map)

        A public key configuration.

        • CallerReferencerequired — (String)

          A string included in the request to help make sure that the request can't be replayed.

        • Namerequired — (String)

          A name to help identify the public key.

        • EncodedKeyrequired — (String)

          The public key that you can use with signed URLs and signed cookies, or with field-level encryption.

        • Comment — (String)

          A comment to describe the public key. The comment cannot be longer than 128 characters.

      • ETag — (String)

        The identifier for this version of the public key configuration.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getRealtimeLogConfig(params = {}, callback) ⇒ AWS.Request

Gets a real-time log configuration.

To get a real-time log configuration, you can provide the configuration's name or its Amazon Resource Name (ARN). You must provide at least one. If you provide both, CloudFront uses the name to identify the real-time log configuration to get.

Service Reference:

Examples:

Calling the getRealtimeLogConfig operation

var params = {
  ARN: 'STRING_VALUE',
  Name: 'STRING_VALUE'
};
cloudfront.getRealtimeLogConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the real-time log configuration to get.

    • ARN — (String)

      The Amazon Resource Name (ARN) of the real-time log configuration to get.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RealtimeLogConfig — (map)

        A real-time log configuration.

        • ARNrequired — (String)

          The Amazon Resource Name (ARN) of this real-time log configuration.

        • Namerequired — (String)

          The unique name of this real-time log configuration.

        • SamplingRaterequired — (Integer)

          The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. The sampling rate is an integer between 1 and 100, inclusive.

        • EndPointsrequired — (Array<map>)

          Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.

          • StreamTyperequired — (String)

            The type of data stream where you are sending real-time log data. The only valid value is Kinesis.

          • KinesisStreamConfig — (map)

            Contains information about the Amazon Kinesis data stream where you are sending real-time log data.

            • RoleARNrequired — (String)

              The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.

              For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide.

            • StreamARNrequired — (String)

              The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.

        • Fieldsrequired — (Array<String>)

          A list of fields that are included in each real-time log record. In an API response, the fields are provided in the same order in which they are sent to the Amazon Kinesis data stream.

          For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getResponseHeadersPolicy(params = {}, callback) ⇒ AWS.Request

Gets a response headers policy, including metadata (the policy's identifier and the date and time when the policy was last modified).

To get a response headers policy, you must provide the policy's identifier. If the response headers policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the response headers policy is not attached to a cache behavior, you can get the identifier using ListResponseHeadersPolicies.

Service Reference:

Examples:

Calling the getResponseHeadersPolicy operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getResponseHeadersPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier for the response headers policy.

      If the response headers policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the response headers policy is not attached to a cache behavior, you can get the identifier using ListResponseHeadersPolicies.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ResponseHeadersPolicy — (map)

        Contains a response headers policy.

        • Idrequired — (String)

          The identifier for the response headers policy.

        • LastModifiedTimerequired — (Date)

          The date and time when the response headers policy was last modified.

        • ResponseHeadersPolicyConfigrequired — (map)

          A response headers policy configuration.

          • Comment — (String)

            A comment to describe the response headers policy.

            The comment cannot be longer than 128 characters.

          • Namerequired — (String)

            A name to identify the response headers policy.

            The name must be unique for response headers policies in this Amazon Web Services account.

          • CorsConfig — (map)

            A configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).

            • AccessControlAllowOriginsrequired — (map)

              A list of origins (domain names) that CloudFront can use as the value for the Access-Control-Allow-Origin HTTP response header.

              For more information about the Access-Control-Allow-Origin HTTP response header, see Access-Control-Allow-Origin in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of origins in the list.

              • Itemsrequired — (Array<String>)

                The list of origins (domain names). You can specify * to allow all origins.

            • AccessControlAllowHeadersrequired — (map)

              A list of HTTP header names that CloudFront includes as values for the Access-Control-Allow-Headers HTTP response header.

              For more information about the Access-Control-Allow-Headers HTTP response header, see Access-Control-Allow-Headers in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of HTTP header names in the list.

              • Itemsrequired — (Array<String>)

                The list of HTTP header names. You can specify * to allow all headers.

            • AccessControlAllowMethodsrequired — (map)

              A list of HTTP methods that CloudFront includes as values for the Access-Control-Allow-Methods HTTP response header.

              For more information about the Access-Control-Allow-Methods HTTP response header, see Access-Control-Allow-Methods in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of HTTP methods in the list.

              • Itemsrequired — (Array<String>)

                The list of HTTP methods. Valid values are:

                • GET

                • DELETE

                • HEAD

                • OPTIONS

                • PATCH

                • POST

                • PUT

                • ALL

                ALL is a special value that includes all of the listed HTTP methods.

            • AccessControlAllowCredentialsrequired — (Boolean)

              A Boolean that CloudFront uses as the value for the Access-Control-Allow-Credentials HTTP response header.

              For more information about the Access-Control-Allow-Credentials HTTP response header, see Access-Control-Allow-Credentials in the MDN Web Docs.

            • AccessControlExposeHeaders — (map)

              A list of HTTP headers that CloudFront includes as values for the Access-Control-Expose-Headers HTTP response header.

              For more information about the Access-Control-Expose-Headers HTTP response header, see Access-Control-Expose-Headers in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of HTTP headers in the list.

              • Items — (Array<String>)

                The list of HTTP headers. You can specify * to expose all headers.

            • AccessControlMaxAgeSec — (Integer)

              A number that CloudFront uses as the value for the Access-Control-Max-Age HTTP response header.

              For more information about the Access-Control-Max-Age HTTP response header, see Access-Control-Max-Age in the MDN Web Docs.

            • OriginOverriderequired — (Boolean)

              A Boolean that determines whether CloudFront overrides HTTP response headers received from the origin with the ones specified in this response headers policy.

          • SecurityHeadersConfig — (map)

            A configuration for a set of security-related HTTP response headers.

            • XSSProtection — (map)

              Determines whether CloudFront includes the X-XSS-Protection HTTP response header and the header's value.

              For more information about the X-XSS-Protection HTTP response header, see X-XSS-Protection in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header received from the origin with the one specified in this response headers policy.

              • Protectionrequired — (Boolean)

                A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting is true, the value of the X-XSS-Protection header is 1. When this setting is false, the value of the X-XSS-Protection header is 0.

                For more information about these settings, see X-XSS-Protection in the MDN Web Docs.

              • ModeBlock — (Boolean)

                A Boolean that determines whether CloudFront includes the mode=block directive in the X-XSS-Protection header.

                For more information about this directive, see X-XSS-Protection in the MDN Web Docs.

              • ReportUri — (String)

                A reporting URI, which CloudFront uses as the value of the report directive in the X-XSS-Protection header.

                You cannot specify a ReportUri when ModeBlock is true.

                For more information about using a reporting URL, see X-XSS-Protection in the MDN Web Docs.

            • FrameOptions — (map)

              Determines whether CloudFront includes the X-Frame-Options HTTP response header and the header's value.

              For more information about the X-Frame-Options HTTP response header, see X-Frame-Options in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the X-Frame-Options HTTP response header received from the origin with the one specified in this response headers policy.

              • FrameOptionrequired — (String)

                The value of the X-Frame-Options HTTP response header. Valid values are DENY and SAMEORIGIN.

                For more information about these values, see X-Frame-Options in the MDN Web Docs.

                Possible values include:
                • "DENY"
                • "SAMEORIGIN"
            • ReferrerPolicy — (map)

              Determines whether CloudFront includes the Referrer-Policy HTTP response header and the header's value.

              For more information about the Referrer-Policy HTTP response header, see Referrer-Policy in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the Referrer-Policy HTTP response header received from the origin with the one specified in this response headers policy.

              • ReferrerPolicyrequired — (String)

                The value of the Referrer-Policy HTTP response header. Valid values are:

                • no-referrer

                • no-referrer-when-downgrade

                • origin

                • origin-when-cross-origin

                • same-origin

                • strict-origin

                • strict-origin-when-cross-origin

                • unsafe-url

                For more information about these values, see Referrer-Policy in the MDN Web Docs.

                Possible values include:
                • "no-referrer"
                • "no-referrer-when-downgrade"
                • "origin"
                • "origin-when-cross-origin"
                • "same-origin"
                • "strict-origin"
                • "strict-origin-when-cross-origin"
                • "unsafe-url"
            • ContentSecurityPolicy — (map)

              The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

              For more information about the Content-Security-Policy HTTP response header, see Content-Security-Policy in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the Content-Security-Policy HTTP response header received from the origin with the one specified in this response headers policy.

              • ContentSecurityPolicyrequired — (String)

                The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

            • ContentTypeOptions — (map)

              Determines whether CloudFront includes the X-Content-Type-Options HTTP response header with its value set to nosniff.

              For more information about the X-Content-Type-Options HTTP response header, see X-Content-Type-Options in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the X-Content-Type-Options HTTP response header received from the origin with the one specified in this response headers policy.

            • StrictTransportSecurity — (map)

              Determines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header's value.

              For more information about the Strict-Transport-Security HTTP response header, see Strict-Transport-Security in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the Strict-Transport-Security HTTP response header received from the origin with the one specified in this response headers policy.

              • IncludeSubdomains — (Boolean)

                A Boolean that determines whether CloudFront includes the includeSubDomains directive in the Strict-Transport-Security HTTP response header.

              • Preload — (Boolean)

                A Boolean that determines whether CloudFront includes the preload directive in the Strict-Transport-Security HTTP response header.

              • AccessControlMaxAgeSecrequired — (Integer)

                A number that CloudFront uses as the value for the max-age directive in the Strict-Transport-Security HTTP response header.

          • ServerTimingHeadersConfig — (map)

            A configuration for enabling the Server-Timing header in HTTP responses sent from CloudFront.

            • Enabledrequired — (Boolean)

              A Boolean that determines whether CloudFront adds the Server-Timing header to HTTP responses that it sends in response to requests that match a cache behavior that's associated with this response headers policy.

            • SamplingRate — (Float)

              A number 0–100 (inclusive) that specifies the percentage of responses that you want CloudFront to add the Server-Timing header to. When you set the sampling rate to 100, CloudFront adds the Server-Timing header to the HTTP response for every request that matches the cache behavior that this response headers policy is attached to. When you set it to 50, CloudFront adds the header to 50% of the responses for requests that match the cache behavior. You can set the sampling rate to any number 0–100 with up to four decimal places.

          • CustomHeadersConfig — (map)

            A configuration for a set of custom HTTP response headers.

            • Quantityrequired — (Integer)

              The number of HTTP response headers in the list.

            • Items — (Array<map>)

              The list of HTTP response headers and their values.

              • Headerrequired — (String)

                The HTTP response header name.

              • Valuerequired — (String)

                The value for the HTTP response header.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.

          • RemoveHeadersConfig — (map)

            A configuration for a set of HTTP headers to remove from the HTTP response.

            • Quantityrequired — (Integer)

              The number of HTTP header names in the list.

            • Items — (Array<map>)

              The list of HTTP header names.

              • Headerrequired — (String)

                The HTTP header name.

      • ETag — (String)

        The version identifier for the current version of the response headers policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getResponseHeadersPolicyConfig(params = {}, callback) ⇒ AWS.Request

Gets a response headers policy configuration.

To get a response headers policy configuration, you must provide the policy's identifier. If the response headers policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the response headers policy is not attached to a cache behavior, you can get the identifier using ListResponseHeadersPolicies.

Service Reference:

Examples:

Calling the getResponseHeadersPolicyConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getResponseHeadersPolicyConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier for the response headers policy.

      If the response headers policy is attached to a distribution's cache behavior, you can get the policy's identifier using ListDistributions or GetDistribution. If the response headers policy is not attached to a cache behavior, you can get the identifier using ListResponseHeadersPolicies.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ResponseHeadersPolicyConfig — (map)

        Contains a response headers policy.

        • Comment — (String)

          A comment to describe the response headers policy.

          The comment cannot be longer than 128 characters.

        • Namerequired — (String)

          A name to identify the response headers policy.

          The name must be unique for response headers policies in this Amazon Web Services account.

        • CorsConfig — (map)

          A configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).

          • AccessControlAllowOriginsrequired — (map)

            A list of origins (domain names) that CloudFront can use as the value for the Access-Control-Allow-Origin HTTP response header.

            For more information about the Access-Control-Allow-Origin HTTP response header, see Access-Control-Allow-Origin in the MDN Web Docs.

            • Quantityrequired — (Integer)

              The number of origins in the list.

            • Itemsrequired — (Array<String>)

              The list of origins (domain names). You can specify * to allow all origins.

          • AccessControlAllowHeadersrequired — (map)

            A list of HTTP header names that CloudFront includes as values for the Access-Control-Allow-Headers HTTP response header.

            For more information about the Access-Control-Allow-Headers HTTP response header, see Access-Control-Allow-Headers in the MDN Web Docs.

            • Quantityrequired — (Integer)

              The number of HTTP header names in the list.

            • Itemsrequired — (Array<String>)

              The list of HTTP header names. You can specify * to allow all headers.

          • AccessControlAllowMethodsrequired — (map)

            A list of HTTP methods that CloudFront includes as values for the Access-Control-Allow-Methods HTTP response header.

            For more information about the Access-Control-Allow-Methods HTTP response header, see Access-Control-Allow-Methods in the MDN Web Docs.

            • Quantityrequired — (Integer)

              The number of HTTP methods in the list.

            • Itemsrequired — (Array<String>)

              The list of HTTP methods. Valid values are:

              • GET

              • DELETE

              • HEAD

              • OPTIONS

              • PATCH

              • POST

              • PUT

              • ALL

              ALL is a special value that includes all of the listed HTTP methods.

          • AccessControlAllowCredentialsrequired — (Boolean)

            A Boolean that CloudFront uses as the value for the Access-Control-Allow-Credentials HTTP response header.

            For more information about the Access-Control-Allow-Credentials HTTP response header, see Access-Control-Allow-Credentials in the MDN Web Docs.

          • AccessControlExposeHeaders — (map)

            A list of HTTP headers that CloudFront includes as values for the Access-Control-Expose-Headers HTTP response header.

            For more information about the Access-Control-Expose-Headers HTTP response header, see Access-Control-Expose-Headers in the MDN Web Docs.

            • Quantityrequired — (Integer)

              The number of HTTP headers in the list.

            • Items — (Array<String>)

              The list of HTTP headers. You can specify * to expose all headers.

          • AccessControlMaxAgeSec — (Integer)

            A number that CloudFront uses as the value for the Access-Control-Max-Age HTTP response header.

            For more information about the Access-Control-Max-Age HTTP response header, see Access-Control-Max-Age in the MDN Web Docs.

          • OriginOverriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides HTTP response headers received from the origin with the ones specified in this response headers policy.

        • SecurityHeadersConfig — (map)

          A configuration for a set of security-related HTTP response headers.

          • XSSProtection — (map)

            Determines whether CloudFront includes the X-XSS-Protection HTTP response header and the header's value.

            For more information about the X-XSS-Protection HTTP response header, see X-XSS-Protection in the MDN Web Docs.

            • Overriderequired — (Boolean)

              A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header received from the origin with the one specified in this response headers policy.

            • Protectionrequired — (Boolean)

              A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting is true, the value of the X-XSS-Protection header is 1. When this setting is false, the value of the X-XSS-Protection header is 0.

              For more information about these settings, see X-XSS-Protection in the MDN Web Docs.

            • ModeBlock — (Boolean)

              A Boolean that determines whether CloudFront includes the mode=block directive in the X-XSS-Protection header.

              For more information about this directive, see X-XSS-Protection in the MDN Web Docs.

            • ReportUri — (String)

              A reporting URI, which CloudFront uses as the value of the report directive in the X-XSS-Protection header.

              You cannot specify a ReportUri when ModeBlock is true.

              For more information about using a reporting URL, see X-XSS-Protection in the MDN Web Docs.

          • FrameOptions — (map)

            Determines whether CloudFront includes the X-Frame-Options HTTP response header and the header's value.

            For more information about the X-Frame-Options HTTP response header, see X-Frame-Options in the MDN Web Docs.

            • Overriderequired — (Boolean)

              A Boolean that determines whether CloudFront overrides the X-Frame-Options HTTP response header received from the origin with the one specified in this response headers policy.

            • FrameOptionrequired — (String)

              The value of the X-Frame-Options HTTP response header. Valid values are DENY and SAMEORIGIN.

              For more information about these values, see X-Frame-Options in the MDN Web Docs.

              Possible values include:
              • "DENY"
              • "SAMEORIGIN"
          • ReferrerPolicy — (map)

            Determines whether CloudFront includes the Referrer-Policy HTTP response header and the header's value.

            For more information about the Referrer-Policy HTTP response header, see Referrer-Policy in the MDN Web Docs.

            • Overriderequired — (Boolean)

              A Boolean that determines whether CloudFront overrides the Referrer-Policy HTTP response header received from the origin with the one specified in this response headers policy.

            • ReferrerPolicyrequired — (String)

              The value of the Referrer-Policy HTTP response header. Valid values are:

              • no-referrer

              • no-referrer-when-downgrade

              • origin

              • origin-when-cross-origin

              • same-origin

              • strict-origin

              • strict-origin-when-cross-origin

              • unsafe-url

              For more information about these values, see Referrer-Policy in the MDN Web Docs.

              Possible values include:
              • "no-referrer"
              • "no-referrer-when-downgrade"
              • "origin"
              • "origin-when-cross-origin"
              • "same-origin"
              • "strict-origin"
              • "strict-origin-when-cross-origin"
              • "unsafe-url"
          • ContentSecurityPolicy — (map)

            The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

            For more information about the Content-Security-Policy HTTP response header, see Content-Security-Policy in the MDN Web Docs.

            • Overriderequired — (Boolean)

              A Boolean that determines whether CloudFront overrides the Content-Security-Policy HTTP response header received from the origin with the one specified in this response headers policy.

            • ContentSecurityPolicyrequired — (String)

              The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

          • ContentTypeOptions — (map)

            Determines whether CloudFront includes the X-Content-Type-Options HTTP response header with its value set to nosniff.

            For more information about the X-Content-Type-Options HTTP response header, see X-Content-Type-Options in the MDN Web Docs.

            • Overriderequired — (Boolean)

              A Boolean that determines whether CloudFront overrides the X-Content-Type-Options HTTP response header received from the origin with the one specified in this response headers policy.

          • StrictTransportSecurity — (map)

            Determines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header's value.

            For more information about the Strict-Transport-Security HTTP response header, see Strict-Transport-Security in the MDN Web Docs.

            • Overriderequired — (Boolean)

              A Boolean that determines whether CloudFront overrides the Strict-Transport-Security HTTP response header received from the origin with the one specified in this response headers policy.

            • IncludeSubdomains — (Boolean)

              A Boolean that determines whether CloudFront includes the includeSubDomains directive in the Strict-Transport-Security HTTP response header.

            • Preload — (Boolean)

              A Boolean that determines whether CloudFront includes the preload directive in the Strict-Transport-Security HTTP response header.

            • AccessControlMaxAgeSecrequired — (Integer)

              A number that CloudFront uses as the value for the max-age directive in the Strict-Transport-Security HTTP response header.

        • ServerTimingHeadersConfig — (map)

          A configuration for enabling the Server-Timing header in HTTP responses sent from CloudFront.

          • Enabledrequired — (Boolean)

            A Boolean that determines whether CloudFront adds the Server-Timing header to HTTP responses that it sends in response to requests that match a cache behavior that's associated with this response headers policy.

          • SamplingRate — (Float)

            A number 0–100 (inclusive) that specifies the percentage of responses that you want CloudFront to add the Server-Timing header to. When you set the sampling rate to 100, CloudFront adds the Server-Timing header to the HTTP response for every request that matches the cache behavior that this response headers policy is attached to. When you set it to 50, CloudFront adds the header to 50% of the responses for requests that match the cache behavior. You can set the sampling rate to any number 0–100 with up to four decimal places.

        • CustomHeadersConfig — (map)

          A configuration for a set of custom HTTP response headers.

          • Quantityrequired — (Integer)

            The number of HTTP response headers in the list.

          • Items — (Array<map>)

            The list of HTTP response headers and their values.

            • Headerrequired — (String)

              The HTTP response header name.

            • Valuerequired — (String)

              The value for the HTTP response header.

            • Overriderequired — (Boolean)

              A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.

        • RemoveHeadersConfig — (map)

          A configuration for a set of HTTP headers to remove from the HTTP response.

          • Quantityrequired — (Integer)

            The number of HTTP header names in the list.

          • Items — (Array<map>)

            The list of HTTP header names.

            • Headerrequired — (String)

              The HTTP header name.

      • ETag — (String)

        The version identifier for the current version of the response headers policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getStreamingDistribution(params = {}, callback) ⇒ AWS.Request

Gets information about a specified RTMP distribution, including the distribution configuration.

Service Reference:

Examples:

Calling the getStreamingDistribution operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getStreamingDistribution(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The streaming distribution's ID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • StreamingDistribution — (map)

        The streaming distribution's information.

        • Idrequired — (String)

          The identifier for the RTMP distribution. For example: EGTXBD79EXAMPLE.

        • ARNrequired — (String)

          The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your Amazon Web Services account ID.

        • Statusrequired — (String)

          The current status of the RTMP distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations.

        • LastModifiedTime — (Date)

          The date and time that the distribution was last modified.

        • DomainNamerequired — (String)

          The domain name that corresponds to the streaming distribution, for example, s5c39gqb8ow64r.cloudfront.net.

        • ActiveTrustedSignersrequired — (map)

          A complex type that lists the Amazon Web Services accounts, if any, that you included in the TrustedSigners complex type for this distribution. These are the accounts that you want to allow to create signed URLs for private content.

          The Signer complex type lists the Amazon Web Services account number of the trusted signer or self if the signer is the Amazon Web Services account that created the distribution. The Signer element also includes the IDs of any active CloudFront key pairs that are associated with the trusted signer's Amazon Web Services account. If no KeyPairId element appears for a Signer, that signer can't create signed URLs.

          For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • StreamingDistributionConfigrequired — (map)

          The current configuration information for the RTMP distribution.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the StreamingDistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • S3Originrequired — (map)

            A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

            • DomainNamerequired — (String)

              The DNS name of the Amazon S3 origin.

            • OriginAccessIdentityrequired — (String)

              The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

              If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

              To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

              To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

              For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • Commentrequired — (String)

            Any comments you want to include about the streaming distribution.

          • Logging — (map)

            A complex type that controls whether access logs are written for the streaming distribution.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket and Prefix, the values are automatically deleted.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • TrustedSignersrequired — (map)

            A complex type that specifies any Amazon Web Services accounts that you want to permit to create signed URLs for private content. If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of Amazon Web Services accounts in the list.

            • Items — (Array<String>)

              A list of Amazon Web Services account identifiers.

          • PriceClass — (String)

            A complex type that contains information about price class for this streaming distribution.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            Whether the streaming distribution is enabled to accept user requests for content.

      • ETag — (String)

        The current version of the streaming distribution's information. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

Waiter Resource States:

getStreamingDistributionConfig(params = {}, callback) ⇒ AWS.Request

Get the configuration information about a streaming distribution.

Service Reference:

Examples:

Calling the getStreamingDistributionConfig operation

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.getStreamingDistributionConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The streaming distribution's ID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • StreamingDistributionConfig — (map)

        The streaming distribution's configuration information.

        • CallerReferencerequired — (String)

          A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

          If the value of CallerReference is new (regardless of the content of the StreamingDistributionConfig object), CloudFront creates a new distribution.

          If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

        • S3Originrequired — (map)

          A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

          • DomainNamerequired — (String)

            The DNS name of the Amazon S3 origin.

          • OriginAccessIdentityrequired — (String)

            The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

            If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

            To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

            To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

            For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.

        • Aliases — (map)

          A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.

          • Quantityrequired — (Integer)

            The number of CNAME aliases, if any, that you want to associate with this distribution.

          • Items — (Array<String>)

            A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

        • Commentrequired — (String)

          Any comments you want to include about the streaming distribution.

        • Logging — (map)

          A complex type that controls whether access logs are written for the streaming distribution.

          • Enabledrequired — (Boolean)

            Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket and Prefix, the values are automatically deleted.

          • Bucketrequired — (String)

            The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

          • Prefixrequired — (String)

            An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

        • TrustedSignersrequired — (map)

          A complex type that specifies any Amazon Web Services accounts that you want to permit to create signed URLs for private content. If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<String>)

            A list of Amazon Web Services account identifiers.

        • PriceClass — (String)

          A complex type that contains information about price class for this streaming distribution.

          Possible values include:
          • "PriceClass_100"
          • "PriceClass_200"
          • "PriceClass_All"
        • Enabledrequired — (Boolean)

          Whether the streaming distribution is enabled to accept user requests for content.

      • ETag — (String)

        The current version of the configuration. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listCachePolicies(params = {}, callback) ⇒ AWS.Request

Gets a list of cache policies.

You can optionally apply a filter to return only the managed policies created by Amazon Web Services, or only the custom policies created in your Amazon Web Services account.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Service Reference:

Examples:

Calling the listCachePolicies operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE',
  Type: managed | custom
};
cloudfront.listCachePolicies(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Type — (String)

      A filter to return only the specified kinds of cache policies. Valid values are:

      • managed – Returns only the managed policies created by Amazon Web Services.

      • custom – Returns only the custom policies created in your Amazon Web Services account.

      Possible values include:
      • "managed"
      • "custom"
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of cache policies. The response includes cache policies in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of cache policies that you want in the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CachePolicyList — (map)

        A list of cache policies.

        • NextMarker — (String)

          If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the Marker field of a subsequent request to continue listing cache policies where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of cache policies requested.

        • Quantityrequired — (Integer)

          The total number of cache policies returned in the response.

        • Items — (Array<map>)

          Contains the cache policies in the list.

          • Typerequired — (String)

            The type of cache policy, either managed (created by Amazon Web Services) or custom (created in this Amazon Web Services account).

            Possible values include:
            • "managed"
            • "custom"
          • CachePolicyrequired — (map)

            The cache policy.

            • Idrequired — (String)

              The unique identifier for the cache policy.

            • LastModifiedTimerequired — (Date)

              The date and time when the cache policy was last modified.

            • CachePolicyConfigrequired — (map)

              The cache policy configuration.

              • Comment — (String)

                A comment to describe the cache policy. The comment cannot be longer than 128 characters.

              • Namerequired — (String)

                A unique name to identify the cache policy.

              • DefaultTTL — (Integer)

                The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object's time to live (TTL) only when the origin does not send Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                The default value for this field is 86400 seconds (one day). If the value of MinTTL is more than 86400 seconds, then the default value for this field is the same as the value of MinTTL.

              • MaxTTL — (Integer)

                The maximum amount of time, in seconds, that objects stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value only when the origin sends Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                The default value for this field is 31536000 seconds (one year). If the value of MinTTL or DefaultTTL is more than 31536000 seconds, then the default value for this field is the same as the value of DefaultTTL.

              • MinTTLrequired — (Integer)

                The minimum amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • ParametersInCacheKeyAndForwardedToOrigin — (map)

                The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are also included in requests that CloudFront sends to the origin.

                • EnableAcceptEncodingGziprequired — (Boolean)

                  A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

                  This field is related to the EnableAcceptEncodingBrotli field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

                  • Normalizes the value of the viewer's Accept-Encoding header

                  • Includes the normalized header in the cache key

                  • Includes the normalized header in the request to the origin, if a request is necessary

                  For more information, see Compression support in the Amazon CloudFront Developer Guide.

                  If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

                  If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

                • EnableAcceptEncodingBrotli — (Boolean)

                  A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

                  This field is related to the EnableAcceptEncodingGzip field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

                  • Normalizes the value of the viewer's Accept-Encoding header

                  • Includes the normalized header in the cache key

                  • Includes the normalized header in the request to the origin, if a request is necessary

                  For more information, see Compression support in the Amazon CloudFront Developer Guide.

                  If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

                  If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

                • HeadersConfigrequired — (map)

                  An 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.

                  • HeaderBehaviorrequired — (String)

                    Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                    • none – No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in an OriginRequestPolicy are included in origin requests.

                    • whitelist – Only the HTTP headers that are listed in the Headers type are included in the cache key and in requests that CloudFront sends to the origin.

                    Possible values include:
                    • "none"
                    • "whitelist"
                  • Headers — (map)

                    Contains a list of HTTP header names.

                    • Quantityrequired — (Integer)

                      The number of header names in the Items list.

                    • Items — (Array<String>)

                      A list of HTTP header names.

                • CookiesConfigrequired — (map)

                  An 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.

                  • CookieBehaviorrequired — (String)

                    Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                    • none – No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in an OriginRequestPolicy are included in origin requests.

                    • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in the cache key and in requests that CloudFront sends to the origin.

                    • allExcept – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except for those that are listed in the CookieNames type, which are not included.

                    • all – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "allExcept"
                    • "all"
                  • Cookies — (map)

                    Contains a list of cookie names.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • QueryStringsConfigrequired — (map)

                  An 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.

                  • QueryStringBehaviorrequired — (String)

                    Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                    • none – No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in an OriginRequestPolicy are included in origin requests.

                    • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in the cache key and in requests that CloudFront sends to the origin.

                    • allExcept – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except those that are listed in the QueryStringNames type, which are not included.

                    • all – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "allExcept"
                    • "all"
                  • QueryStrings — (map)

                    Contains the specific query strings in viewer requests that either are or are not included in the cache key and in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the CachePolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

                    • Quantityrequired — (Integer)

                      The number of query string names in the Items list.

                    • Items — (Array<String>)

                      A list of query string names.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listCloudFrontOriginAccessIdentities(params = {}, callback) ⇒ AWS.Request

Lists origin access identities.

Examples:

Calling the listCloudFrontOriginAccessIdentities operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listCloudFrontOriginAccessIdentities(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this when paginating results to indicate where to begin in your list of origin access identities. The results include identities in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last identity on that page).

    • MaxItems — (String)

      The maximum number of origin access identities you want in the response body.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CloudFrontOriginAccessIdentityList — (map)

        The CloudFrontOriginAccessIdentityList type.

        • Markerrequired — (String)

          Use this when paginating results to indicate where to begin in your list of origin access identities. The results include identities in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last identity on that page).

        • NextMarker — (String)

          If IsTruncated is true, this element is present and contains the value you can use for the Marker request parameter to continue listing your origin access identities where they left off.

        • MaxItemsrequired — (Integer)

          The maximum number of origin access identities you want in the response body.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether more origin access identities remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more items in the list.

        • Quantityrequired — (Integer)

          The number of CloudFront origin access identities that were created by the current Amazon Web Services account.

        • Items — (Array<map>)

          A complex type that contains one CloudFrontOriginAccessIdentitySummary element for each origin access identity that was created by the current Amazon Web Services account.

          • Idrequired — (String)

            The ID for the origin access identity. For example: E74FTE3AJFJ256A.

          • S3CanonicalUserIdrequired — (String)

            The Amazon S3 canonical user ID for the origin access identity, which you use when giving the origin access identity read permission to an object in Amazon S3.

          • Commentrequired — (String)

            The comment for this origin access identity, as originally specified when created.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listConflictingAliases(params = {}, callback) ⇒ AWS.Request

Gets a list of aliases (also called CNAMEs or alternate domain names) that conflict or overlap with the provided alias, and the associated CloudFront distributions and Amazon Web Services accounts for each conflicting alias. In the returned list, the distribution and account IDs are partially hidden, which allows you to identify the distributions and accounts that you own, but helps to protect the information of ones that you don't own.

Use this operation to find aliases that are in use in CloudFront that conflict or overlap with the provided alias. For example, if you provide www.example.com as input, the returned list can include www.example.com and the overlapping wildcard alternate domain name (*.example.com), if they exist. If you provide *.example.com as input, the returned list can include *.example.com and any alternate domain names covered by that wildcard (for example, www.example.com, test.example.com, dev.example.com, and so on), if they exist.

To list conflicting aliases, you provide the alias to search and the ID of a distribution in your account that has an attached SSL/TLS certificate that includes the provided alias. For more information, including how to set up the distribution and certificate, see Moving an alternate domain name to a different distribution in the Amazon CloudFront Developer Guide.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Service Reference:

Examples:

Calling the listConflictingAliases operation

var params = {
  Alias: 'STRING_VALUE', /* required */
  DistributionId: 'STRING_VALUE', /* required */
  Marker: 'STRING_VALUE',
  MaxItems: 'NUMBER_VALUE'
};
cloudfront.listConflictingAliases(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DistributionId — (String)

      The ID of a distribution in your account that has an attached SSL/TLS certificate that includes the provided alias.

    • Alias — (String)

      The alias (also called a CNAME) to search for conflicting aliases.

    • Marker — (String)

      Use this field when paginating results to indicate where to begin in the list of conflicting aliases. The response includes conflicting aliases in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (Integer)

      The maximum number of conflicting aliases that you want in the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ConflictingAliasesList — (map)

        A list of conflicting aliases.

        • NextMarker — (String)

          If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the Marker field of a subsequent request to continue listing conflicting aliases where you left off.

        • MaxItems — (Integer)

          The maximum number of conflicting aliases requested.

        • Quantity — (Integer)

          The number of conflicting aliases returned in the response.

        • Items — (Array<map>)

          Contains the conflicting aliases in the list.

          • Alias — (String)

            An alias (also called a CNAME).

          • DistributionId — (String)

            The (partially hidden) ID of the CloudFront distribution associated with the alias.

          • AccountId — (String)

            The (partially hidden) ID of the Amazon Web Services account that owns the distribution that's associated with the alias.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listContinuousDeploymentPolicies(params = {}, callback) ⇒ AWS.Request

Gets a list of the continuous deployment policies in your Amazon Web Services account.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Examples:

Calling the listContinuousDeploymentPolicies operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listContinuousDeploymentPolicies(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of continuous deployment policies. The response includes policies in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of continuous deployment policies that you want returned in the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ContinuousDeploymentPolicyList — (map)

        A list of continuous deployment policies.

        • NextMarker — (String)

          Indicates the next page of continuous deployment policies. To get the next page of the list, use this value in the Marker field of your request.

        • MaxItemsrequired — (Integer)

          The maximum number of continuous deployment policies that were specified in your request.

        • Quantityrequired — (Integer)

          The total number of continuous deployment policies in your Amazon Web Services account, regardless of the MaxItems value.

        • Items — (Array<map>)

          A list of continuous deployment policy items.

          • ContinuousDeploymentPolicyrequired — (map)

            The continuous deployment policy.

            • Idrequired — (String)

              The identifier of the continuous deployment policy.

            • LastModifiedTimerequired — (Date)

              The date and time the continuous deployment policy was last modified.

            • ContinuousDeploymentPolicyConfigrequired — (map)

              Contains the configuration for a continuous deployment policy.

              • StagingDistributionDnsNamesrequired — (map)

                The CloudFront domain name of the staging distribution. For example: d111111abcdef8.cloudfront.net.

                • Quantityrequired — (Integer)

                  The number of CloudFront domain names in your staging distribution.

                • Items — (Array<String>)

                  The CloudFront domain name of the staging distribution.

              • Enabledrequired — (Boolean)

                A Boolean that indicates whether this continuous deployment policy is enabled (in effect). When this value is true, this policy is enabled and in effect. When this value is false, this policy is not enabled and has no effect.

              • TrafficConfig — (map)

                Contains the parameters for routing production traffic from your primary to staging distributions.

                • SingleWeightConfig — (map)

                  Contains the percentage of traffic to send to the staging distribution.

                  • Weightrequired — (Float)

                    The percentage of traffic to send to a staging distribution, expressed as a decimal number between 0 and .15.

                  • SessionStickinessConfig — (map)

                    Session stickiness provides the ability to define multiple requests from a single viewer as a single session. This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.

                    • IdleTTLrequired — (Integer)

                      The amount of time after which you want sessions to cease if no requests are received. Allowed values are 300–3600 seconds (5–60 minutes).

                      The value must be less than or equal to MaximumTTL.

                    • MaximumTTLrequired — (Integer)

                      The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes).

                      The value must be less than or equal to IdleTTL.

                • SingleHeaderConfig — (map)

                  Determines which HTTP requests are sent to the staging distribution.

                  • Headerrequired — (String)

                    The request header name that you want CloudFront to send to your staging distribution. The header must contain the prefix aws-cf-cd-.

                  • Valuerequired — (String)

                    The request header value.

                • Typerequired — (String)

                  The type of traffic configuration.

                  Possible values include:
                  • "SingleWeight"
                  • "SingleHeader"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listDistributions(params = {}, callback) ⇒ AWS.Request

List CloudFront distributions.

Service Reference:

Examples:

Calling the listDistributions operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listDistributions(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this when paginating results to indicate where to begin in your list of distributions. The results include distributions in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last distribution on that page).

    • MaxItems — (String)

      The maximum number of distributions you want in the response body.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DistributionList — (map)

        The DistributionList type.

        • Markerrequired — (String)

          The value you provided for the Marker request parameter.

        • NextMarker — (String)

          If IsTruncated is true, this element is present and contains the value you can use for the Marker request parameter to continue listing your distributions where they left off.

        • MaxItemsrequired — (Integer)

          The value you provided for the MaxItems request parameter.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether more distributions remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more distributions in the list.

        • Quantityrequired — (Integer)

          The number of distributions that were created by the current Amazon Web Services account.

        • Items — (Array<map>)

          A complex type that contains one DistributionSummary element for each distribution that was created by the current Amazon Web Services account.

          • Idrequired — (String)

            The identifier for the distribution. For example: EDFDVBD632BHDS5.

          • ARNrequired — (String)

            The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your Amazon Web Services account ID.

          • Statusrequired — (String)

            The current status of the distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations.

          • LastModifiedTimerequired — (Date)

            The date and time the distribution was last modified.

          • DomainNamerequired — (String)

            The domain name that corresponds to the distribution, for example, d111111abcdef8.cloudfront.net.

          • Aliasesrequired — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • Originsrequired — (map)

            A complex type that contains information about origins for this distribution.

            • Quantityrequired — (Integer)

              The number of origins for this distribution.

            • Itemsrequired — (Array<map>)

              A list of origins.

              • Idrequired — (String)

                A unique identifier for the origin. This value must be unique within the distribution.

                Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

              • DomainNamerequired — (String)

                The domain name for the origin.

                For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

              • OriginPath — (String)

                An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

                For more information, see Origin Path in the Amazon CloudFront Developer Guide.

              • CustomHeaders — (map)

                A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

                For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of custom headers, if any, for this distribution.

                • Items — (Array<map>)

                  Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                  • HeaderNamerequired — (String)

                    The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                  • HeaderValuerequired — (String)

                    The value for the header that you specified in the HeaderName field.

              • S3OriginConfig — (map)

                Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

                • OriginAccessIdentityrequired — (String)

                  The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                  origin-access-identity/cloudfront/ID-of-origin-access-identity

                  where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                  For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

              • CustomOriginConfig — (map)

                Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

                • HTTPPortrequired — (Integer)

                  The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

                • HTTPSPortrequired — (Integer)

                  The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

                • OriginProtocolPolicyrequired — (String)

                  Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                  • http-only – CloudFront always uses HTTP to connect to the origin.

                  • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                  • https-only – CloudFront always uses HTTPS to connect to the origin.

                  Possible values include:
                  • "http-only"
                  • "match-viewer"
                  • "https-only"
                • OriginSslProtocols — (map)

                  Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                  For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                  • Itemsrequired — (Array<String>)

                    A list that contains allowed SSL/TLS protocols for this distribution.

                • OriginReadTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                  For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

                • OriginKeepaliveTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                  For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

              • ConnectionAttempts — (Integer)

                The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

                For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

                For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

              • ConnectionTimeout — (Integer)

                The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

                For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

              • OriginShield — (map)

                CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

                For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  A flag that specifies whether Origin Shield is enabled.

                  When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

                • OriginShieldRegion — (String)

                  The Amazon Web Services Region for Origin Shield.

                  Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                  When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

              • OriginAccessControlId — (String)

                The unique identifier of an origin access control for this origin.

                For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

          • OriginGroups — (map)

            A complex type that contains information about origin groups for this distribution.

            • Quantityrequired — (Integer)

              The number of origin groups.

            • Items — (Array<map>)

              The items (origin groups) in a distribution.

              • Idrequired — (String)

                The origin group's ID.

              • FailoverCriteriarequired — (map)

                A complex type that contains information about the failover criteria for an origin group.

                • StatusCodesrequired — (map)

                  The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                  • Quantityrequired — (Integer)

                    The number of status codes.

                  • Itemsrequired — (Array<Integer>)

                    The items (status codes) for an origin group.

              • Membersrequired — (map)

                A complex type that contains information about the origins in an origin group.

                • Quantityrequired — (Integer)

                  The number of origins in an origin group.

                • Itemsrequired — (Array<map>)

                  Items (origins) in an origin group.

                  • OriginIdrequired — (String)

                    The ID for an origin in an origin group.

          • DefaultCacheBehaviorrequired — (map)

            A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CacheBehaviorsrequired — (map)

            A complex type that contains zero or more CacheBehavior elements.

            • Quantityrequired — (Integer)

              The number of cache behaviors for this distribution.

            • Items — (Array<map>)

              Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

              • PathPatternrequired — (String)

                The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

                Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

                The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

                For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

              • TargetOriginIdrequired — (String)

                The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

              • TrustedSigners — (map)

                We recommend using TrustedKeyGroups instead of TrustedSigners.

                A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of Amazon Web Services accounts in the list.

                • Items — (Array<String>)

                  A list of Amazon Web Services account identifiers.

              • TrustedKeyGroups — (map)

                A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of key groups in the list.

                • Items — (Array<String>)

                  A list of key groups identifiers.

              • ViewerProtocolPolicyrequired — (String)

                The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

                • allow-all: Viewers can use HTTP or HTTPS.

                • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

                • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

                For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

                Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
                Possible values include:
                • "allow-all"
                • "https-only"
                • "redirect-to-https"
              • AllowedMethods — (map)

                A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

                • CloudFront forwards only GET and HEAD requests.

                • CloudFront forwards only GET, HEAD, and OPTIONS requests.

                • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

                If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

                • Quantityrequired — (Integer)

                  The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

                • CachedMethods — (map)

                  A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                  • CloudFront caches responses to GET and HEAD requests.

                  • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                  If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                  • Itemsrequired — (Array<String>)

                    A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

              • SmoothStreaming — (Boolean)

                Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

              • Compress — (Boolean)

                Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

              • LambdaFunctionAssociations — (map)

                A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

                • Quantityrequired — (Integer)

                  The number of Lambda@Edge function associations for this cache behavior.

                • Items — (Array<map>)

                  Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                  • LambdaFunctionARNrequired — (String)

                    The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                  • EventTyperequired — (String)

                    Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                    • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                    • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                    • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                    • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                      If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
                  • IncludeBody — (Boolean)

                    A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

              • FunctionAssociations — (map)

                A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • Quantityrequired — (Integer)

                  The number of CloudFront functions in the list.

                • Items — (Array<map>)

                  The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                  • FunctionARNrequired — (String)

                    The Amazon Resource Name (ARN) of the function.

                  • EventTyperequired — (String)

                    The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
              • FieldLevelEncryptionId — (String)

                The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

              • RealtimeLogConfigArn — (String)

                The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

              • CachePolicyId — (String)

                The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              • OriginRequestPolicyId — (String)

                The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              • ResponseHeadersPolicyId — (String)

                The identifier for a response headers policy.

              • ForwardedValues — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

                If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

                A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

                • QueryStringrequired — (Boolean)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                  If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                  If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                  If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                  For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

                • Cookiesrequired — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                  • Forwardrequired — (String)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                    Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "all"
                  • WhitelistedNames — (map)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                    If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                    For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • Headers — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                  For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

                • QueryStringCacheKeys — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                  • Quantityrequired — (Integer)

                    The number of whitelisted query string parameters for a cache behavior.

                  • Items — (Array<String>)

                    A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

              • MinTTL — (Integer)

                This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

              • DefaultTTL — (Integer)

                This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • MaxTTL — (Integer)

                This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CustomErrorResponsesrequired — (map)

            A complex type that contains zero or more CustomErrorResponses elements.

            • Quantityrequired — (Integer)

              The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

            • Items — (Array<map>)

              A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ErrorCoderequired — (Integer)

                The HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ResponsePagePath — (String)

                The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

                • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

                • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

                If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

                We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

              • ResponseCode — (String)

                The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

                • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

                • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

                • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

                If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

              • ErrorCachingMinTTL — (Integer)

                The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

                For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Commentrequired — (String)

            The comment originally specified when this distribution was created.

          • PriceClassrequired — (String)

            A complex type that contains information about price class for this streaming distribution.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            Whether the distribution is enabled to accept user requests for content.

          • ViewerCertificaterequired — (map)

            A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

            • CloudFrontDefaultCertificate — (Boolean)

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

              If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

              • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

              • MinimumProtocolVersion

              • SSLSupportMethod

            • IAMCertificateId — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

              If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • ACMCertificateArn — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

              If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • SSLSupportMethod — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

              • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

              • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

              • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

              Possible values include:
              • "sni-only"
              • "vip"
              • "static-ip"
            • MinimumProtocolVersion — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

              • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

              • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

              For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: On the CloudFront console, this setting is called Security Policy.

              When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

              Possible values include:
              • "SSLv3"
              • "TLSv1"
              • "TLSv1_2016"
              • "TLSv1.1_2016"
              • "TLSv1.2_2018"
              • "TLSv1.2_2019"
              • "TLSv1.2_2021"
            • Certificate — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

            • CertificateSource — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

              Possible values include:
              • "cloudfront"
              • "iam"
              • "acm"
          • Restrictionsrequired — (map)

            A complex type that identifies ways in which you want to restrict distribution of your content.

            • GeoRestrictionrequired — (map)

              A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

              • RestrictionTyperequired — (String)

                The method that you want to use to restrict distribution of your content by country:

                • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

                • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

                • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

                Possible values include:
                • "blacklist"
                • "whitelist"
                • "none"
              • Quantityrequired — (Integer)

                When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

              • Items — (Array<String>)

                A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

                The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

                CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

          • WebACLIdrequired — (String)

            The Web ACL Id (if any) associated with the distribution.

          • HttpVersionrequired — (String)

            Specify the maximum HTTP version that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 will automatically use an earlier version.

            Possible values include:
            • "http1.1"
            • "http2"
            • "http3"
            • "http2and3"
          • IsIPV6Enabledrequired — (Boolean)

            Whether CloudFront responds to IPv6 DNS requests with an IPv6 address for your distribution.

          • AliasICPRecordals — (Array<map>)

            Amazon Web Services services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

            For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with Amazon Web Services services in China.

            • CNAME — (String)

              A domain name associated with a distribution.

            • ICPRecordalStatus — (String)

              The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China.

              The status values returned are the following:

              • APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it.

              • SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number.

              • PENDING indicates that CloudFront can't determine the ICP recordal status of the CNAME associated with the distribution because there was an error in trying to determine the status. You can try again to see if the error is resolved in which case CloudFront returns an APPROVED or SUSPENDED status.

              Possible values include:
              • "APPROVED"
              • "SUSPENDED"
              • "PENDING"
          • Stagingrequired — (Boolean)

            Whether the primary distribution has a staging distribution enabled.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listDistributionsByCachePolicyId(params = {}, callback) ⇒ AWS.Request

Gets a list of distribution IDs for distributions that have a cache behavior that's associated with the specified cache policy.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Examples:

Calling the listDistributionsByCachePolicyId operation

var params = {
  CachePolicyId: 'STRING_VALUE', /* required */
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listDistributionsByCachePolicyId(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of distribution IDs. The response includes distribution IDs in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of distribution IDs that you want in the response.

    • CachePolicyId — (String)

      The ID of the cache policy whose associated distribution IDs you want to list.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DistributionIdList — (map)

        A list of distribution IDs.

        • Markerrequired — (String)

          The value provided in the Marker request field.

        • NextMarker — (String)

          Contains the value that you should use in the Marker field of a subsequent request to continue listing distribution IDs where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of distribution IDs requested.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether more distribution IDs remain to be listed. If your results were truncated, you can make a subsequent request using the Marker request field to retrieve more distribution IDs in the list.

        • Quantityrequired — (Integer)

          The total number of distribution IDs returned in the response.

        • Items — (Array<String>)

          Contains the distribution IDs in the list.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listDistributionsByKeyGroup(params = {}, callback) ⇒ AWS.Request

Gets a list of distribution IDs for distributions that have a cache behavior that references the specified key group.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Service Reference:

Examples:

Calling the listDistributionsByKeyGroup operation

var params = {
  KeyGroupId: 'STRING_VALUE', /* required */
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listDistributionsByKeyGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of distribution IDs. The response includes distribution IDs in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of distribution IDs that you want in the response.

    • KeyGroupId — (String)

      The ID of the key group whose associated distribution IDs you are listing.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DistributionIdList — (map)

        A list of distribution IDs.

        • Markerrequired — (String)

          The value provided in the Marker request field.

        • NextMarker — (String)

          Contains the value that you should use in the Marker field of a subsequent request to continue listing distribution IDs where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of distribution IDs requested.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether more distribution IDs remain to be listed. If your results were truncated, you can make a subsequent request using the Marker request field to retrieve more distribution IDs in the list.

        • Quantityrequired — (Integer)

          The total number of distribution IDs returned in the response.

        • Items — (Array<String>)

          Contains the distribution IDs in the list.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listDistributionsByOriginRequestPolicyId(params = {}, callback) ⇒ AWS.Request

Gets a list of distribution IDs for distributions that have a cache behavior that's associated with the specified origin request policy.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Examples:

Calling the listDistributionsByOriginRequestPolicyId operation

var params = {
  OriginRequestPolicyId: 'STRING_VALUE', /* required */
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listDistributionsByOriginRequestPolicyId(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of distribution IDs. The response includes distribution IDs in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of distribution IDs that you want in the response.

    • OriginRequestPolicyId — (String)

      The ID of the origin request policy whose associated distribution IDs you want to list.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DistributionIdList — (map)

        A list of distribution IDs.

        • Markerrequired — (String)

          The value provided in the Marker request field.

        • NextMarker — (String)

          Contains the value that you should use in the Marker field of a subsequent request to continue listing distribution IDs where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of distribution IDs requested.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether more distribution IDs remain to be listed. If your results were truncated, you can make a subsequent request using the Marker request field to retrieve more distribution IDs in the list.

        • Quantityrequired — (Integer)

          The total number of distribution IDs returned in the response.

        • Items — (Array<String>)

          Contains the distribution IDs in the list.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listDistributionsByRealtimeLogConfig(params = {}, callback) ⇒ AWS.Request

Gets a list of distributions that have a cache behavior that's associated with the specified real-time log configuration.

You can specify the real-time log configuration by its name or its Amazon Resource Name (ARN). You must provide at least one. If you provide both, CloudFront uses the name to identify the real-time log configuration to list distributions for.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Examples:

Calling the listDistributionsByRealtimeLogConfig operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE',
  RealtimeLogConfigArn: 'STRING_VALUE',
  RealtimeLogConfigName: 'STRING_VALUE'
};
cloudfront.listDistributionsByRealtimeLogConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of distributions. The response includes distributions in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of distributions that you want in the response.

    • RealtimeLogConfigName — (String)

      The name of the real-time log configuration whose associated distributions you want to list.

    • RealtimeLogConfigArn — (String)

      The Amazon Resource Name (ARN) of the real-time log configuration whose associated distributions you want to list.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DistributionList — (map)

        A distribution list.

        • Markerrequired — (String)

          The value you provided for the Marker request parameter.

        • NextMarker — (String)

          If IsTruncated is true, this element is present and contains the value you can use for the Marker request parameter to continue listing your distributions where they left off.

        • MaxItemsrequired — (Integer)

          The value you provided for the MaxItems request parameter.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether more distributions remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more distributions in the list.

        • Quantityrequired — (Integer)

          The number of distributions that were created by the current Amazon Web Services account.

        • Items — (Array<map>)

          A complex type that contains one DistributionSummary element for each distribution that was created by the current Amazon Web Services account.

          • Idrequired — (String)

            The identifier for the distribution. For example: EDFDVBD632BHDS5.

          • ARNrequired — (String)

            The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your Amazon Web Services account ID.

          • Statusrequired — (String)

            The current status of the distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations.

          • LastModifiedTimerequired — (Date)

            The date and time the distribution was last modified.

          • DomainNamerequired — (String)

            The domain name that corresponds to the distribution, for example, d111111abcdef8.cloudfront.net.

          • Aliasesrequired — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • Originsrequired — (map)

            A complex type that contains information about origins for this distribution.

            • Quantityrequired — (Integer)

              The number of origins for this distribution.

            • Itemsrequired — (Array<map>)

              A list of origins.

              • Idrequired — (String)

                A unique identifier for the origin. This value must be unique within the distribution.

                Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

              • DomainNamerequired — (String)

                The domain name for the origin.

                For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

              • OriginPath — (String)

                An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

                For more information, see Origin Path in the Amazon CloudFront Developer Guide.

              • CustomHeaders — (map)

                A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

                For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of custom headers, if any, for this distribution.

                • Items — (Array<map>)

                  Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                  • HeaderNamerequired — (String)

                    The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                  • HeaderValuerequired — (String)

                    The value for the header that you specified in the HeaderName field.

              • S3OriginConfig — (map)

                Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

                • OriginAccessIdentityrequired — (String)

                  The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                  origin-access-identity/cloudfront/ID-of-origin-access-identity

                  where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                  For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

              • CustomOriginConfig — (map)

                Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

                • HTTPPortrequired — (Integer)

                  The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

                • HTTPSPortrequired — (Integer)

                  The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

                • OriginProtocolPolicyrequired — (String)

                  Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                  • http-only – CloudFront always uses HTTP to connect to the origin.

                  • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                  • https-only – CloudFront always uses HTTPS to connect to the origin.

                  Possible values include:
                  • "http-only"
                  • "match-viewer"
                  • "https-only"
                • OriginSslProtocols — (map)

                  Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                  For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                  • Itemsrequired — (Array<String>)

                    A list that contains allowed SSL/TLS protocols for this distribution.

                • OriginReadTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                  For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

                • OriginKeepaliveTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                  For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

              • ConnectionAttempts — (Integer)

                The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

                For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

                For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

              • ConnectionTimeout — (Integer)

                The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

                For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

              • OriginShield — (map)

                CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

                For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  A flag that specifies whether Origin Shield is enabled.

                  When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

                • OriginShieldRegion — (String)

                  The Amazon Web Services Region for Origin Shield.

                  Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                  When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

              • OriginAccessControlId — (String)

                The unique identifier of an origin access control for this origin.

                For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

          • OriginGroups — (map)

            A complex type that contains information about origin groups for this distribution.

            • Quantityrequired — (Integer)

              The number of origin groups.

            • Items — (Array<map>)

              The items (origin groups) in a distribution.

              • Idrequired — (String)

                The origin group's ID.

              • FailoverCriteriarequired — (map)

                A complex type that contains information about the failover criteria for an origin group.

                • StatusCodesrequired — (map)

                  The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                  • Quantityrequired — (Integer)

                    The number of status codes.

                  • Itemsrequired — (Array<Integer>)

                    The items (status codes) for an origin group.

              • Membersrequired — (map)

                A complex type that contains information about the origins in an origin group.

                • Quantityrequired — (Integer)

                  The number of origins in an origin group.

                • Itemsrequired — (Array<map>)

                  Items (origins) in an origin group.

                  • OriginIdrequired — (String)

                    The ID for an origin in an origin group.

          • DefaultCacheBehaviorrequired — (map)

            A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CacheBehaviorsrequired — (map)

            A complex type that contains zero or more CacheBehavior elements.

            • Quantityrequired — (Integer)

              The number of cache behaviors for this distribution.

            • Items — (Array<map>)

              Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

              • PathPatternrequired — (String)

                The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

                Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

                The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

                For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

              • TargetOriginIdrequired — (String)

                The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

              • TrustedSigners — (map)

                We recommend using TrustedKeyGroups instead of TrustedSigners.

                A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of Amazon Web Services accounts in the list.

                • Items — (Array<String>)

                  A list of Amazon Web Services account identifiers.

              • TrustedKeyGroups — (map)

                A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of key groups in the list.

                • Items — (Array<String>)

                  A list of key groups identifiers.

              • ViewerProtocolPolicyrequired — (String)

                The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

                • allow-all: Viewers can use HTTP or HTTPS.

                • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

                • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

                For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

                Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
                Possible values include:
                • "allow-all"
                • "https-only"
                • "redirect-to-https"
              • AllowedMethods — (map)

                A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

                • CloudFront forwards only GET and HEAD requests.

                • CloudFront forwards only GET, HEAD, and OPTIONS requests.

                • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

                If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

                • Quantityrequired — (Integer)

                  The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

                • CachedMethods — (map)

                  A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                  • CloudFront caches responses to GET and HEAD requests.

                  • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                  If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                  • Itemsrequired — (Array<String>)

                    A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

              • SmoothStreaming — (Boolean)

                Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

              • Compress — (Boolean)

                Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

              • LambdaFunctionAssociations — (map)

                A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

                • Quantityrequired — (Integer)

                  The number of Lambda@Edge function associations for this cache behavior.

                • Items — (Array<map>)

                  Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                  • LambdaFunctionARNrequired — (String)

                    The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                  • EventTyperequired — (String)

                    Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                    • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                    • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                    • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                    • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                      If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
                  • IncludeBody — (Boolean)

                    A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

              • FunctionAssociations — (map)

                A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • Quantityrequired — (Integer)

                  The number of CloudFront functions in the list.

                • Items — (Array<map>)

                  The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                  • FunctionARNrequired — (String)

                    The Amazon Resource Name (ARN) of the function.

                  • EventTyperequired — (String)

                    The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
              • FieldLevelEncryptionId — (String)

                The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

              • RealtimeLogConfigArn — (String)

                The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

              • CachePolicyId — (String)

                The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              • OriginRequestPolicyId — (String)

                The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              • ResponseHeadersPolicyId — (String)

                The identifier for a response headers policy.

              • ForwardedValues — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

                If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

                A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

                • QueryStringrequired — (Boolean)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                  If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                  If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                  If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                  For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

                • Cookiesrequired — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                  • Forwardrequired — (String)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                    Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "all"
                  • WhitelistedNames — (map)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                    If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                    For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • Headers — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                  For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

                • QueryStringCacheKeys — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                  • Quantityrequired — (Integer)

                    The number of whitelisted query string parameters for a cache behavior.

                  • Items — (Array<String>)

                    A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

              • MinTTL — (Integer)

                This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

              • DefaultTTL — (Integer)

                This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • MaxTTL — (Integer)

                This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CustomErrorResponsesrequired — (map)

            A complex type that contains zero or more CustomErrorResponses elements.

            • Quantityrequired — (Integer)

              The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

            • Items — (Array<map>)

              A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ErrorCoderequired — (Integer)

                The HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ResponsePagePath — (String)

                The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

                • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

                • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

                If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

                We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

              • ResponseCode — (String)

                The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

                • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

                • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

                • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

                If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

              • ErrorCachingMinTTL — (Integer)

                The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

                For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Commentrequired — (String)

            The comment originally specified when this distribution was created.

          • PriceClassrequired — (String)

            A complex type that contains information about price class for this streaming distribution.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            Whether the distribution is enabled to accept user requests for content.

          • ViewerCertificaterequired — (map)

            A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

            • CloudFrontDefaultCertificate — (Boolean)

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

              If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

              • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

              • MinimumProtocolVersion

              • SSLSupportMethod

            • IAMCertificateId — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

              If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • ACMCertificateArn — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

              If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • SSLSupportMethod — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

              • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

              • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

              • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

              Possible values include:
              • "sni-only"
              • "vip"
              • "static-ip"
            • MinimumProtocolVersion — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

              • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

              • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

              For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: On the CloudFront console, this setting is called Security Policy.

              When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

              Possible values include:
              • "SSLv3"
              • "TLSv1"
              • "TLSv1_2016"
              • "TLSv1.1_2016"
              • "TLSv1.2_2018"
              • "TLSv1.2_2019"
              • "TLSv1.2_2021"
            • Certificate — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

            • CertificateSource — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

              Possible values include:
              • "cloudfront"
              • "iam"
              • "acm"
          • Restrictionsrequired — (map)

            A complex type that identifies ways in which you want to restrict distribution of your content.

            • GeoRestrictionrequired — (map)

              A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

              • RestrictionTyperequired — (String)

                The method that you want to use to restrict distribution of your content by country:

                • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

                • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

                • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

                Possible values include:
                • "blacklist"
                • "whitelist"
                • "none"
              • Quantityrequired — (Integer)

                When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

              • Items — (Array<String>)

                A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

                The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

                CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

          • WebACLIdrequired — (String)

            The Web ACL Id (if any) associated with the distribution.

          • HttpVersionrequired — (String)

            Specify the maximum HTTP version that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 will automatically use an earlier version.

            Possible values include:
            • "http1.1"
            • "http2"
            • "http3"
            • "http2and3"
          • IsIPV6Enabledrequired — (Boolean)

            Whether CloudFront responds to IPv6 DNS requests with an IPv6 address for your distribution.

          • AliasICPRecordals — (Array<map>)

            Amazon Web Services services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

            For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with Amazon Web Services services in China.

            • CNAME — (String)

              A domain name associated with a distribution.

            • ICPRecordalStatus — (String)

              The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China.

              The status values returned are the following:

              • APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it.

              • SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number.

              • PENDING indicates that CloudFront can't determine the ICP recordal status of the CNAME associated with the distribution because there was an error in trying to determine the status. You can try again to see if the error is resolved in which case CloudFront returns an APPROVED or SUSPENDED status.

              Possible values include:
              • "APPROVED"
              • "SUSPENDED"
              • "PENDING"
          • Stagingrequired — (Boolean)

            Whether the primary distribution has a staging distribution enabled.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listDistributionsByResponseHeadersPolicyId(params = {}, callback) ⇒ AWS.Request

Gets a list of distribution IDs for distributions that have a cache behavior that's associated with the specified response headers policy.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Examples:

Calling the listDistributionsByResponseHeadersPolicyId operation

var params = {
  ResponseHeadersPolicyId: 'STRING_VALUE', /* required */
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listDistributionsByResponseHeadersPolicyId(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of distribution IDs. The response includes distribution IDs in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of distribution IDs that you want to get in the response.

    • ResponseHeadersPolicyId — (String)

      The ID of the response headers policy whose associated distribution IDs you want to list.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DistributionIdList — (map)

        A list of distribution IDs.

        • Markerrequired — (String)

          The value provided in the Marker request field.

        • NextMarker — (String)

          Contains the value that you should use in the Marker field of a subsequent request to continue listing distribution IDs where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of distribution IDs requested.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether more distribution IDs remain to be listed. If your results were truncated, you can make a subsequent request using the Marker request field to retrieve more distribution IDs in the list.

        • Quantityrequired — (Integer)

          The total number of distribution IDs returned in the response.

        • Items — (Array<String>)

          Contains the distribution IDs in the list.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listDistributionsByWebACLId(params = {}, callback) ⇒ AWS.Request

List the distributions that are associated with a specified WAF web ACL.

Service Reference:

Examples:

Calling the listDistributionsByWebACLId operation

var params = {
  WebACLId: 'STRING_VALUE', /* required */
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listDistributionsByWebACLId(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use Marker and MaxItems to control pagination of results. If you have more than MaxItems distributions that satisfy the request, the response includes a NextMarker element. To get the next page of results, submit another request. For the value of Marker, specify the value of NextMarker from the last response. (For the first request, omit Marker.)

    • MaxItems — (String)

      The maximum number of distributions that you want CloudFront to return in the response body. The maximum and default values are both 100.

    • WebACLId — (String)

      The ID of the WAF web ACL that you want to list the associated distributions. If you specify "null" for the ID, the request returns a list of the distributions that aren't associated with a web ACL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DistributionList — (map)

        The DistributionList type.

        • Markerrequired — (String)

          The value you provided for the Marker request parameter.

        • NextMarker — (String)

          If IsTruncated is true, this element is present and contains the value you can use for the Marker request parameter to continue listing your distributions where they left off.

        • MaxItemsrequired — (Integer)

          The value you provided for the MaxItems request parameter.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether more distributions remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more distributions in the list.

        • Quantityrequired — (Integer)

          The number of distributions that were created by the current Amazon Web Services account.

        • Items — (Array<map>)

          A complex type that contains one DistributionSummary element for each distribution that was created by the current Amazon Web Services account.

          • Idrequired — (String)

            The identifier for the distribution. For example: EDFDVBD632BHDS5.

          • ARNrequired — (String)

            The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your Amazon Web Services account ID.

          • Statusrequired — (String)

            The current status of the distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations.

          • LastModifiedTimerequired — (Date)

            The date and time the distribution was last modified.

          • DomainNamerequired — (String)

            The domain name that corresponds to the distribution, for example, d111111abcdef8.cloudfront.net.

          • Aliasesrequired — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • Originsrequired — (map)

            A complex type that contains information about origins for this distribution.

            • Quantityrequired — (Integer)

              The number of origins for this distribution.

            • Itemsrequired — (Array<map>)

              A list of origins.

              • Idrequired — (String)

                A unique identifier for the origin. This value must be unique within the distribution.

                Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

              • DomainNamerequired — (String)

                The domain name for the origin.

                For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

              • OriginPath — (String)

                An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

                For more information, see Origin Path in the Amazon CloudFront Developer Guide.

              • CustomHeaders — (map)

                A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

                For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of custom headers, if any, for this distribution.

                • Items — (Array<map>)

                  Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                  • HeaderNamerequired — (String)

                    The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                  • HeaderValuerequired — (String)

                    The value for the header that you specified in the HeaderName field.

              • S3OriginConfig — (map)

                Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

                • OriginAccessIdentityrequired — (String)

                  The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                  origin-access-identity/cloudfront/ID-of-origin-access-identity

                  where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                  For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

              • CustomOriginConfig — (map)

                Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

                • HTTPPortrequired — (Integer)

                  The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

                • HTTPSPortrequired — (Integer)

                  The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

                • OriginProtocolPolicyrequired — (String)

                  Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                  • http-only – CloudFront always uses HTTP to connect to the origin.

                  • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                  • https-only – CloudFront always uses HTTPS to connect to the origin.

                  Possible values include:
                  • "http-only"
                  • "match-viewer"
                  • "https-only"
                • OriginSslProtocols — (map)

                  Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                  For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                  • Itemsrequired — (Array<String>)

                    A list that contains allowed SSL/TLS protocols for this distribution.

                • OriginReadTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                  For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

                • OriginKeepaliveTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                  For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

              • ConnectionAttempts — (Integer)

                The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

                For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

                For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

              • ConnectionTimeout — (Integer)

                The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

                For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

              • OriginShield — (map)

                CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

                For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  A flag that specifies whether Origin Shield is enabled.

                  When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

                • OriginShieldRegion — (String)

                  The Amazon Web Services Region for Origin Shield.

                  Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                  When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

              • OriginAccessControlId — (String)

                The unique identifier of an origin access control for this origin.

                For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

          • OriginGroups — (map)

            A complex type that contains information about origin groups for this distribution.

            • Quantityrequired — (Integer)

              The number of origin groups.

            • Items — (Array<map>)

              The items (origin groups) in a distribution.

              • Idrequired — (String)

                The origin group's ID.

              • FailoverCriteriarequired — (map)

                A complex type that contains information about the failover criteria for an origin group.

                • StatusCodesrequired — (map)

                  The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                  • Quantityrequired — (Integer)

                    The number of status codes.

                  • Itemsrequired — (Array<Integer>)

                    The items (status codes) for an origin group.

              • Membersrequired — (map)

                A complex type that contains information about the origins in an origin group.

                • Quantityrequired — (Integer)

                  The number of origins in an origin group.

                • Itemsrequired — (Array<map>)

                  Items (origins) in an origin group.

                  • OriginIdrequired — (String)

                    The ID for an origin in an origin group.

          • DefaultCacheBehaviorrequired — (map)

            A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CacheBehaviorsrequired — (map)

            A complex type that contains zero or more CacheBehavior elements.

            • Quantityrequired — (Integer)

              The number of cache behaviors for this distribution.

            • Items — (Array<map>)

              Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

              • PathPatternrequired — (String)

                The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

                Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

                The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

                For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

              • TargetOriginIdrequired — (String)

                The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

              • TrustedSigners — (map)

                We recommend using TrustedKeyGroups instead of TrustedSigners.

                A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of Amazon Web Services accounts in the list.

                • Items — (Array<String>)

                  A list of Amazon Web Services account identifiers.

              • TrustedKeyGroups — (map)

                A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of key groups in the list.

                • Items — (Array<String>)

                  A list of key groups identifiers.

              • ViewerProtocolPolicyrequired — (String)

                The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

                • allow-all: Viewers can use HTTP or HTTPS.

                • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

                • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

                For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

                Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
                Possible values include:
                • "allow-all"
                • "https-only"
                • "redirect-to-https"
              • AllowedMethods — (map)

                A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

                • CloudFront forwards only GET and HEAD requests.

                • CloudFront forwards only GET, HEAD, and OPTIONS requests.

                • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

                If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

                • Quantityrequired — (Integer)

                  The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

                • CachedMethods — (map)

                  A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                  • CloudFront caches responses to GET and HEAD requests.

                  • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                  If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                  • Itemsrequired — (Array<String>)

                    A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

              • SmoothStreaming — (Boolean)

                Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

              • Compress — (Boolean)

                Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

              • LambdaFunctionAssociations — (map)

                A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

                • Quantityrequired — (Integer)

                  The number of Lambda@Edge function associations for this cache behavior.

                • Items — (Array<map>)

                  Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                  • LambdaFunctionARNrequired — (String)

                    The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                  • EventTyperequired — (String)

                    Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                    • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                    • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                    • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                    • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                      If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
                  • IncludeBody — (Boolean)

                    A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

              • FunctionAssociations — (map)

                A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • Quantityrequired — (Integer)

                  The number of CloudFront functions in the list.

                • Items — (Array<map>)

                  The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                  • FunctionARNrequired — (String)

                    The Amazon Resource Name (ARN) of the function.

                  • EventTyperequired — (String)

                    The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
              • FieldLevelEncryptionId — (String)

                The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

              • RealtimeLogConfigArn — (String)

                The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

              • CachePolicyId — (String)

                The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              • OriginRequestPolicyId — (String)

                The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              • ResponseHeadersPolicyId — (String)

                The identifier for a response headers policy.

              • ForwardedValues — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

                If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

                A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

                • QueryStringrequired — (Boolean)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                  If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                  If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                  If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                  For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

                • Cookiesrequired — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                  • Forwardrequired — (String)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                    Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "all"
                  • WhitelistedNames — (map)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                    If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                    For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • Headers — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                  For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

                • QueryStringCacheKeys — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                  • Quantityrequired — (Integer)

                    The number of whitelisted query string parameters for a cache behavior.

                  • Items — (Array<String>)

                    A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

              • MinTTL — (Integer)

                This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

              • DefaultTTL — (Integer)

                This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • MaxTTL — (Integer)

                This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CustomErrorResponsesrequired — (map)

            A complex type that contains zero or more CustomErrorResponses elements.

            • Quantityrequired — (Integer)

              The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

            • Items — (Array<map>)

              A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ErrorCoderequired — (Integer)

                The HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ResponsePagePath — (String)

                The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

                • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

                • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

                If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

                We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

              • ResponseCode — (String)

                The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

                • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

                • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

                • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

                If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

              • ErrorCachingMinTTL — (Integer)

                The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

                For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Commentrequired — (String)

            The comment originally specified when this distribution was created.

          • PriceClassrequired — (String)

            A complex type that contains information about price class for this streaming distribution.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            Whether the distribution is enabled to accept user requests for content.

          • ViewerCertificaterequired — (map)

            A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

            • CloudFrontDefaultCertificate — (Boolean)

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

              If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

              • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

              • MinimumProtocolVersion

              • SSLSupportMethod

            • IAMCertificateId — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

              If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • ACMCertificateArn — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

              If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • SSLSupportMethod — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

              • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

              • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

              • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

              Possible values include:
              • "sni-only"
              • "vip"
              • "static-ip"
            • MinimumProtocolVersion — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

              • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

              • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

              For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: On the CloudFront console, this setting is called Security Policy.

              When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

              Possible values include:
              • "SSLv3"
              • "TLSv1"
              • "TLSv1_2016"
              • "TLSv1.1_2016"
              • "TLSv1.2_2018"
              • "TLSv1.2_2019"
              • "TLSv1.2_2021"
            • Certificate — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

            • CertificateSource — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

              Possible values include:
              • "cloudfront"
              • "iam"
              • "acm"
          • Restrictionsrequired — (map)

            A complex type that identifies ways in which you want to restrict distribution of your content.

            • GeoRestrictionrequired — (map)

              A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

              • RestrictionTyperequired — (String)

                The method that you want to use to restrict distribution of your content by country:

                • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

                • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

                • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

                Possible values include:
                • "blacklist"
                • "whitelist"
                • "none"
              • Quantityrequired — (Integer)

                When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

              • Items — (Array<String>)

                A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

                The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

                CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

          • WebACLIdrequired — (String)

            The Web ACL Id (if any) associated with the distribution.

          • HttpVersionrequired — (String)

            Specify the maximum HTTP version that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 will automatically use an earlier version.

            Possible values include:
            • "http1.1"
            • "http2"
            • "http3"
            • "http2and3"
          • IsIPV6Enabledrequired — (Boolean)

            Whether CloudFront responds to IPv6 DNS requests with an IPv6 address for your distribution.

          • AliasICPRecordals — (Array<map>)

            Amazon Web Services services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

            For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with Amazon Web Services services in China.

            • CNAME — (String)

              A domain name associated with a distribution.

            • ICPRecordalStatus — (String)

              The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China.

              The status values returned are the following:

              • APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it.

              • SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number.

              • PENDING indicates that CloudFront can't determine the ICP recordal status of the CNAME associated with the distribution because there was an error in trying to determine the status. You can try again to see if the error is resolved in which case CloudFront returns an APPROVED or SUSPENDED status.

              Possible values include:
              • "APPROVED"
              • "SUSPENDED"
              • "PENDING"
          • Stagingrequired — (Boolean)

            Whether the primary distribution has a staging distribution enabled.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listFieldLevelEncryptionConfigs(params = {}, callback) ⇒ AWS.Request

List all field-level encryption configurations that have been created in CloudFront for this account.

Service Reference:

Examples:

Calling the listFieldLevelEncryptionConfigs operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listFieldLevelEncryptionConfigs(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this when paginating results to indicate where to begin in your list of configurations. The results include configurations in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last configuration on that page).

    • MaxItems — (String)

      The maximum number of field-level encryption configurations you want in the response body.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FieldLevelEncryptionList — (map)

        Returns a list of all field-level encryption configurations that have been created in CloudFront for this account.

        • NextMarker — (String)

          If there are more elements to be listed, this element is present and contains the value that you can use for the Marker request parameter to continue listing your configurations where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of elements you want in the response body.

        • Quantityrequired — (Integer)

          The number of field-level encryption items.

        • Items — (Array<map>)

          An array of field-level encryption items.

          • Idrequired — (String)

            The unique ID of a field-level encryption item.

          • LastModifiedTimerequired — (Date)

            The last time that the summary of field-level encryption items was modified.

          • Comment — (String)

            An optional comment about the field-level encryption item. The comment cannot be longer than 128 characters.

          • QueryArgProfileConfig — (map)

            A summary of a query argument-profile mapping.

            • ForwardWhenQueryArgProfileIsUnknownrequired — (Boolean)

              Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.

            • QueryArgProfiles — (map)

              Profiles specified for query argument-profile mapping for field-level encryption.

              • Quantityrequired — (Integer)

                Number of profiles for query argument-profile mapping for field-level encryption.

              • Items — (Array<map>)

                Number of items for query argument-profile mapping for field-level encryption.

                • QueryArgrequired — (String)

                  Query argument for field-level encryption query argument-profile mapping.

                • ProfileIdrequired — (String)

                  ID of profile to use for field-level encryption query argument-profile mapping

          • ContentTypeProfileConfig — (map)

            A summary of a content type-profile mapping.

            • ForwardWhenContentTypeIsUnknownrequired — (Boolean)

              The setting in a field-level encryption content type-profile mapping that specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.

            • ContentTypeProfiles — (map)

              The configuration for a field-level encryption content type-profile.

              • Quantityrequired — (Integer)

                The number of field-level encryption content type-profile mappings.

              • Items — (Array<map>)

                Items in a field-level encryption content type-profile mapping.

                • Formatrequired — (String)

                  The format for a field-level encryption content type-profile mapping.

                  Possible values include:
                  • "URLEncoded"
                • ProfileId — (String)

                  The profile ID for a field-level encryption content type-profile mapping.

                • ContentTyperequired — (String)

                  The content type for a field-level encryption content type-profile mapping.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listFieldLevelEncryptionProfiles(params = {}, callback) ⇒ AWS.Request

Request a list of field-level encryption profiles that have been created in CloudFront for this account.

Examples:

Calling the listFieldLevelEncryptionProfiles operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listFieldLevelEncryptionProfiles(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this when paginating results to indicate where to begin in your list of profiles. The results include profiles in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last profile on that page).

    • MaxItems — (String)

      The maximum number of field-level encryption profiles you want in the response body.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FieldLevelEncryptionProfileList — (map)

        Returns a list of the field-level encryption profiles that have been created in CloudFront for this account.

        • NextMarker — (String)

          If there are more elements to be listed, this element is present and contains the value that you can use for the Marker request parameter to continue listing your profiles where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of field-level encryption profiles you want in the response body.

        • Quantityrequired — (Integer)

          The number of field-level encryption profiles.

        • Items — (Array<map>)

          The field-level encryption profile items.

          • Idrequired — (String)

            ID for the field-level encryption profile summary.

          • LastModifiedTimerequired — (Date)

            The time when the field-level encryption profile summary was last updated.

          • Namerequired — (String)

            Name for the field-level encryption profile summary.

          • EncryptionEntitiesrequired — (map)

            A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.

            • Quantityrequired — (Integer)

              Number of field pattern items in a field-level encryption content type-profile mapping.

            • Items — (Array<map>)

              An array of field patterns in a field-level encryption content type-profile mapping.

              • PublicKeyIdrequired — (String)

                The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.

              • ProviderIdrequired — (String)

                The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.

              • FieldPatternsrequired — (map)

                Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (). You can't overlap field patterns. For example, you can't have both ABC and AB*. Note that field patterns are case-sensitive.

                • Quantityrequired — (Integer)

                  The number of field-level encryption field patterns.

                • Items — (Array<String>)

                  An array of the field-level encryption field patterns.

          • Comment — (String)

            An optional comment for the field-level encryption profile summary. The comment cannot be longer than 128 characters.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listFunctions(params = {}, callback) ⇒ AWS.Request

Gets a list of all CloudFront functions in your Amazon Web Services account.

You can optionally apply a filter to return only the functions that are in the specified stage, either DEVELOPMENT or LIVE.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Service Reference:

Examples:

Calling the listFunctions operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE',
  Stage: DEVELOPMENT | LIVE
};
cloudfront.listFunctions(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of functions. The response includes functions in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of functions that you want in the response.

    • Stage — (String)

      An optional filter to return only the functions that are in the specified stage, either DEVELOPMENT or LIVE.

      Possible values include:
      • "DEVELOPMENT"
      • "LIVE"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FunctionList — (map)

        A list of CloudFront functions.

        • NextMarker — (String)

          If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the Marker field of a subsequent request to continue listing functions where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of functions requested.

        • Quantityrequired — (Integer)

          The number of functions returned in the response.

        • Items — (Array<map>)

          Contains the functions in the list.

          • Namerequired — (String)

            The name of the CloudFront function.

          • Status — (String)

            The status of the CloudFront function.

          • FunctionConfigrequired — (map)

            Contains configuration information about a CloudFront function.

            • Commentrequired — (String)

              A comment to describe the function.

            • Runtimerequired — (String)

              The function's runtime environment version.

              Possible values include:
              • "cloudfront-js-1.0"
              • "cloudfront-js-2.0"
            • KeyValueStoreAssociations — (map)

              The configuration for the Key Value Store associations.

              • Quantityrequired — (Integer)

                The quantity of Key Value Store associations.

              • Items — (Array<map>)

                The items of the Key Value Store association.

                • KeyValueStoreARNrequired — (String)

                  The Amazon Resource Name (ARN) of the Key Value Store association.

          • FunctionMetadatarequired — (map)

            Contains metadata about a CloudFront function.

            • FunctionARNrequired — (String)

              The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function.

            • Stage — (String)

              The stage that the function is in, either DEVELOPMENT or LIVE.

              When a function is in the DEVELOPMENT stage, you can test the function with TestFunction, and update it with UpdateFunction.

              When a function is in the LIVE stage, you can attach the function to a distribution's cache behavior, using the function's ARN.

              Possible values include:
              • "DEVELOPMENT"
              • "LIVE"
            • CreatedTime — (Date)

              The date and time when the function was created.

            • LastModifiedTimerequired — (Date)

              The date and time when the function was most recently updated.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listInvalidations(params = {}, callback) ⇒ AWS.Request

Lists invalidation batches.

Service Reference:

Examples:

Calling the listInvalidations operation

var params = {
  DistributionId: 'STRING_VALUE', /* required */
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listInvalidations(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DistributionId — (String)

      The distribution's ID.

    • Marker — (String)

      Use this parameter when paginating results to indicate where to begin in your list of invalidation batches. Because the results are returned in decreasing order from most recent to oldest, the most recent results are on the first page, the second page will contain earlier results, and so on. To get the next page of results, set Marker to the value of the NextMarker from the current page's response. This value is the same as the ID of the last invalidation batch on that page.

    • MaxItems — (String)

      The maximum number of invalidation batches that you want in the response body.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • InvalidationList — (map)

        Information about invalidation batches.

        • Markerrequired — (String)

          The value that you provided for the Marker request parameter.

        • NextMarker — (String)

          If IsTruncated is true, this element is present and contains the value that you can use for the Marker request parameter to continue listing your invalidation batches where they left off.

        • MaxItemsrequired — (Integer)

          The value that you provided for the MaxItems request parameter.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether more invalidation batch requests remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more invalidation batches in the list.

        • Quantityrequired — (Integer)

          The number of invalidation batches that were created by the current Amazon Web Services account.

        • Items — (Array<map>)

          A complex type that contains one InvalidationSummary element for each invalidation batch created by the current Amazon Web Services account.

          • Idrequired — (String)

            The unique ID for an invalidation request.

          • CreateTimerequired — (Date)

            The time that an invalidation request was created.

          • Statusrequired — (String)

            The status of an invalidation request.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listKeyGroups(params = {}, callback) ⇒ AWS.Request

Gets a list of key groups.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Service Reference:

Examples:

Calling the listKeyGroups operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listKeyGroups(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of key groups. The response includes key groups in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of key groups that you want in the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • KeyGroupList — (map)

        A list of key groups.

        • NextMarker — (String)

          If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the Marker field of a subsequent request to continue listing key groups.

        • MaxItemsrequired — (Integer)

          The maximum number of key groups requested.

        • Quantityrequired — (Integer)

          The number of key groups returned in the response.

        • Items — (Array<map>)

          A list of key groups.

          • KeyGrouprequired — (map)

            A key group.

            • Idrequired — (String)

              The identifier for the key group.

            • LastModifiedTimerequired — (Date)

              The date and time when the key group was last modified.

            • KeyGroupConfigrequired — (map)

              The key group configuration.

              • Namerequired — (String)

                A name to identify the key group.

              • Itemsrequired — (Array<String>)

                A list of the identifiers of the public keys in the key group.

              • Comment — (String)

                A comment to describe the key group. The comment cannot be longer than 128 characters.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listKeyValueStores(params = {}, callback) ⇒ AWS.Request

Specifies the Key Value Stores to list.

Service Reference:

Examples:

To get a list of KeyValueStores


/* The following command retrieves a list of KeyValueStores with READY status. */

 var params = {
  Marker: "", 
  MaxItems: "100", 
  Status: "READY"
 };
 cloudfront.listKeyValueStores(params, function(err, data) {
   if (err) console.log(err, err.stack); // an error occurred
   else     console.log(data);           // successful response
   /*
   data = {
    KeyValueStoreList: {
     Items: [
        {
       ARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", 
       Comment: "", 
       Id: "54947df8-0e9e-4471-a2f9-9af509fb5889", 
       LastModifiedTime: <Date Representation>, 
       Name: "my-keyvaluestore-name", 
       Status: "READY"
      }
     ], 
     MaxItems: 100, 
     NextMarker: "", 
     Quantity: 1
    }
   }
   */
 });

Calling the listKeyValueStores operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE',
  Status: 'STRING_VALUE'
};
cloudfront.listKeyValueStores(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      The marker associated with the Key Value Stores list.

    • MaxItems — (String)

      The maximum number of items in the Key Value Stores list.

    • Status — (String)

      The status of the request for the Key Value Stores list.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • KeyValueStoreList — (map)

        The resulting Key Value Stores list.

        • NextMarker — (String)

          The next marker associated with the Key Value Store list.

        • MaxItemsrequired — (Integer)

          The maximum number of items in the Key Value Store list.

        • Quantityrequired — (Integer)

          The quantity of the Key Value Store list.

        • Items — (Array<map>)

          The items of the Key Value Store list.

          • Namerequired — (String)

            The name of the Key Value Store.

          • Idrequired — (String)

            The unique Id for the Key Value Store.

          • Commentrequired — (String)

            A comment for the Key Value Store.

          • ARNrequired — (String)

            The Amazon Resource Name (ARN) of the Key Value Store.

          • Status — (String)

            The status of the Key Value Store.

          • LastModifiedTimerequired — (Date)

            The last-modified time of the Key Value Store.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listOriginAccessControls(params = {}, callback) ⇒ AWS.Request

Gets the list of CloudFront origin access controls in this Amazon Web Services account.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send another request that specifies the NextMarker value from the current response as the Marker value in the next request.

Service Reference:

Examples:

Calling the listOriginAccessControls operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listOriginAccessControls(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of origin access controls. The response includes the items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of origin access controls that you want in the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • OriginAccessControlList — (map)

        A list of origin access controls.

        • Markerrequired — (String)

          The value of the Marker field that was provided in the request.

        • NextMarker — (String)

          If there are more items in the list than are in this response, this element is present. It contains the value to use in the Marker field of another request to continue listing origin access controls.

        • MaxItemsrequired — (Integer)

          The maximum number of origin access controls requested.

        • IsTruncatedrequired — (Boolean)

          If there are more items in the list than are in this response, this value is true.

        • Quantityrequired — (Integer)

          The number of origin access controls returned in the response.

        • Items — (Array<map>)

          Contains the origin access controls in the list.

          • Idrequired — (String)

            The unique identifier of the origin access control.

          • Descriptionrequired — (String)

            A description of the origin access control.

          • Namerequired — (String)

            A unique name that identifies the origin access control.

          • SigningProtocolrequired — (String)

            The signing protocol of the origin access control. The signing protocol determines how CloudFront signs (authenticates) requests. The only valid value is sigv4.

            Possible values include:
            • "sigv4"
          • SigningBehaviorrequired — (String)

            A value that specifies which requests CloudFront signs (adds authentication information to). This field can have one of the following values:

            • never – CloudFront doesn't sign any origin requests.

            • always – CloudFront signs all origin requests, overwriting the Authorization header from the viewer request if necessary.

            • no-override – If the viewer request doesn't contain the Authorization header, CloudFront signs the origin request. If the viewer request contains the Authorization header, CloudFront doesn't sign the origin request, but instead passes along the Authorization header that it received in the viewer request.

            Possible values include:
            • "never"
            • "always"
            • "no-override"
          • OriginAccessControlOriginTyperequired — (String)

            The type of origin that this origin access control is for.

            Possible values include:
            • "s3"
            • "mediastore"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listOriginRequestPolicies(params = {}, callback) ⇒ AWS.Request

Gets a list of origin request policies.

You can optionally apply a filter to return only the managed policies created by Amazon Web Services, or only the custom policies created in your Amazon Web Services account.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Service Reference:

Examples:

Calling the listOriginRequestPolicies operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE',
  Type: managed | custom
};
cloudfront.listOriginRequestPolicies(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Type — (String)

      A filter to return only the specified kinds of origin request policies. Valid values are:

      • managed – Returns only the managed policies created by Amazon Web Services.

      • custom – Returns only the custom policies created in your Amazon Web Services account.

      Possible values include:
      • "managed"
      • "custom"
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of origin request policies. The response includes origin request policies in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of origin request policies that you want in the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • OriginRequestPolicyList — (map)

        A list of origin request policies.

        • NextMarker — (String)

          If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the Marker field of a subsequent request to continue listing origin request policies where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of origin request policies requested.

        • Quantityrequired — (Integer)

          The total number of origin request policies returned in the response.

        • Items — (Array<map>)

          Contains the origin request policies in the list.

          • Typerequired — (String)

            The type of origin request policy, either managed (created by Amazon Web Services) or custom (created in this Amazon Web Services account).

            Possible values include:
            • "managed"
            • "custom"
          • OriginRequestPolicyrequired — (map)

            The origin request policy.

            • Idrequired — (String)

              The unique identifier for the origin request policy.

            • LastModifiedTimerequired — (Date)

              The date and time when the origin request policy was last modified.

            • OriginRequestPolicyConfigrequired — (map)

              The origin request policy configuration.

              • Comment — (String)

                A comment to describe the origin request policy. The comment cannot be longer than 128 characters.

              • Namerequired — (String)

                A unique name to identify the origin request policy.

              • HeadersConfigrequired — (map)

                The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.

                • HeaderBehaviorrequired — (String)

                  Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:

                  • none – No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in a CachePolicy are included in origin requests.

                  • whitelist – Only the HTTP headers that are listed in the Headers type are included in requests that CloudFront sends to the origin.

                  • allViewer – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.

                  • allViewerAndWhitelistCloudFront – All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the Headers type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.

                  • allExcept – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the Headers type, which are not included.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "allViewer"
                  • "allViewerAndWhitelistCloudFront"
                  • "allExcept"
                • Headers — (map)

                  Contains a list of HTTP header names.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

              • CookiesConfigrequired — (map)

                The cookies from viewer requests to include in origin requests.

                • CookieBehaviorrequired — (String)

                  Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

                  • none – No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in a CachePolicy are included in origin requests.

                  • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in requests that CloudFront sends to the origin.

                  • all – All cookies in viewer requests are included in requests that CloudFront sends to the origin.

                  • allExcept – All cookies in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the CookieNames type, which are not included.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                  • "allExcept"
                • Cookies — (map)

                  Contains a list of cookie names.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • QueryStringsConfigrequired — (map)

                The URL query strings from viewer requests to include in origin requests.

                • QueryStringBehaviorrequired — (String)

                  Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

                  • none – No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in a CachePolicy are included in origin requests.

                  • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in requests that CloudFront sends to the origin.

                  • all – All query strings in viewer requests are included in requests that CloudFront sends to the origin.

                  • allExcept – All query strings in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the QueryStringNames type, which are not included.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                  • "allExcept"
                • QueryStrings — (map)

                  Contains the specific query strings in viewer requests that either are or are not included in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the OriginRequestPolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

                  • Quantityrequired — (Integer)

                    The number of query string names in the Items list.

                  • Items — (Array<String>)

                    A list of query string names.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listPublicKeys(params = {}, callback) ⇒ AWS.Request

List all public keys that have been added to CloudFront for this account.

Service Reference:

Examples:

Calling the listPublicKeys operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listPublicKeys(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      Use this when paginating results to indicate where to begin in your list of public keys. The results include public keys in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last public key on that page).

    • MaxItems — (String)

      The maximum number of public keys you want in the response body.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • PublicKeyList — (map)

        Returns a list of all public keys that have been added to CloudFront for this account.

        • NextMarker — (String)

          If there are more elements to be listed, this element is present and contains the value that you can use for the Marker request parameter to continue listing your public keys where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of public keys you want in the response.

        • Quantityrequired — (Integer)

          The number of public keys in the list.

        • Items — (Array<map>)

          A list of public keys.

          • Idrequired — (String)

            The identifier of the public key.

          • Namerequired — (String)

            A name to help identify the public key.

          • CreatedTimerequired — (Date)

            The date and time when the public key was uploaded.

          • EncodedKeyrequired — (String)

            The public key.

          • Comment — (String)

            A comment to describe the public key. The comment cannot be longer than 128 characters.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listRealtimeLogConfigs(params = {}, callback) ⇒ AWS.Request

Gets a list of real-time log configurations.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Service Reference:

Examples:

Calling the listRealtimeLogConfigs operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listRealtimeLogConfigs(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • MaxItems — (String)

      The maximum number of real-time log configurations that you want in the response.

    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of real-time log configurations. The response includes real-time log configurations in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RealtimeLogConfigs — (map)

        A list of real-time log configurations.

        • MaxItemsrequired — (Integer)

          The maximum number of real-time log configurations requested.

        • Items — (Array<map>)

          Contains the list of real-time log configurations.

          • ARNrequired — (String)

            The Amazon Resource Name (ARN) of this real-time log configuration.

          • Namerequired — (String)

            The unique name of this real-time log configuration.

          • SamplingRaterequired — (Integer)

            The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. The sampling rate is an integer between 1 and 100, inclusive.

          • EndPointsrequired — (Array<map>)

            Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.

            • StreamTyperequired — (String)

              The type of data stream where you are sending real-time log data. The only valid value is Kinesis.

            • KinesisStreamConfig — (map)

              Contains information about the Amazon Kinesis data stream where you are sending real-time log data.

              • RoleARNrequired — (String)

                The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.

                For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide.

              • StreamARNrequired — (String)

                The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.

          • Fieldsrequired — (Array<String>)

            A list of fields that are included in each real-time log record. In an API response, the fields are provided in the same order in which they are sent to the Amazon Kinesis data stream.

            For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether there are more real-time log configurations than are contained in this list.

        • Markerrequired — (String)

          This parameter indicates where this list of real-time log configurations begins. This list includes real-time log configurations that occur after the marker.

        • NextMarker — (String)

          If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the Marker field of a subsequent request to continue listing real-time log configurations where you left off.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listResponseHeadersPolicies(params = {}, callback) ⇒ AWS.Request

Gets a list of response headers policies.

You can optionally apply a filter to get only the managed policies created by Amazon Web Services, or only the custom policies created in your Amazon Web Services account.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

Service Reference:

Examples:

Calling the listResponseHeadersPolicies operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE',
  Type: managed | custom
};
cloudfront.listResponseHeadersPolicies(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Type — (String)

      A filter to get only the specified kind of response headers policies. Valid values are:

      • managed – Gets only the managed policies created by Amazon Web Services.

      • custom – Gets only the custom policies created in your Amazon Web Services account.

      Possible values include:
      • "managed"
      • "custom"
    • Marker — (String)

      Use this field when paginating results to indicate where to begin in your list of response headers policies. The response includes response headers policies in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

    • MaxItems — (String)

      The maximum number of response headers policies that you want to get in the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ResponseHeadersPolicyList — (map)

        A list of response headers policies.

        • NextMarker — (String)

          If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the Marker field of a subsequent request to continue listing response headers policies where you left off.

        • MaxItemsrequired — (Integer)

          The maximum number of response headers policies requested.

        • Quantityrequired — (Integer)

          The number of response headers policies returned.

        • Items — (Array<map>)

          The response headers policies in the list.

          • Typerequired — (String)

            The type of response headers policy, either managed (created by Amazon Web Services) or custom (created in this Amazon Web Services account).

            Possible values include:
            • "managed"
            • "custom"
          • ResponseHeadersPolicyrequired — (map)

            The response headers policy.

            • Idrequired — (String)

              The identifier for the response headers policy.

            • LastModifiedTimerequired — (Date)

              The date and time when the response headers policy was last modified.

            • ResponseHeadersPolicyConfigrequired — (map)

              A response headers policy configuration.

              • Comment — (String)

                A comment to describe the response headers policy.

                The comment cannot be longer than 128 characters.

              • Namerequired — (String)

                A name to identify the response headers policy.

                The name must be unique for response headers policies in this Amazon Web Services account.

              • CorsConfig — (map)

                A configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).

                • AccessControlAllowOriginsrequired — (map)

                  A list of origins (domain names) that CloudFront can use as the value for the Access-Control-Allow-Origin HTTP response header.

                  For more information about the Access-Control-Allow-Origin HTTP response header, see Access-Control-Allow-Origin in the MDN Web Docs.

                  • Quantityrequired — (Integer)

                    The number of origins in the list.

                  • Itemsrequired — (Array<String>)

                    The list of origins (domain names). You can specify * to allow all origins.

                • AccessControlAllowHeadersrequired — (map)

                  A list of HTTP header names that CloudFront includes as values for the Access-Control-Allow-Headers HTTP response header.

                  For more information about the Access-Control-Allow-Headers HTTP response header, see Access-Control-Allow-Headers in the MDN Web Docs.

                  • Quantityrequired — (Integer)

                    The number of HTTP header names in the list.

                  • Itemsrequired — (Array<String>)

                    The list of HTTP header names. You can specify * to allow all headers.

                • AccessControlAllowMethodsrequired — (map)

                  A list of HTTP methods that CloudFront includes as values for the Access-Control-Allow-Methods HTTP response header.

                  For more information about the Access-Control-Allow-Methods HTTP response header, see Access-Control-Allow-Methods in the MDN Web Docs.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods in the list.

                  • Itemsrequired — (Array<String>)

                    The list of HTTP methods. Valid values are:

                    • GET

                    • DELETE

                    • HEAD

                    • OPTIONS

                    • PATCH

                    • POST

                    • PUT

                    • ALL

                    ALL is a special value that includes all of the listed HTTP methods.

                • AccessControlAllowCredentialsrequired — (Boolean)

                  A Boolean that CloudFront uses as the value for the Access-Control-Allow-Credentials HTTP response header.

                  For more information about the Access-Control-Allow-Credentials HTTP response header, see Access-Control-Allow-Credentials in the MDN Web Docs.

                • AccessControlExposeHeaders — (map)

                  A list of HTTP headers that CloudFront includes as values for the Access-Control-Expose-Headers HTTP response header.

                  For more information about the Access-Control-Expose-Headers HTTP response header, see Access-Control-Expose-Headers in the MDN Web Docs.

                  • Quantityrequired — (Integer)

                    The number of HTTP headers in the list.

                  • Items — (Array<String>)

                    The list of HTTP headers. You can specify * to expose all headers.

                • AccessControlMaxAgeSec — (Integer)

                  A number that CloudFront uses as the value for the Access-Control-Max-Age HTTP response header.

                  For more information about the Access-Control-Max-Age HTTP response header, see Access-Control-Max-Age in the MDN Web Docs.

                • OriginOverriderequired — (Boolean)

                  A Boolean that determines whether CloudFront overrides HTTP response headers received from the origin with the ones specified in this response headers policy.

              • SecurityHeadersConfig — (map)

                A configuration for a set of security-related HTTP response headers.

                • XSSProtection — (map)

                  Determines whether CloudFront includes the X-XSS-Protection HTTP response header and the header's value.

                  For more information about the X-XSS-Protection HTTP response header, see X-XSS-Protection in the MDN Web Docs.

                  • Overriderequired — (Boolean)

                    A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header received from the origin with the one specified in this response headers policy.

                  • Protectionrequired — (Boolean)

                    A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting is true, the value of the X-XSS-Protection header is 1. When this setting is false, the value of the X-XSS-Protection header is 0.

                    For more information about these settings, see X-XSS-Protection in the MDN Web Docs.

                  • ModeBlock — (Boolean)

                    A Boolean that determines whether CloudFront includes the mode=block directive in the X-XSS-Protection header.

                    For more information about this directive, see X-XSS-Protection in the MDN Web Docs.

                  • ReportUri — (String)

                    A reporting URI, which CloudFront uses as the value of the report directive in the X-XSS-Protection header.

                    You cannot specify a ReportUri when ModeBlock is true.

                    For more information about using a reporting URL, see X-XSS-Protection in the MDN Web Docs.

                • FrameOptions — (map)

                  Determines whether CloudFront includes the X-Frame-Options HTTP response header and the header's value.

                  For more information about the X-Frame-Options HTTP response header, see X-Frame-Options in the MDN Web Docs.

                  • Overriderequired — (Boolean)

                    A Boolean that determines whether CloudFront overrides the X-Frame-Options HTTP response header received from the origin with the one specified in this response headers policy.

                  • FrameOptionrequired — (String)

                    The value of the X-Frame-Options HTTP response header. Valid values are DENY and SAMEORIGIN.

                    For more information about these values, see X-Frame-Options in the MDN Web Docs.

                    Possible values include:
                    • "DENY"
                    • "SAMEORIGIN"
                • ReferrerPolicy — (map)

                  Determines whether CloudFront includes the Referrer-Policy HTTP response header and the header's value.

                  For more information about the Referrer-Policy HTTP response header, see Referrer-Policy in the MDN Web Docs.

                  • Overriderequired — (Boolean)

                    A Boolean that determines whether CloudFront overrides the Referrer-Policy HTTP response header received from the origin with the one specified in this response headers policy.

                  • ReferrerPolicyrequired — (String)

                    The value of the Referrer-Policy HTTP response header. Valid values are:

                    • no-referrer

                    • no-referrer-when-downgrade

                    • origin

                    • origin-when-cross-origin

                    • same-origin

                    • strict-origin

                    • strict-origin-when-cross-origin

                    • unsafe-url

                    For more information about these values, see Referrer-Policy in the MDN Web Docs.

                    Possible values include:
                    • "no-referrer"
                    • "no-referrer-when-downgrade"
                    • "origin"
                    • "origin-when-cross-origin"
                    • "same-origin"
                    • "strict-origin"
                    • "strict-origin-when-cross-origin"
                    • "unsafe-url"
                • ContentSecurityPolicy — (map)

                  The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

                  For more information about the Content-Security-Policy HTTP response header, see Content-Security-Policy in the MDN Web Docs.

                  • Overriderequired — (Boolean)

                    A Boolean that determines whether CloudFront overrides the Content-Security-Policy HTTP response header received from the origin with the one specified in this response headers policy.

                  • ContentSecurityPolicyrequired — (String)

                    The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

                • ContentTypeOptions — (map)

                  Determines whether CloudFront includes the X-Content-Type-Options HTTP response header with its value set to nosniff.

                  For more information about the X-Content-Type-Options HTTP response header, see X-Content-Type-Options in the MDN Web Docs.

                  • Overriderequired — (Boolean)

                    A Boolean that determines whether CloudFront overrides the X-Content-Type-Options HTTP response header received from the origin with the one specified in this response headers policy.

                • StrictTransportSecurity — (map)

                  Determines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header's value.

                  For more information about the Strict-Transport-Security HTTP response header, see Strict-Transport-Security in the MDN Web Docs.

                  • Overriderequired — (Boolean)

                    A Boolean that determines whether CloudFront overrides the Strict-Transport-Security HTTP response header received from the origin with the one specified in this response headers policy.

                  • IncludeSubdomains — (Boolean)

                    A Boolean that determines whether CloudFront includes the includeSubDomains directive in the Strict-Transport-Security HTTP response header.

                  • Preload — (Boolean)

                    A Boolean that determines whether CloudFront includes the preload directive in the Strict-Transport-Security HTTP response header.

                  • AccessControlMaxAgeSecrequired — (Integer)

                    A number that CloudFront uses as the value for the max-age directive in the Strict-Transport-Security HTTP response header.

              • ServerTimingHeadersConfig — (map)

                A configuration for enabling the Server-Timing header in HTTP responses sent from CloudFront.

                • Enabledrequired — (Boolean)

                  A Boolean that determines whether CloudFront adds the Server-Timing header to HTTP responses that it sends in response to requests that match a cache behavior that's associated with this response headers policy.

                • SamplingRate — (Float)

                  A number 0–100 (inclusive) that specifies the percentage of responses that you want CloudFront to add the Server-Timing header to. When you set the sampling rate to 100, CloudFront adds the Server-Timing header to the HTTP response for every request that matches the cache behavior that this response headers policy is attached to. When you set it to 50, CloudFront adds the header to 50% of the responses for requests that match the cache behavior. You can set the sampling rate to any number 0–100 with up to four decimal places.

              • CustomHeadersConfig — (map)

                A configuration for a set of custom HTTP response headers.

                • Quantityrequired — (Integer)

                  The number of HTTP response headers in the list.

                • Items — (Array<map>)

                  The list of HTTP response headers and their values.

                  • Headerrequired — (String)

                    The HTTP response header name.

                  • Valuerequired — (String)

                    The value for the HTTP response header.

                  • Overriderequired — (Boolean)

                    A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.

              • RemoveHeadersConfig — (map)

                A configuration for a set of HTTP headers to remove from the HTTP response.

                • Quantityrequired — (Integer)

                  The number of HTTP header names in the list.

                • Items — (Array<map>)

                  The list of HTTP header names.

                  • Headerrequired — (String)

                    The HTTP header name.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listStreamingDistributions(params = {}, callback) ⇒ AWS.Request

List streaming distributions.

Service Reference:

Examples:

Calling the listStreamingDistributions operation

var params = {
  Marker: 'STRING_VALUE',
  MaxItems: 'STRING_VALUE'
};
cloudfront.listStreamingDistributions(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Marker — (String)

      The value that you provided for the Marker request parameter.

    • MaxItems — (String)

      The value that you provided for the MaxItems request parameter.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • StreamingDistributionList — (map)

        The StreamingDistributionList type.

        • Markerrequired — (String)

          The value you provided for the Marker request parameter.

        • NextMarker — (String)

          If IsTruncated is true, this element is present and contains the value you can use for the Marker request parameter to continue listing your RTMP distributions where they left off.

        • MaxItemsrequired — (Integer)

          The value you provided for the MaxItems request parameter.

        • IsTruncatedrequired — (Boolean)

          A flag that indicates whether more streaming distributions remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more distributions in the list.

        • Quantityrequired — (Integer)

          The number of streaming distributions that were created by the current Amazon Web Services account.

        • Items — (Array<map>)

          A complex type that contains one StreamingDistributionSummary element for each distribution that was created by the current Amazon Web Services account.

          • Idrequired — (String)

            The identifier for the distribution, for example, EDFDVBD632BHDS5.

          • ARNrequired — (String)

            The ARN (Amazon Resource Name) for the streaming distribution. For example: arn:aws:cloudfront::123456789012:streaming-distribution/EDFDVBD632BHDS5, where 123456789012 is your Amazon Web Services account ID.

          • Statusrequired — (String)

            Indicates the current status of the distribution. When the status is Deployed, the distribution's information is fully propagated throughout the Amazon CloudFront system.

          • LastModifiedTimerequired — (Date)

            The date and time the distribution was last modified.

          • DomainNamerequired — (String)

            The domain name corresponding to the distribution, for example, d111111abcdef8.cloudfront.net.

          • S3Originrequired — (map)

            A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

            • DomainNamerequired — (String)

              The DNS name of the Amazon S3 origin.

            • OriginAccessIdentityrequired — (String)

              The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

              If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

              To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

              To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

              For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.

          • Aliasesrequired — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • TrustedSignersrequired — (map)

            A complex type that specifies the Amazon Web Services accounts, if any, that you want to allow to create signed URLs for private content. If you want to require signed URLs in requests for objects in the target origin that match the PathPattern for this cache behavior, specify true for Enabled, and specify the applicable values for Quantity and Items.If you don't want to require signed URLs in requests for objects that match PathPattern, specify false for Enabled and 0 for Quantity. Omit Items. To add, change, or remove one or more trusted signers, change Enabled to true (if it's currently false), change Quantity as applicable, and specify all of the trusted signers that you want to include in the updated distribution.

            For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of Amazon Web Services accounts in the list.

            • Items — (Array<String>)

              A list of Amazon Web Services account identifiers.

          • Commentrequired — (String)

            The comment originally specified when this distribution was created.

          • PriceClassrequired — (String)

            A complex type that contains information about price class for this streaming distribution.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            Whether the distribution is enabled to accept end user requests for content.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listTagsForResource(params = {}, callback) ⇒ AWS.Request

List tags for a CloudFront resource.

Service Reference:

Examples:

Calling the listTagsForResource operation

var params = {
  Resource: 'STRING_VALUE' /* required */
};
cloudfront.listTagsForResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Resource — (String)

      An ARN of a CloudFront resource.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Tags — (map)

        A complex type that contains zero or more Tag elements.

        • Items — (Array<map>)

          A complex type that contains Tag elements.

          • Keyrequired — (String)

            A string that contains Tag key.

            The string length should be between 1 and 128 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.

          • Value — (String)

            A string that contains an optional Tag value.

            The string length should be between 0 and 256 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

publishFunction(params = {}, callback) ⇒ AWS.Request

Publishes a CloudFront function by copying the function code from the DEVELOPMENT stage to LIVE. This automatically updates all cache behaviors that are using this function to use the newly published copy in the LIVE stage.

When a function is published to the LIVE stage, you can attach the function to a distribution's cache behavior, using the function's Amazon Resource Name (ARN).

To publish a function, you must provide the function's name and version (ETag value). To get these values, you can use ListFunctions and DescribeFunction.

Service Reference:

Examples:

Calling the publishFunction operation

var params = {
  IfMatch: 'STRING_VALUE', /* required */
  Name: 'STRING_VALUE' /* required */
};
cloudfront.publishFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the function that you are publishing.

    • IfMatch — (String)

      The current version (ETag value) of the function that you are publishing, which you can get using DescribeFunction.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FunctionSummary — (map)

        Contains configuration information and metadata about a CloudFront function.

        • Namerequired — (String)

          The name of the CloudFront function.

        • Status — (String)

          The status of the CloudFront function.

        • FunctionConfigrequired — (map)

          Contains configuration information about a CloudFront function.

          • Commentrequired — (String)

            A comment to describe the function.

          • Runtimerequired — (String)

            The function's runtime environment version.

            Possible values include:
            • "cloudfront-js-1.0"
            • "cloudfront-js-2.0"
          • KeyValueStoreAssociations — (map)

            The configuration for the Key Value Store associations.

            • Quantityrequired — (Integer)

              The quantity of Key Value Store associations.

            • Items — (Array<map>)

              The items of the Key Value Store association.

              • KeyValueStoreARNrequired — (String)

                The Amazon Resource Name (ARN) of the Key Value Store association.

        • FunctionMetadatarequired — (map)

          Contains metadata about a CloudFront function.

          • FunctionARNrequired — (String)

            The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function.

          • Stage — (String)

            The stage that the function is in, either DEVELOPMENT or LIVE.

            When a function is in the DEVELOPMENT stage, you can test the function with TestFunction, and update it with UpdateFunction.

            When a function is in the LIVE stage, you can attach the function to a distribution's cache behavior, using the function's ARN.

            Possible values include:
            • "DEVELOPMENT"
            • "LIVE"
          • CreatedTime — (Date)

            The date and time when the function was created.

          • LastModifiedTimerequired — (Date)

            The date and time when the function was most recently updated.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

setupRequestListeners(request) ⇒ void

tagResource(params = {}, callback) ⇒ AWS.Request

Add tags to a CloudFront resource.

Service Reference:

Examples:

Calling the tagResource operation

var params = {
  Resource: 'STRING_VALUE', /* required */
  Tags: { /* required */
    Items: [
      {
        Key: 'STRING_VALUE', /* required */
        Value: 'STRING_VALUE'
      },
      /* more items */
    ]
  }
};
cloudfront.tagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Resource — (String)

      An ARN of a CloudFront resource.

    • Tags — (map)

      A complex type that contains zero or more Tag elements.

      • Items — (Array<map>)

        A complex type that contains Tag elements.

        • Keyrequired — (String)

          A string that contains Tag key.

          The string length should be between 1 and 128 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.

        • Value — (String)

          A string that contains an optional Tag value.

          The string length should be between 0 and 256 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

testFunction(params = {}, callback) ⇒ AWS.Request

Tests a CloudFront function.

To test a function, you provide an event object that represents an HTTP request or response that your CloudFront distribution could receive in production. CloudFront runs the function, passing it the event object that you provided, and returns the function's result (the modified event object) in the response. The response also contains function logs and error messages, if any exist. For more information about testing functions, see Testing functions in the Amazon CloudFront Developer Guide.

To test a function, you provide the function's name and version (ETag value) along with the event object. To get the function's name and version, you can use ListFunctions and DescribeFunction.

Service Reference:

Examples:

Calling the testFunction operation

var params = {
  EventObject: Buffer.from('...') || 'STRING_VALUE' /* Strings will be Base-64 encoded on your behalf */, /* required */
  IfMatch: 'STRING_VALUE', /* required */
  Name: 'STRING_VALUE', /* required */
  Stage: DEVELOPMENT | LIVE
};
cloudfront.testFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the function that you are testing.

    • IfMatch — (String)

      The current version (ETag value) of the function that you are testing, which you can get using DescribeFunction.

    • Stage — (String)

      The stage of the function that you are testing, either DEVELOPMENT or LIVE.

      Possible values include:
      • "DEVELOPMENT"
      • "LIVE"
    • EventObject — (Buffer, Typed Array, Blob, String)

      The event object to test the function with. For more information about the structure of the event object, see Testing functions in the Amazon CloudFront Developer Guide.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TestResult — (map)

        An object that represents the result of running the function with the provided event object.

        • FunctionSummary — (map)

          Contains configuration information and metadata about the CloudFront function that was tested.

          • Namerequired — (String)

            The name of the CloudFront function.

          • Status — (String)

            The status of the CloudFront function.

          • FunctionConfigrequired — (map)

            Contains configuration information about a CloudFront function.

            • Commentrequired — (String)

              A comment to describe the function.

            • Runtimerequired — (String)

              The function's runtime environment version.

              Possible values include:
              • "cloudfront-js-1.0"
              • "cloudfront-js-2.0"
            • KeyValueStoreAssociations — (map)

              The configuration for the Key Value Store associations.

              • Quantityrequired — (Integer)

                The quantity of Key Value Store associations.

              • Items — (Array<map>)

                The items of the Key Value Store association.

                • KeyValueStoreARNrequired — (String)

                  The Amazon Resource Name (ARN) of the Key Value Store association.

          • FunctionMetadatarequired — (map)

            Contains metadata about a CloudFront function.

            • FunctionARNrequired — (String)

              The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function.

            • Stage — (String)

              The stage that the function is in, either DEVELOPMENT or LIVE.

              When a function is in the DEVELOPMENT stage, you can test the function with TestFunction, and update it with UpdateFunction.

              When a function is in the LIVE stage, you can attach the function to a distribution's cache behavior, using the function's ARN.

              Possible values include:
              • "DEVELOPMENT"
              • "LIVE"
            • CreatedTime — (Date)

              The date and time when the function was created.

            • LastModifiedTimerequired — (Date)

              The date and time when the function was most recently updated.

        • ComputeUtilization — (String)

          The amount of time that the function took to run as a percentage of the maximum allowed time. For example, a compute utilization of 35 means that the function completed in 35% of the maximum allowed time.

        • FunctionExecutionLogs — (Array<String>)

          Contains the log lines that the function wrote (if any) when running the test.

        • FunctionErrorMessage — (String)

          If the result of testing the function was an error, this field contains the error message.

        • FunctionOutput — (String)

          The event object returned by the function. For more information about the structure of the event object, see Event object structure in the Amazon CloudFront Developer Guide.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

untagResource(params = {}, callback) ⇒ AWS.Request

Remove tags from a CloudFront resource.

Service Reference:

Examples:

Calling the untagResource operation

var params = {
  Resource: 'STRING_VALUE', /* required */
  TagKeys: { /* required */
    Items: [
      'STRING_VALUE',
      /* more items */
    ]
  }
};
cloudfront.untagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Resource — (String)

      An ARN of a CloudFront resource.

    • TagKeys — (map)

      A complex type that contains zero or more Tag key elements.

      • Items — (Array<String>)

        A complex type that contains Tag key elements.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateCachePolicy(params = {}, callback) ⇒ AWS.Request

Updates a cache policy configuration.

When you update a cache policy configuration, all the fields are updated with the values provided in the request. You cannot update some fields independent of others. To update a cache policy configuration:

  1. Use GetCachePolicyConfig to get the current configuration.

  2. Locally modify the fields in the cache policy configuration that you want to update.

  3. Call UpdateCachePolicy by providing the entire cache policy configuration, including the fields that you modified and those that you didn't.

Service Reference:

Examples:

Calling the updateCachePolicy operation

var params = {
  CachePolicyConfig: { /* required */
    MinTTL: 'NUMBER_VALUE', /* required */
    Name: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE',
    DefaultTTL: 'NUMBER_VALUE',
    MaxTTL: 'NUMBER_VALUE',
    ParametersInCacheKeyAndForwardedToOrigin: {
      CookiesConfig: { /* required */
        CookieBehavior: none | whitelist | allExcept | all, /* required */
        Cookies: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        }
      },
      EnableAcceptEncodingGzip: true || false, /* required */
      HeadersConfig: { /* required */
        HeaderBehavior: none | whitelist, /* required */
        Headers: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        }
      },
      QueryStringsConfig: { /* required */
        QueryStringBehavior: none | whitelist | allExcept | all, /* required */
        QueryStrings: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        }
      },
      EnableAcceptEncodingBrotli: true || false
    }
  },
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateCachePolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CachePolicyConfig — (map)

      A cache policy configuration.

      • Comment — (String)

        A comment to describe the cache policy. The comment cannot be longer than 128 characters.

      • Namerequired — (String)

        A unique name to identify the cache policy.

      • DefaultTTL — (Integer)

        The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object's time to live (TTL) only when the origin does not send Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        The default value for this field is 86400 seconds (one day). If the value of MinTTL is more than 86400 seconds, then the default value for this field is the same as the value of MinTTL.

      • MaxTTL — (Integer)

        The maximum amount of time, in seconds, that objects stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value only when the origin sends Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        The default value for this field is 31536000 seconds (one year). If the value of MinTTL or DefaultTTL is more than 31536000 seconds, then the default value for this field is the same as the value of DefaultTTL.

      • MinTTLrequired — (Integer)

        The minimum amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

      • ParametersInCacheKeyAndForwardedToOrigin — (map)

        The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are also included in requests that CloudFront sends to the origin.

        • EnableAcceptEncodingGziprequired — (Boolean)

          A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

          This field is related to the EnableAcceptEncodingBrotli field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

          • Normalizes the value of the viewer's Accept-Encoding header

          • Includes the normalized header in the cache key

          • Includes the normalized header in the request to the origin, if a request is necessary

          For more information, see Compression support in the Amazon CloudFront Developer Guide.

          If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

          If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

        • EnableAcceptEncodingBrotli — (Boolean)

          A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

          This field is related to the EnableAcceptEncodingGzip field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

          • Normalizes the value of the viewer's Accept-Encoding header

          • Includes the normalized header in the cache key

          • Includes the normalized header in the request to the origin, if a request is necessary

          For more information, see Compression support in the Amazon CloudFront Developer Guide.

          If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

          If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

        • HeadersConfigrequired — (map)

          An 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.

          • HeaderBehaviorrequired — (String)

            Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

            • none – No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in an OriginRequestPolicy are included in origin requests.

            • whitelist – Only the HTTP headers that are listed in the Headers type are included in the cache key and in requests that CloudFront sends to the origin.

            Possible values include:
            • "none"
            • "whitelist"
          • Headers — (map)

            Contains a list of HTTP header names.

            • Quantityrequired — (Integer)

              The number of header names in the Items list.

            • Items — (Array<String>)

              A list of HTTP header names.

        • CookiesConfigrequired — (map)

          An 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.

          • CookieBehaviorrequired — (String)

            Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

            • none – No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in an OriginRequestPolicy are included in origin requests.

            • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in the cache key and in requests that CloudFront sends to the origin.

            • allExcept – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except for those that are listed in the CookieNames type, which are not included.

            • all – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

            Possible values include:
            • "none"
            • "whitelist"
            • "allExcept"
            • "all"
          • Cookies — (map)

            Contains a list of cookie names.

            • Quantityrequired — (Integer)

              The number of cookie names in the Items list.

            • Items — (Array<String>)

              A list of cookie names.

        • QueryStringsConfigrequired — (map)

          An 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.

          • QueryStringBehaviorrequired — (String)

            Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

            • none – No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in an OriginRequestPolicy are included in origin requests.

            • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in the cache key and in requests that CloudFront sends to the origin.

            • allExcept – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except those that are listed in the QueryStringNames type, which are not included.

            • all – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

            Possible values include:
            • "none"
            • "whitelist"
            • "allExcept"
            • "all"
          • QueryStrings — (map)

            Contains the specific query strings in viewer requests that either are or are not included in the cache key and in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the CachePolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

            • Quantityrequired — (Integer)

              The number of query string names in the Items list.

            • Items — (Array<String>)

              A list of query string names.

    • Id — (String)

      The unique identifier for the cache policy that you are updating. The identifier is returned in a cache behavior's CachePolicyId field in the response to GetDistributionConfig.

    • IfMatch — (String)

      The version of the cache policy that you are updating. The version is returned in the cache policy's ETag field in the response to GetCachePolicyConfig.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CachePolicy — (map)

        A cache policy.

        • Idrequired — (String)

          The unique identifier for the cache policy.

        • LastModifiedTimerequired — (Date)

          The date and time when the cache policy was last modified.

        • CachePolicyConfigrequired — (map)

          The cache policy configuration.

          • Comment — (String)

            A comment to describe the cache policy. The comment cannot be longer than 128 characters.

          • Namerequired — (String)

            A unique name to identify the cache policy.

          • DefaultTTL — (Integer)

            The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object's time to live (TTL) only when the origin does not send Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            The default value for this field is 86400 seconds (one day). If the value of MinTTL is more than 86400 seconds, then the default value for this field is the same as the value of MinTTL.

          • MaxTTL — (Integer)

            The maximum amount of time, in seconds, that objects stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value only when the origin sends Cache-Control or Expires headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            The default value for this field is 31536000 seconds (one year). If the value of MinTTL or DefaultTTL is more than 31536000 seconds, then the default value for this field is the same as the value of DefaultTTL.

          • MinTTLrequired — (Integer)

            The minimum amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • ParametersInCacheKeyAndForwardedToOrigin — (map)

            The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are also included in requests that CloudFront sends to the origin.

            • EnableAcceptEncodingGziprequired — (Boolean)

              A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

              This field is related to the EnableAcceptEncodingBrotli field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

              • Normalizes the value of the viewer's Accept-Encoding header

              • Includes the normalized header in the cache key

              • Includes the normalized header in the request to the origin, if a request is necessary

              For more information, see Compression support in the Amazon CloudFront Developer Guide.

              If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

              If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

            • EnableAcceptEncodingBrotli — (Boolean)

              A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

              This field is related to the EnableAcceptEncodingGzip field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

              • Normalizes the value of the viewer's Accept-Encoding header

              • Includes the normalized header in the cache key

              • Includes the normalized header in the request to the origin, if a request is necessary

              For more information, see Compression support in the Amazon CloudFront Developer Guide.

              If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

              If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

            • HeadersConfigrequired — (map)

              An 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.

              • HeaderBehaviorrequired — (String)

                Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                • none – No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in an OriginRequestPolicy are included in origin requests.

                • whitelist – Only the HTTP headers that are listed in the Headers type are included in the cache key and in requests that CloudFront sends to the origin.

                Possible values include:
                • "none"
                • "whitelist"
              • Headers — (map)

                Contains a list of HTTP header names.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

            • CookiesConfigrequired — (map)

              An 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.

              • CookieBehaviorrequired — (String)

                Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                • none – No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in an OriginRequestPolicy are included in origin requests.

                • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in the cache key and in requests that CloudFront sends to the origin.

                • allExcept – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except for those that are listed in the CookieNames type, which are not included.

                • all – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

                Possible values include:
                • "none"
                • "whitelist"
                • "allExcept"
                • "all"
              • Cookies — (map)

                Contains a list of cookie names.

                • Quantityrequired — (Integer)

                  The number of cookie names in the Items list.

                • Items — (Array<String>)

                  A list of cookie names.

            • QueryStringsConfigrequired — (map)

              An 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.

              • QueryStringBehaviorrequired — (String)

                Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:

                • none – No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in an OriginRequestPolicy are included in origin requests.

                • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in the cache key and in requests that CloudFront sends to the origin.

                • allExcept – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except those that are listed in the QueryStringNames type, which are not included.

                • all – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.

                Possible values include:
                • "none"
                • "whitelist"
                • "allExcept"
                • "all"
              • QueryStrings — (map)

                Contains the specific query strings in viewer requests that either are or are not included in the cache key and in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the CachePolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

                • Quantityrequired — (Integer)

                  The number of query string names in the Items list.

                • Items — (Array<String>)

                  A list of query string names.

      • ETag — (String)

        The current version of the cache policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateCloudFrontOriginAccessIdentity(params = {}, callback) ⇒ AWS.Request

Update an origin access identity.

Examples:

Calling the updateCloudFrontOriginAccessIdentity operation

var params = {
  CloudFrontOriginAccessIdentityConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE' /* required */
  },
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateCloudFrontOriginAccessIdentity(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CloudFrontOriginAccessIdentityConfig — (map)

      The identity's configuration information.

      • CallerReferencerequired — (String)

        A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

        If the value of CallerReference is new (regardless of the content of the CloudFrontOriginAccessIdentityConfig object), a new origin access identity is created.

        If the CallerReference is a value already sent in a previous identity request, and the content of the CloudFrontOriginAccessIdentityConfig is identical to the original request (ignoring white space), the response includes the same information returned to the original request.

        If the CallerReference is a value you already sent in a previous request to create an identity, but the content of the CloudFrontOriginAccessIdentityConfig is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists error.

      • Commentrequired — (String)

        A comment to describe the origin access identity. The comment cannot be longer than 128 characters.

    • Id — (String)

      The identity's id.

    • IfMatch — (String)

      The value of the ETag header that you received when retrieving the identity's configuration. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CloudFrontOriginAccessIdentity — (map)

        The origin access identity's information.

        • Idrequired — (String)

          The ID for the origin access identity, for example, E74FTE3AJFJ256A.

        • S3CanonicalUserIdrequired — (String)

          The Amazon S3 canonical user ID for the origin access identity, used when giving the origin access identity read permission to an object in Amazon S3.

        • CloudFrontOriginAccessIdentityConfig — (map)

          The current configuration information for the identity.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the CloudFrontOriginAccessIdentityConfig object), a new origin access identity is created.

            If the CallerReference is a value already sent in a previous identity request, and the content of the CloudFrontOriginAccessIdentityConfig is identical to the original request (ignoring white space), the response includes the same information returned to the original request.

            If the CallerReference is a value you already sent in a previous request to create an identity, but the content of the CloudFrontOriginAccessIdentityConfig is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists error.

          • Commentrequired — (String)

            A comment to describe the origin access identity. The comment cannot be longer than 128 characters.

      • ETag — (String)

        The current version of the configuration. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateContinuousDeploymentPolicy(params = {}, callback) ⇒ AWS.Request

Updates a continuous deployment policy. You can update a continuous deployment policy to enable or disable it, to change the percentage of traffic that it sends to the staging distribution, or to change the staging distribution that it sends traffic to.

When you update a continuous deployment policy configuration, all the fields are updated with the values that are provided in the request. You cannot update some fields independent of others. To update a continuous deployment policy configuration:

  1. Use GetContinuousDeploymentPolicyConfig to get the current configuration.

  2. Locally modify the fields in the continuous deployment policy configuration that you want to update.

  3. Use UpdateContinuousDeploymentPolicy, providing the entire continuous deployment policy configuration, including the fields that you modified and those that you didn't.

Examples:

Calling the updateContinuousDeploymentPolicy operation

var params = {
  ContinuousDeploymentPolicyConfig: { /* required */
    Enabled: true || false, /* required */
    StagingDistributionDnsNames: { /* required */
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    TrafficConfig: {
      Type: SingleWeight | SingleHeader, /* required */
      SingleHeaderConfig: {
        Header: 'STRING_VALUE', /* required */
        Value: 'STRING_VALUE' /* required */
      },
      SingleWeightConfig: {
        Weight: 'NUMBER_VALUE', /* required */
        SessionStickinessConfig: {
          IdleTTL: 'NUMBER_VALUE', /* required */
          MaximumTTL: 'NUMBER_VALUE' /* required */
        }
      }
    }
  },
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateContinuousDeploymentPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ContinuousDeploymentPolicyConfig — (map)

      The continuous deployment policy configuration.

      • StagingDistributionDnsNamesrequired — (map)

        The CloudFront domain name of the staging distribution. For example: d111111abcdef8.cloudfront.net.

        • Quantityrequired — (Integer)

          The number of CloudFront domain names in your staging distribution.

        • Items — (Array<String>)

          The CloudFront domain name of the staging distribution.

      • Enabledrequired — (Boolean)

        A Boolean that indicates whether this continuous deployment policy is enabled (in effect). When this value is true, this policy is enabled and in effect. When this value is false, this policy is not enabled and has no effect.

      • TrafficConfig — (map)

        Contains the parameters for routing production traffic from your primary to staging distributions.

        • SingleWeightConfig — (map)

          Contains the percentage of traffic to send to the staging distribution.

          • Weightrequired — (Float)

            The percentage of traffic to send to a staging distribution, expressed as a decimal number between 0 and .15.

          • SessionStickinessConfig — (map)

            Session stickiness provides the ability to define multiple requests from a single viewer as a single session. This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.

            • IdleTTLrequired — (Integer)

              The amount of time after which you want sessions to cease if no requests are received. Allowed values are 300–3600 seconds (5–60 minutes).

              The value must be less than or equal to MaximumTTL.

            • MaximumTTLrequired — (Integer)

              The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes).

              The value must be less than or equal to IdleTTL.

        • SingleHeaderConfig — (map)

          Determines which HTTP requests are sent to the staging distribution.

          • Headerrequired — (String)

            The request header name that you want CloudFront to send to your staging distribution. The header must contain the prefix aws-cf-cd-.

          • Valuerequired — (String)

            The request header value.

        • Typerequired — (String)

          The type of traffic configuration.

          Possible values include:
          • "SingleWeight"
          • "SingleHeader"
    • Id — (String)

      The identifier of the continuous deployment policy that you are updating.

    • IfMatch — (String)

      The current version (ETag value) of the continuous deployment policy that you are updating.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ContinuousDeploymentPolicy — (map)

        A continuous deployment policy.

        • Idrequired — (String)

          The identifier of the continuous deployment policy.

        • LastModifiedTimerequired — (Date)

          The date and time the continuous deployment policy was last modified.

        • ContinuousDeploymentPolicyConfigrequired — (map)

          Contains the configuration for a continuous deployment policy.

          • StagingDistributionDnsNamesrequired — (map)

            The CloudFront domain name of the staging distribution. For example: d111111abcdef8.cloudfront.net.

            • Quantityrequired — (Integer)

              The number of CloudFront domain names in your staging distribution.

            • Items — (Array<String>)

              The CloudFront domain name of the staging distribution.

          • Enabledrequired — (Boolean)

            A Boolean that indicates whether this continuous deployment policy is enabled (in effect). When this value is true, this policy is enabled and in effect. When this value is false, this policy is not enabled and has no effect.

          • TrafficConfig — (map)

            Contains the parameters for routing production traffic from your primary to staging distributions.

            • SingleWeightConfig — (map)

              Contains the percentage of traffic to send to the staging distribution.

              • Weightrequired — (Float)

                The percentage of traffic to send to a staging distribution, expressed as a decimal number between 0 and .15.

              • SessionStickinessConfig — (map)

                Session stickiness provides the ability to define multiple requests from a single viewer as a single session. This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.

                • IdleTTLrequired — (Integer)

                  The amount of time after which you want sessions to cease if no requests are received. Allowed values are 300–3600 seconds (5–60 minutes).

                  The value must be less than or equal to MaximumTTL.

                • MaximumTTLrequired — (Integer)

                  The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes).

                  The value must be less than or equal to IdleTTL.

            • SingleHeaderConfig — (map)

              Determines which HTTP requests are sent to the staging distribution.

              • Headerrequired — (String)

                The request header name that you want CloudFront to send to your staging distribution. The header must contain the prefix aws-cf-cd-.

              • Valuerequired — (String)

                The request header value.

            • Typerequired — (String)

              The type of traffic configuration.

              Possible values include:
              • "SingleWeight"
              • "SingleHeader"
      • ETag — (String)

        The version identifier for the current version of the continuous deployment policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateDistribution(params = {}, callback) ⇒ AWS.Request

Updates the configuration for a CloudFront distribution.

The update process includes getting the current distribution configuration, updating it to make your changes, and then submitting an UpdateDistribution request to make the updates.

To update a web distribution using the CloudFront API

  1. Use GetDistributionConfig to get the current configuration, including the version identifier (ETag).

  2. Update the distribution configuration that was returned in the response. Note the following important requirements and restrictions:

    • You must rename the ETag field to IfMatch, leaving the value unchanged. (Set the value of IfMatch to the value of ETag, then remove the ETag field.)

    • You can't change the value of CallerReference.

  3. Submit an UpdateDistribution request, providing the distribution configuration. The new configuration replaces the existing configuration. The values that you specify in an UpdateDistribution request are not merged into your existing configuration. Make sure to include all fields: the ones that you modified and also the ones that you didn't.

Service Reference:

Examples:

Calling the updateDistribution operation

var params = {
  DistributionConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE', /* required */
    DefaultCacheBehavior: { /* required */
      TargetOriginId: 'STRING_VALUE', /* required */
      ViewerProtocolPolicy: allow-all | https-only | redirect-to-https, /* required */
      AllowedMethods: {
        Items: [ /* required */
          GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
          /* more items */
        ],
        Quantity: 'NUMBER_VALUE', /* required */
        CachedMethods: {
          Items: [ /* required */
            GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
            /* more items */
          ],
          Quantity: 'NUMBER_VALUE' /* required */
        }
      },
      CachePolicyId: 'STRING_VALUE',
      Compress: true || false,
      DefaultTTL: 'NUMBER_VALUE',
      FieldLevelEncryptionId: 'STRING_VALUE',
      ForwardedValues: {
        Cookies: { /* required */
          Forward: none | whitelist | all, /* required */
          WhitelistedNames: {
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              'STRING_VALUE',
              /* more items */
            ]
          }
        },
        QueryString: true || false, /* required */
        Headers: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        },
        QueryStringCacheKeys: {
          Quantity: 'NUMBER_VALUE', /* required */
          Items: [
            'STRING_VALUE',
            /* more items */
          ]
        }
      },
      FunctionAssociations: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
            FunctionARN: 'STRING_VALUE' /* required */
          },
          /* more items */
        ]
      },
      LambdaFunctionAssociations: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
            LambdaFunctionARN: 'STRING_VALUE', /* required */
            IncludeBody: true || false
          },
          /* more items */
        ]
      },
      MaxTTL: 'NUMBER_VALUE',
      MinTTL: 'NUMBER_VALUE',
      OriginRequestPolicyId: 'STRING_VALUE',
      RealtimeLogConfigArn: 'STRING_VALUE',
      ResponseHeadersPolicyId: 'STRING_VALUE',
      SmoothStreaming: true || false,
      TrustedKeyGroups: {
        Enabled: true || false, /* required */
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      TrustedSigners: {
        Enabled: true || false, /* required */
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    Enabled: true || false, /* required */
    Origins: { /* required */
      Items: [ /* required */
        {
          DomainName: 'STRING_VALUE', /* required */
          Id: 'STRING_VALUE', /* required */
          ConnectionAttempts: 'NUMBER_VALUE',
          ConnectionTimeout: 'NUMBER_VALUE',
          CustomHeaders: {
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              {
                HeaderName: 'STRING_VALUE', /* required */
                HeaderValue: 'STRING_VALUE' /* required */
              },
              /* more items */
            ]
          },
          CustomOriginConfig: {
            HTTPPort: 'NUMBER_VALUE', /* required */
            HTTPSPort: 'NUMBER_VALUE', /* required */
            OriginProtocolPolicy: http-only | match-viewer | https-only, /* required */
            OriginKeepaliveTimeout: 'NUMBER_VALUE',
            OriginReadTimeout: 'NUMBER_VALUE',
            OriginSslProtocols: {
              Items: [ /* required */
                SSLv3 | TLSv1 | TLSv1.1 | TLSv1.2,
                /* more items */
              ],
              Quantity: 'NUMBER_VALUE' /* required */
            }
          },
          OriginAccessControlId: 'STRING_VALUE',
          OriginPath: 'STRING_VALUE',
          OriginShield: {
            Enabled: true || false, /* required */
            OriginShieldRegion: 'STRING_VALUE'
          },
          S3OriginConfig: {
            OriginAccessIdentity: 'STRING_VALUE' /* required */
          }
        },
        /* more items */
      ],
      Quantity: 'NUMBER_VALUE' /* required */
    },
    Aliases: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    CacheBehaviors: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          PathPattern: 'STRING_VALUE', /* required */
          TargetOriginId: 'STRING_VALUE', /* required */
          ViewerProtocolPolicy: allow-all | https-only | redirect-to-https, /* required */
          AllowedMethods: {
            Items: [ /* required */
              GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
              /* more items */
            ],
            Quantity: 'NUMBER_VALUE', /* required */
            CachedMethods: {
              Items: [ /* required */
                GET | HEAD | POST | PUT | PATCH | OPTIONS | DELETE,
                /* more items */
              ],
              Quantity: 'NUMBER_VALUE' /* required */
            }
          },
          CachePolicyId: 'STRING_VALUE',
          Compress: true || false,
          DefaultTTL: 'NUMBER_VALUE',
          FieldLevelEncryptionId: 'STRING_VALUE',
          ForwardedValues: {
            Cookies: { /* required */
              Forward: none | whitelist | all, /* required */
              WhitelistedNames: {
                Quantity: 'NUMBER_VALUE', /* required */
                Items: [
                  'STRING_VALUE',
                  /* more items */
                ]
              }
            },
            QueryString: true || false, /* required */
            Headers: {
              Quantity: 'NUMBER_VALUE', /* required */
              Items: [
                'STRING_VALUE',
                /* more items */
              ]
            },
            QueryStringCacheKeys: {
              Quantity: 'NUMBER_VALUE', /* required */
              Items: [
                'STRING_VALUE',
                /* more items */
              ]
            }
          },
          FunctionAssociations: {
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              {
                EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
                FunctionARN: 'STRING_VALUE' /* required */
              },
              /* more items */
            ]
          },
          LambdaFunctionAssociations: {
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              {
                EventType: viewer-request | viewer-response | origin-request | origin-response, /* required */
                LambdaFunctionARN: 'STRING_VALUE', /* required */
                IncludeBody: true || false
              },
              /* more items */
            ]
          },
          MaxTTL: 'NUMBER_VALUE',
          MinTTL: 'NUMBER_VALUE',
          OriginRequestPolicyId: 'STRING_VALUE',
          RealtimeLogConfigArn: 'STRING_VALUE',
          ResponseHeadersPolicyId: 'STRING_VALUE',
          SmoothStreaming: true || false,
          TrustedKeyGroups: {
            Enabled: true || false, /* required */
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              'STRING_VALUE',
              /* more items */
            ]
          },
          TrustedSigners: {
            Enabled: true || false, /* required */
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              'STRING_VALUE',
              /* more items */
            ]
          }
        },
        /* more items */
      ]
    },
    ContinuousDeploymentPolicyId: 'STRING_VALUE',
    CustomErrorResponses: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          ErrorCode: 'NUMBER_VALUE', /* required */
          ErrorCachingMinTTL: 'NUMBER_VALUE',
          ResponseCode: 'STRING_VALUE',
          ResponsePagePath: 'STRING_VALUE'
        },
        /* more items */
      ]
    },
    DefaultRootObject: 'STRING_VALUE',
    HttpVersion: http1.1 | http2 | http3 | http2and3,
    IsIPV6Enabled: true || false,
    Logging: {
      Bucket: 'STRING_VALUE', /* required */
      Enabled: true || false, /* required */
      IncludeCookies: true || false, /* required */
      Prefix: 'STRING_VALUE' /* required */
    },
    OriginGroups: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          FailoverCriteria: { /* required */
            StatusCodes: { /* required */
              Items: [ /* required */
                'NUMBER_VALUE',
                /* more items */
              ],
              Quantity: 'NUMBER_VALUE' /* required */
            }
          },
          Id: 'STRING_VALUE', /* required */
          Members: { /* required */
            Items: [ /* required */
              {
                OriginId: 'STRING_VALUE' /* required */
              },
              /* more items */
            ],
            Quantity: 'NUMBER_VALUE' /* required */
          }
        },
        /* more items */
      ]
    },
    PriceClass: PriceClass_100 | PriceClass_200 | PriceClass_All,
    Restrictions: {
      GeoRestriction: { /* required */
        Quantity: 'NUMBER_VALUE', /* required */
        RestrictionType: blacklist | whitelist | none, /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    Staging: true || false,
    ViewerCertificate: {
      ACMCertificateArn: 'STRING_VALUE',
      Certificate: 'STRING_VALUE',
      CertificateSource: cloudfront | iam | acm,
      CloudFrontDefaultCertificate: true || false,
      IAMCertificateId: 'STRING_VALUE',
      MinimumProtocolVersion: SSLv3 | TLSv1 | TLSv1_2016 | TLSv1.1_2016 | TLSv1.2_2018 | TLSv1.2_2019 | TLSv1.2_2021,
      SSLSupportMethod: sni-only | vip | static-ip
    },
    WebACLId: 'STRING_VALUE'
  },
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateDistribution(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DistributionConfig — (map)

      The distribution's configuration information.

      • CallerReferencerequired — (String)

        A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

        If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

        If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

      • Aliases — (map)

        A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

        • Quantityrequired — (Integer)

          The number of CNAME aliases, if any, that you want to associate with this distribution.

        • Items — (Array<String>)

          A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

      • DefaultRootObject — (String)

        The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

        Specify only the object name, for example, index.html. Don't add a / before the object name.

        If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

        To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

        To replace the default root object, update the distribution configuration and specify the new object.

        For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

      • Originsrequired — (map)

        A complex type that contains information about origins for this distribution.

        • Quantityrequired — (Integer)

          The number of origins for this distribution.

        • Itemsrequired — (Array<map>)

          A list of origins.

          • Idrequired — (String)

            A unique identifier for the origin. This value must be unique within the distribution.

            Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

          • DomainNamerequired — (String)

            The domain name for the origin.

            For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

          • OriginPath — (String)

            An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

            For more information, see Origin Path in the Amazon CloudFront Developer Guide.

          • CustomHeaders — (map)

            A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

            For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of custom headers, if any, for this distribution.

            • Items — (Array<map>)

              Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

              • HeaderNamerequired — (String)

                The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

              • HeaderValuerequired — (String)

                The value for the header that you specified in the HeaderName field.

          • S3OriginConfig — (map)

            Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

            • OriginAccessIdentityrequired — (String)

              The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

              origin-access-identity/cloudfront/ID-of-origin-access-identity

              where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

              If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

              To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

              To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

              For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

          • CustomOriginConfig — (map)

            Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

            • HTTPPortrequired — (Integer)

              The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

            • HTTPSPortrequired — (Integer)

              The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

            • OriginProtocolPolicyrequired — (String)

              Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

              • http-only – CloudFront always uses HTTP to connect to the origin.

              • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

              • https-only – CloudFront always uses HTTPS to connect to the origin.

              Possible values include:
              • "http-only"
              • "match-viewer"
              • "https-only"
            • OriginSslProtocols — (map)

              Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

              For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

              • Quantityrequired — (Integer)

                The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

              • Itemsrequired — (Array<String>)

                A list that contains allowed SSL/TLS protocols for this distribution.

            • OriginReadTimeout — (Integer)

              Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

              For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

            • OriginKeepaliveTimeout — (Integer)

              Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

              For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

          • ConnectionAttempts — (Integer)

            The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

            For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

            For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

          • ConnectionTimeout — (Integer)

            The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

            For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

          • OriginShield — (map)

            CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

            For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              A flag that specifies whether Origin Shield is enabled.

              When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

            • OriginShieldRegion — (String)

              The Amazon Web Services Region for Origin Shield.

              Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

              When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

          • OriginAccessControlId — (String)

            The unique identifier of an origin access control for this origin.

            For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

      • OriginGroups — (map)

        A complex type that contains information about origin groups for this distribution.

        • Quantityrequired — (Integer)

          The number of origin groups.

        • Items — (Array<map>)

          The items (origin groups) in a distribution.

          • Idrequired — (String)

            The origin group's ID.

          • FailoverCriteriarequired — (map)

            A complex type that contains information about the failover criteria for an origin group.

            • StatusCodesrequired — (map)

              The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

              • Quantityrequired — (Integer)

                The number of status codes.

              • Itemsrequired — (Array<Integer>)

                The items (status codes) for an origin group.

          • Membersrequired — (map)

            A complex type that contains information about the origins in an origin group.

            • Quantityrequired — (Integer)

              The number of origins in an origin group.

            • Itemsrequired — (Array<map>)

              Items (origins) in an origin group.

              • OriginIdrequired — (String)

                The ID for an origin in an origin group.

      • DefaultCacheBehaviorrequired — (map)

        A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

        • TargetOriginIdrequired — (String)

          The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

        • TrustedSigners — (map)

          We recommend using TrustedKeyGroups instead of TrustedSigners.

          A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

          When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<String>)

            A list of Amazon Web Services account identifiers.

        • TrustedKeyGroups — (map)

          A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

          When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of key groups in the list.

          • Items — (Array<String>)

            A list of key groups identifiers.

        • ViewerProtocolPolicyrequired — (String)

          The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

          • allow-all: Viewers can use HTTP or HTTPS.

          • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

          • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

          For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

          Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
          Possible values include:
          • "allow-all"
          • "https-only"
          • "redirect-to-https"
        • AllowedMethods — (map)

          A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

          • CloudFront forwards only GET and HEAD requests.

          • CloudFront forwards only GET, HEAD, and OPTIONS requests.

          • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

          If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

          • Quantityrequired — (Integer)

            The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

          • Itemsrequired — (Array<String>)

            A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

          • CachedMethods — (map)

            A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

            • CloudFront caches responses to GET and HEAD requests.

            • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

            If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

            • Quantityrequired — (Integer)

              The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

            • Itemsrequired — (Array<String>)

              A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

        • SmoothStreaming — (Boolean)

          Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

        • Compress — (Boolean)

          Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

        • LambdaFunctionAssociations — (map)

          A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

          • Quantityrequired — (Integer)

            The number of Lambda@Edge function associations for this cache behavior.

          • Items — (Array<map>)

            Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

            • LambdaFunctionARNrequired — (String)

              The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

            • EventTyperequired — (String)

              Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

              • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

              • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

              • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

              • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

              Possible values include:
              • "viewer-request"
              • "viewer-response"
              • "origin-request"
              • "origin-response"
            • IncludeBody — (Boolean)

              A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

        • FunctionAssociations — (map)

          A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

          • Quantityrequired — (Integer)

            The number of CloudFront functions in the list.

          • Items — (Array<map>)

            The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

            • FunctionARNrequired — (String)

              The Amazon Resource Name (ARN) of the function.

            • EventTyperequired — (String)

              The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

              Possible values include:
              • "viewer-request"
              • "viewer-response"
              • "origin-request"
              • "origin-response"
        • FieldLevelEncryptionId — (String)

          The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

        • RealtimeLogConfigArn — (String)

          The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

        • CachePolicyId — (String)

          The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

          A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

        • OriginRequestPolicyId — (String)

          The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

        • ResponseHeadersPolicyId — (String)

          The identifier for a response headers policy.

        • ForwardedValues — (map)

          This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

          If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

          If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

          A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

          A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

          • QueryStringrequired — (Boolean)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

            If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

            If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

            Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

            If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

            If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

            If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

            For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

          • Cookiesrequired — (map)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

            If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

            If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

            A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

            • Forwardrequired — (String)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

              Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

              Possible values include:
              • "none"
              • "whitelist"
              • "all"
            • WhitelistedNames — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

              If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

              For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

              • Quantityrequired — (Integer)

                The number of cookie names in the Items list.

              • Items — (Array<String>)

                A list of cookie names.

          • Headers — (map)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

            If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

            If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

            A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

            For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of header names in the Items list.

            • Items — (Array<String>)

              A list of HTTP header names.

          • QueryStringCacheKeys — (map)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

            If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

            If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

            A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

            • Quantityrequired — (Integer)

              The number of whitelisted query string parameters for a cache behavior.

            • Items — (Array<String>)

              A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

        • MinTTL — (Integer)

          This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

          The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

        • DefaultTTL — (Integer)

          This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

          The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

        • MaxTTL — (Integer)

          This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

          The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

      • CacheBehaviors — (map)

        A complex type that contains zero or more CacheBehavior elements.

        • Quantityrequired — (Integer)

          The number of cache behaviors for this distribution.

        • Items — (Array<map>)

          Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

          • PathPatternrequired — (String)

            The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

            Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

            The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

            For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

          • TargetOriginIdrequired — (String)

            The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

          • TrustedSigners — (map)

            We recommend using TrustedKeyGroups instead of TrustedSigners.

            A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

            When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of Amazon Web Services accounts in the list.

            • Items — (Array<String>)

              A list of Amazon Web Services account identifiers.

          • TrustedKeyGroups — (map)

            A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

            When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of key groups in the list.

            • Items — (Array<String>)

              A list of key groups identifiers.

          • ViewerProtocolPolicyrequired — (String)

            The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

            • allow-all: Viewers can use HTTP or HTTPS.

            • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

            • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

            For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

            Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
            Possible values include:
            • "allow-all"
            • "https-only"
            • "redirect-to-https"
          • AllowedMethods — (map)

            A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

            • CloudFront forwards only GET and HEAD requests.

            • CloudFront forwards only GET, HEAD, and OPTIONS requests.

            • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

            If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

            • Quantityrequired — (Integer)

              The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

            • Itemsrequired — (Array<String>)

              A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

            • CachedMethods — (map)

              A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

              • CloudFront caches responses to GET and HEAD requests.

              • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

              If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

              • Quantityrequired — (Integer)

                The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

          • SmoothStreaming — (Boolean)

            Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

          • Compress — (Boolean)

            Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

          • LambdaFunctionAssociations — (map)

            A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

            • Quantityrequired — (Integer)

              The number of Lambda@Edge function associations for this cache behavior.

            • Items — (Array<map>)

              Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

              • LambdaFunctionARNrequired — (String)

                The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

              • EventTyperequired — (String)

                Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                  If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                Possible values include:
                • "viewer-request"
                • "viewer-response"
                • "origin-request"
                • "origin-response"
              • IncludeBody — (Boolean)

                A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

          • FunctionAssociations — (map)

            A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

            • Quantityrequired — (Integer)

              The number of CloudFront functions in the list.

            • Items — (Array<map>)

              The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • FunctionARNrequired — (String)

                The Amazon Resource Name (ARN) of the function.

              • EventTyperequired — (String)

                The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                Possible values include:
                • "viewer-request"
                • "viewer-response"
                • "origin-request"
                • "origin-response"
          • FieldLevelEncryptionId — (String)

            The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

          • RealtimeLogConfigArn — (String)

            The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

          • CachePolicyId — (String)

            The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

          • OriginRequestPolicyId — (String)

            The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

          • ResponseHeadersPolicyId — (String)

            The identifier for a response headers policy.

          • ForwardedValues — (map)

            This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

            If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

            • QueryStringrequired — (Boolean)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

              If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

              If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

              If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

              For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

            • Cookiesrequired — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

              • Forwardrequired — (String)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                Possible values include:
                • "none"
                • "whitelist"
                • "all"
              • WhitelistedNames — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                • Quantityrequired — (Integer)

                  The number of cookie names in the Items list.

                • Items — (Array<String>)

                  A list of cookie names.

            • Headers — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

              For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

              • Quantityrequired — (Integer)

                The number of header names in the Items list.

              • Items — (Array<String>)

                A list of HTTP header names.

            • QueryStringCacheKeys — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

              If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

              If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

              A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

              • Quantityrequired — (Integer)

                The number of whitelisted query string parameters for a cache behavior.

              • Items — (Array<String>)

                A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

          • MinTTL — (Integer)

            This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

          • DefaultTTL — (Integer)

            This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • MaxTTL — (Integer)

            This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

            The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

      • CustomErrorResponses — (map)

        A complex type that controls the following:

        • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

        • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

        For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

        • Quantityrequired — (Integer)

          The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

        • Items — (Array<map>)

          A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

          • ErrorCoderequired — (Integer)

            The HTTP status code for which you want to specify a custom error page and/or a caching duration.

          • ResponsePagePath — (String)

            The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

            • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

            • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

            If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

            We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

          • ResponseCode — (String)

            The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

            • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

            • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

            • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

            If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

          • ErrorCachingMinTTL — (Integer)

            The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

            For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

      • Commentrequired — (String)

        A comment to describe the distribution. The comment cannot be longer than 128 characters.

      • Logging — (map)

        A complex type that controls whether access logs are written for the distribution.

        For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

        • Enabledrequired — (Boolean)

          Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

        • IncludeCookiesrequired — (Boolean)

          Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

        • Bucketrequired — (String)

          The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

        • Prefixrequired — (String)

          An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

      • PriceClass — (String)

        The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

        If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

        For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

        Possible values include:
        • "PriceClass_100"
        • "PriceClass_200"
        • "PriceClass_All"
      • Enabledrequired — (Boolean)

        From this field, you can enable or disable the selected distribution.

      • ViewerCertificate — (map)

        A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

        • CloudFrontDefaultCertificate — (Boolean)

          If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

          If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

          • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

          • MinimumProtocolVersion

          • SSLSupportMethod

        • IAMCertificateId — (String)

          If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

          If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

        • ACMCertificateArn — (String)

          If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

          If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

        • SSLSupportMethod — (String)

          If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

          • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

          • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

          • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

          If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

          Possible values include:
          • "sni-only"
          • "vip"
          • "static-ip"
        • MinimumProtocolVersion — (String)

          If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

          • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

          • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

          For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

          Note: On the CloudFront console, this setting is called Security Policy.

          When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

          If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

          Possible values include:
          • "SSLv3"
          • "TLSv1"
          • "TLSv1_2016"
          • "TLSv1.1_2016"
          • "TLSv1.2_2018"
          • "TLSv1.2_2019"
          • "TLSv1.2_2021"
        • Certificate — (String)

          This field is deprecated. Use one of the following fields instead:

          • ACMCertificateArn

          • IAMCertificateId

          • CloudFrontDefaultCertificate

        • CertificateSource — (String)

          This field is deprecated. Use one of the following fields instead:

          • ACMCertificateArn

          • IAMCertificateId

          • CloudFrontDefaultCertificate

          Possible values include:
          • "cloudfront"
          • "iam"
          • "acm"
      • Restrictions — (map)

        A complex type that identifies ways in which you want to restrict distribution of your content.

        • GeoRestrictionrequired — (map)

          A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

          • RestrictionTyperequired — (String)

            The method that you want to use to restrict distribution of your content by country:

            • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

            • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

            • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

            Possible values include:
            • "blacklist"
            • "whitelist"
            • "none"
          • Quantityrequired — (Integer)

            When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

          • Items — (Array<String>)

            A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

            The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

            CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

      • WebACLId — (String)

        A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

        WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

      • HttpVersion — (String)

        (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

        For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

        For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

        Possible values include:
        • "http1.1"
        • "http2"
        • "http3"
        • "http2and3"
      • IsIPV6Enabled — (Boolean)

        If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

        In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

        If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

        • You enable IPv6 for the distribution

        • You're using alternate domain names in the URLs for your objects

        For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

        If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

      • ContinuousDeploymentPolicyId — (String)

        The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

      • Staging — (Boolean)

        A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

    • Id — (String)

      The distribution's id.

    • IfMatch — (String)

      The value of the ETag header that you received when retrieving the distribution's configuration. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Distribution — (map)

        The distribution's information.

        • Idrequired — (String)

          The distribution's identifier. For example: E1U5RQF7T870K0.

        • ARNrequired — (String)

          The distribution's Amazon Resource Name (ARN).

        • Statusrequired — (String)

          The distribution's status. When the status is Deployed, the distribution's information is fully propagated to all CloudFront edge locations.

        • LastModifiedTimerequired — (Date)

          The date and time when the distribution was last modified.

        • InProgressInvalidationBatchesrequired — (Integer)

          The number of invalidation batches currently in progress.

        • DomainNamerequired — (String)

          The distribution's CloudFront domain name. For example: d111111abcdef8.cloudfront.net.

        • ActiveTrustedSigners — (map)

          We recommend using TrustedKeyGroups instead of TrustedSigners.

          This field contains a list of Amazon Web Services account IDs and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • ActiveTrustedKeyGroups — (map)

          This field contains a list of key groups and the public keys in each key group that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the key groups have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of key groups in the list.

          • Items — (Array<map>)

            A list of key groups, including the identifiers of the public keys in each key group that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • KeyGroupId — (String)

              The identifier of the key group that contains the public keys.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • DistributionConfigrequired — (map)

          The distribution's configuration.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • DefaultRootObject — (String)

            The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

            Specify only the object name, for example, index.html. Don't add a / before the object name.

            If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

            To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

            To replace the default root object, update the distribution configuration and specify the new object.

            For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

          • Originsrequired — (map)

            A complex type that contains information about origins for this distribution.

            • Quantityrequired — (Integer)

              The number of origins for this distribution.

            • Itemsrequired — (Array<map>)

              A list of origins.

              • Idrequired — (String)

                A unique identifier for the origin. This value must be unique within the distribution.

                Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

              • DomainNamerequired — (String)

                The domain name for the origin.

                For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

              • OriginPath — (String)

                An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

                For more information, see Origin Path in the Amazon CloudFront Developer Guide.

              • CustomHeaders — (map)

                A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

                For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of custom headers, if any, for this distribution.

                • Items — (Array<map>)

                  Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                  • HeaderNamerequired — (String)

                    The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                  • HeaderValuerequired — (String)

                    The value for the header that you specified in the HeaderName field.

              • S3OriginConfig — (map)

                Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

                • OriginAccessIdentityrequired — (String)

                  The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                  origin-access-identity/cloudfront/ID-of-origin-access-identity

                  where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                  For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

              • CustomOriginConfig — (map)

                Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

                • HTTPPortrequired — (Integer)

                  The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

                • HTTPSPortrequired — (Integer)

                  The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

                • OriginProtocolPolicyrequired — (String)

                  Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                  • http-only – CloudFront always uses HTTP to connect to the origin.

                  • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                  • https-only – CloudFront always uses HTTPS to connect to the origin.

                  Possible values include:
                  • "http-only"
                  • "match-viewer"
                  • "https-only"
                • OriginSslProtocols — (map)

                  Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                  For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                  • Itemsrequired — (Array<String>)

                    A list that contains allowed SSL/TLS protocols for this distribution.

                • OriginReadTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                  For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

                • OriginKeepaliveTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                  For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

              • ConnectionAttempts — (Integer)

                The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

                For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

                For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

              • ConnectionTimeout — (Integer)

                The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

                For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

              • OriginShield — (map)

                CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

                For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  A flag that specifies whether Origin Shield is enabled.

                  When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

                • OriginShieldRegion — (String)

                  The Amazon Web Services Region for Origin Shield.

                  Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                  When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

              • OriginAccessControlId — (String)

                The unique identifier of an origin access control for this origin.

                For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

          • OriginGroups — (map)

            A complex type that contains information about origin groups for this distribution.

            • Quantityrequired — (Integer)

              The number of origin groups.

            • Items — (Array<map>)

              The items (origin groups) in a distribution.

              • Idrequired — (String)

                The origin group's ID.

              • FailoverCriteriarequired — (map)

                A complex type that contains information about the failover criteria for an origin group.

                • StatusCodesrequired — (map)

                  The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                  • Quantityrequired — (Integer)

                    The number of status codes.

                  • Itemsrequired — (Array<Integer>)

                    The items (status codes) for an origin group.

              • Membersrequired — (map)

                A complex type that contains information about the origins in an origin group.

                • Quantityrequired — (Integer)

                  The number of origins in an origin group.

                • Itemsrequired — (Array<map>)

                  Items (origins) in an origin group.

                  • OriginIdrequired — (String)

                    The ID for an origin in an origin group.

          • DefaultCacheBehaviorrequired — (map)

            A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CacheBehaviors — (map)

            A complex type that contains zero or more CacheBehavior elements.

            • Quantityrequired — (Integer)

              The number of cache behaviors for this distribution.

            • Items — (Array<map>)

              Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

              • PathPatternrequired — (String)

                The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

                Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

                The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

                For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

              • TargetOriginIdrequired — (String)

                The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

              • TrustedSigners — (map)

                We recommend using TrustedKeyGroups instead of TrustedSigners.

                A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of Amazon Web Services accounts in the list.

                • Items — (Array<String>)

                  A list of Amazon Web Services account identifiers.

              • TrustedKeyGroups — (map)

                A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of key groups in the list.

                • Items — (Array<String>)

                  A list of key groups identifiers.

              • ViewerProtocolPolicyrequired — (String)

                The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

                • allow-all: Viewers can use HTTP or HTTPS.

                • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

                • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

                For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

                Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
                Possible values include:
                • "allow-all"
                • "https-only"
                • "redirect-to-https"
              • AllowedMethods — (map)

                A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

                • CloudFront forwards only GET and HEAD requests.

                • CloudFront forwards only GET, HEAD, and OPTIONS requests.

                • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

                If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

                • Quantityrequired — (Integer)

                  The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

                • CachedMethods — (map)

                  A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                  • CloudFront caches responses to GET and HEAD requests.

                  • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                  If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                  • Itemsrequired — (Array<String>)

                    A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

              • SmoothStreaming — (Boolean)

                Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

              • Compress — (Boolean)

                Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

              • LambdaFunctionAssociations — (map)

                A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

                • Quantityrequired — (Integer)

                  The number of Lambda@Edge function associations for this cache behavior.

                • Items — (Array<map>)

                  Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                  • LambdaFunctionARNrequired — (String)

                    The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                  • EventTyperequired — (String)

                    Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                    • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                    • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                    • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                    • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                      If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
                  • IncludeBody — (Boolean)

                    A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

              • FunctionAssociations — (map)

                A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • Quantityrequired — (Integer)

                  The number of CloudFront functions in the list.

                • Items — (Array<map>)

                  The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                  • FunctionARNrequired — (String)

                    The Amazon Resource Name (ARN) of the function.

                  • EventTyperequired — (String)

                    The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
              • FieldLevelEncryptionId — (String)

                The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

              • RealtimeLogConfigArn — (String)

                The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

              • CachePolicyId — (String)

                The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              • OriginRequestPolicyId — (String)

                The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              • ResponseHeadersPolicyId — (String)

                The identifier for a response headers policy.

              • ForwardedValues — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

                If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

                A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

                • QueryStringrequired — (Boolean)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                  If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                  If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                  If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                  For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

                • Cookiesrequired — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                  • Forwardrequired — (String)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                    Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "all"
                  • WhitelistedNames — (map)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                    If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                    For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • Headers — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                  For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

                • QueryStringCacheKeys — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                  • Quantityrequired — (Integer)

                    The number of whitelisted query string parameters for a cache behavior.

                  • Items — (Array<String>)

                    A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

              • MinTTL — (Integer)

                This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

              • DefaultTTL — (Integer)

                This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • MaxTTL — (Integer)

                This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CustomErrorResponses — (map)

            A complex type that controls the following:

            • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

            • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

            For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

            • Items — (Array<map>)

              A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ErrorCoderequired — (Integer)

                The HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ResponsePagePath — (String)

                The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

                • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

                • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

                If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

                We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

              • ResponseCode — (String)

                The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

                • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

                • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

                • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

                If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

              • ErrorCachingMinTTL — (Integer)

                The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

                For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Commentrequired — (String)

            A comment to describe the distribution. The comment cannot be longer than 128 characters.

          • Logging — (map)

            A complex type that controls whether access logs are written for the distribution.

            For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

            • IncludeCookiesrequired — (Boolean)

              Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • PriceClass — (String)

            The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

            If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

            For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            From this field, you can enable or disable the selected distribution.

          • ViewerCertificate — (map)

            A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

            • CloudFrontDefaultCertificate — (Boolean)

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

              If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

              • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

              • MinimumProtocolVersion

              • SSLSupportMethod

            • IAMCertificateId — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

              If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • ACMCertificateArn — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

              If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • SSLSupportMethod — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

              • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

              • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

              • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

              Possible values include:
              • "sni-only"
              • "vip"
              • "static-ip"
            • MinimumProtocolVersion — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

              • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

              • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

              For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: On the CloudFront console, this setting is called Security Policy.

              When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

              Possible values include:
              • "SSLv3"
              • "TLSv1"
              • "TLSv1_2016"
              • "TLSv1.1_2016"
              • "TLSv1.2_2018"
              • "TLSv1.2_2019"
              • "TLSv1.2_2021"
            • Certificate — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

            • CertificateSource — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

              Possible values include:
              • "cloudfront"
              • "iam"
              • "acm"
          • Restrictions — (map)

            A complex type that identifies ways in which you want to restrict distribution of your content.

            • GeoRestrictionrequired — (map)

              A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

              • RestrictionTyperequired — (String)

                The method that you want to use to restrict distribution of your content by country:

                • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

                • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

                • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

                Possible values include:
                • "blacklist"
                • "whitelist"
                • "none"
              • Quantityrequired — (Integer)

                When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

              • Items — (Array<String>)

                A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

                The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

                CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

          • WebACLId — (String)

            A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

            WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

          • HttpVersion — (String)

            (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

            For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

            For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

            Possible values include:
            • "http1.1"
            • "http2"
            • "http3"
            • "http2and3"
          • IsIPV6Enabled — (Boolean)

            If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

            In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

            If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

            • You enable IPv6 for the distribution

            • You're using alternate domain names in the URLs for your objects

            For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

            If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

          • ContinuousDeploymentPolicyId — (String)

            The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

          • Staging — (Boolean)

            A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

        • AliasICPRecordals — (Array<map>)

          Amazon Web Services services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

          For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with Amazon Web Services services in China.

          • CNAME — (String)

            A domain name associated with a distribution.

          • ICPRecordalStatus — (String)

            The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China.

            The status values returned are the following:

            • APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it.

            • SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number.

            • PENDING indicates that CloudFront can't determine the ICP recordal status of the CNAME associated with the distribution because there was an error in trying to determine the status. You can try again to see if the error is resolved in which case CloudFront returns an APPROVED or SUSPENDED status.

            Possible values include:
            • "APPROVED"
            • "SUSPENDED"
            • "PENDING"
      • ETag — (String)

        The current version of the configuration. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateDistributionWithStagingConfig(params = {}, callback) ⇒ AWS.Request

Copies the staging distribution's configuration to its corresponding primary distribution. The primary distribution retains its Aliases (also known as alternate domain names or CNAMEs) and ContinuousDeploymentPolicyId value, but otherwise its configuration is overwritten to match the staging distribution.

You can use this operation in a continuous deployment workflow after you have tested configuration changes on the staging distribution. After using a continuous deployment policy to move a portion of your domain name's traffic to the staging distribution and verifying that it works as intended, you can use this operation to copy the staging distribution's configuration to the primary distribution. This action will disable the continuous deployment policy and move your domain's traffic back to the primary distribution.

This API operation requires the following IAM permissions:

Examples:

Calling the updateDistributionWithStagingConfig operation

var params = {
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE',
  StagingDistributionId: 'STRING_VALUE'
};
cloudfront.updateDistributionWithStagingConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Id — (String)

      The identifier of the primary distribution to which you are copying a staging distribution's configuration.

    • StagingDistributionId — (String)

      The identifier of the staging distribution whose configuration you are copying to the primary distribution.

    • IfMatch — (String)

      The current versions (ETag values) of both primary and staging distributions. Provide these in the following format:

      <primary ETag>, <staging ETag>

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Distribution — (map)

        A distribution tells CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery.

        • Idrequired — (String)

          The distribution's identifier. For example: E1U5RQF7T870K0.

        • ARNrequired — (String)

          The distribution's Amazon Resource Name (ARN).

        • Statusrequired — (String)

          The distribution's status. When the status is Deployed, the distribution's information is fully propagated to all CloudFront edge locations.

        • LastModifiedTimerequired — (Date)

          The date and time when the distribution was last modified.

        • InProgressInvalidationBatchesrequired — (Integer)

          The number of invalidation batches currently in progress.

        • DomainNamerequired — (String)

          The distribution's CloudFront domain name. For example: d111111abcdef8.cloudfront.net.

        • ActiveTrustedSigners — (map)

          We recommend using TrustedKeyGroups instead of TrustedSigners.

          This field contains a list of Amazon Web Services account IDs and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • ActiveTrustedKeyGroups — (map)

          This field contains a list of key groups and the public keys in each key group that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the key groups have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of key groups in the list.

          • Items — (Array<map>)

            A list of key groups, including the identifiers of the public keys in each key group that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • KeyGroupId — (String)

              The identifier of the key group that contains the public keys.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • DistributionConfigrequired — (map)

          The distribution's configuration.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • DefaultRootObject — (String)

            The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

            Specify only the object name, for example, index.html. Don't add a / before the object name.

            If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

            To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

            To replace the default root object, update the distribution configuration and specify the new object.

            For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

          • Originsrequired — (map)

            A complex type that contains information about origins for this distribution.

            • Quantityrequired — (Integer)

              The number of origins for this distribution.

            • Itemsrequired — (Array<map>)

              A list of origins.

              • Idrequired — (String)

                A unique identifier for the origin. This value must be unique within the distribution.

                Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

              • DomainNamerequired — (String)

                The domain name for the origin.

                For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

              • OriginPath — (String)

                An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

                For more information, see Origin Path in the Amazon CloudFront Developer Guide.

              • CustomHeaders — (map)

                A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

                For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of custom headers, if any, for this distribution.

                • Items — (Array<map>)

                  Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                  • HeaderNamerequired — (String)

                    The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                  • HeaderValuerequired — (String)

                    The value for the header that you specified in the HeaderName field.

              • S3OriginConfig — (map)

                Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

                • OriginAccessIdentityrequired — (String)

                  The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                  origin-access-identity/cloudfront/ID-of-origin-access-identity

                  where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                  For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

              • CustomOriginConfig — (map)

                Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

                • HTTPPortrequired — (Integer)

                  The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

                • HTTPSPortrequired — (Integer)

                  The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

                • OriginProtocolPolicyrequired — (String)

                  Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                  • http-only – CloudFront always uses HTTP to connect to the origin.

                  • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                  • https-only – CloudFront always uses HTTPS to connect to the origin.

                  Possible values include:
                  • "http-only"
                  • "match-viewer"
                  • "https-only"
                • OriginSslProtocols — (map)

                  Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                  For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                  • Itemsrequired — (Array<String>)

                    A list that contains allowed SSL/TLS protocols for this distribution.

                • OriginReadTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                  For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

                • OriginKeepaliveTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                  For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

              • ConnectionAttempts — (Integer)

                The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

                For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

                For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

              • ConnectionTimeout — (Integer)

                The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

                For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

              • OriginShield — (map)

                CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

                For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  A flag that specifies whether Origin Shield is enabled.

                  When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

                • OriginShieldRegion — (String)

                  The Amazon Web Services Region for Origin Shield.

                  Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                  When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

              • OriginAccessControlId — (String)

                The unique identifier of an origin access control for this origin.

                For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

          • OriginGroups — (map)

            A complex type that contains information about origin groups for this distribution.

            • Quantityrequired — (Integer)

              The number of origin groups.

            • Items — (Array<map>)

              The items (origin groups) in a distribution.

              • Idrequired — (String)

                The origin group's ID.

              • FailoverCriteriarequired — (map)

                A complex type that contains information about the failover criteria for an origin group.

                • StatusCodesrequired — (map)

                  The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                  • Quantityrequired — (Integer)

                    The number of status codes.

                  • Itemsrequired — (Array<Integer>)

                    The items (status codes) for an origin group.

              • Membersrequired — (map)

                A complex type that contains information about the origins in an origin group.

                • Quantityrequired — (Integer)

                  The number of origins in an origin group.

                • Itemsrequired — (Array<map>)

                  Items (origins) in an origin group.

                  • OriginIdrequired — (String)

                    The ID for an origin in an origin group.

          • DefaultCacheBehaviorrequired — (map)

            A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CacheBehaviors — (map)

            A complex type that contains zero or more CacheBehavior elements.

            • Quantityrequired — (Integer)

              The number of cache behaviors for this distribution.

            • Items — (Array<map>)

              Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

              • PathPatternrequired — (String)

                The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

                Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

                The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

                For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

              • TargetOriginIdrequired — (String)

                The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

              • TrustedSigners — (map)

                We recommend using TrustedKeyGroups instead of TrustedSigners.

                A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of Amazon Web Services accounts in the list.

                • Items — (Array<String>)

                  A list of Amazon Web Services account identifiers.

              • TrustedKeyGroups — (map)

                A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of key groups in the list.

                • Items — (Array<String>)

                  A list of key groups identifiers.

              • ViewerProtocolPolicyrequired — (String)

                The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

                • allow-all: Viewers can use HTTP or HTTPS.

                • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

                • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

                For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

                Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
                Possible values include:
                • "allow-all"
                • "https-only"
                • "redirect-to-https"
              • AllowedMethods — (map)

                A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

                • CloudFront forwards only GET and HEAD requests.

                • CloudFront forwards only GET, HEAD, and OPTIONS requests.

                • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

                If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

                • Quantityrequired — (Integer)

                  The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

                • CachedMethods — (map)

                  A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                  • CloudFront caches responses to GET and HEAD requests.

                  • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                  If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                  • Itemsrequired — (Array<String>)

                    A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

              • SmoothStreaming — (Boolean)

                Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

              • Compress — (Boolean)

                Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

              • LambdaFunctionAssociations — (map)

                A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

                • Quantityrequired — (Integer)

                  The number of Lambda@Edge function associations for this cache behavior.

                • Items — (Array<map>)

                  Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                  • LambdaFunctionARNrequired — (String)

                    The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                  • EventTyperequired — (String)

                    Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                    • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                    • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                    • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                    • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                      If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
                  • IncludeBody — (Boolean)

                    A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

              • FunctionAssociations — (map)

                A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • Quantityrequired — (Integer)

                  The number of CloudFront functions in the list.

                • Items — (Array<map>)

                  The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                  • FunctionARNrequired — (String)

                    The Amazon Resource Name (ARN) of the function.

                  • EventTyperequired — (String)

                    The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
              • FieldLevelEncryptionId — (String)

                The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

              • RealtimeLogConfigArn — (String)

                The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

              • CachePolicyId — (String)

                The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              • OriginRequestPolicyId — (String)

                The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              • ResponseHeadersPolicyId — (String)

                The identifier for a response headers policy.

              • ForwardedValues — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

                If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

                A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

                • QueryStringrequired — (Boolean)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                  If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                  If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                  If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                  For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

                • Cookiesrequired — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                  • Forwardrequired — (String)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                    Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "all"
                  • WhitelistedNames — (map)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                    If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                    For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • Headers — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                  For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

                • QueryStringCacheKeys — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                  • Quantityrequired — (Integer)

                    The number of whitelisted query string parameters for a cache behavior.

                  • Items — (Array<String>)

                    A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

              • MinTTL — (Integer)

                This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

              • DefaultTTL — (Integer)

                This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • MaxTTL — (Integer)

                This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CustomErrorResponses — (map)

            A complex type that controls the following:

            • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

            • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

            For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

            • Items — (Array<map>)

              A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ErrorCoderequired — (Integer)

                The HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ResponsePagePath — (String)

                The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

                • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

                • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

                If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

                We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

              • ResponseCode — (String)

                The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

                • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

                • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

                • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

                If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

              • ErrorCachingMinTTL — (Integer)

                The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

                For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Commentrequired — (String)

            A comment to describe the distribution. The comment cannot be longer than 128 characters.

          • Logging — (map)

            A complex type that controls whether access logs are written for the distribution.

            For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

            • IncludeCookiesrequired — (Boolean)

              Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • PriceClass — (String)

            The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

            If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

            For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            From this field, you can enable or disable the selected distribution.

          • ViewerCertificate — (map)

            A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

            • CloudFrontDefaultCertificate — (Boolean)

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

              If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

              • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

              • MinimumProtocolVersion

              • SSLSupportMethod

            • IAMCertificateId — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

              If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • ACMCertificateArn — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

              If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • SSLSupportMethod — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

              • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

              • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

              • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

              Possible values include:
              • "sni-only"
              • "vip"
              • "static-ip"
            • MinimumProtocolVersion — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

              • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

              • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

              For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: On the CloudFront console, this setting is called Security Policy.

              When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

              Possible values include:
              • "SSLv3"
              • "TLSv1"
              • "TLSv1_2016"
              • "TLSv1.1_2016"
              • "TLSv1.2_2018"
              • "TLSv1.2_2019"
              • "TLSv1.2_2021"
            • Certificate — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

            • CertificateSource — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

              Possible values include:
              • "cloudfront"
              • "iam"
              • "acm"
          • Restrictions — (map)

            A complex type that identifies ways in which you want to restrict distribution of your content.

            • GeoRestrictionrequired — (map)

              A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

              • RestrictionTyperequired — (String)

                The method that you want to use to restrict distribution of your content by country:

                • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

                • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

                • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

                Possible values include:
                • "blacklist"
                • "whitelist"
                • "none"
              • Quantityrequired — (Integer)

                When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

              • Items — (Array<String>)

                A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

                The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

                CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

          • WebACLId — (String)

            A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

            WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

          • HttpVersion — (String)

            (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

            For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

            For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

            Possible values include:
            • "http1.1"
            • "http2"
            • "http3"
            • "http2and3"
          • IsIPV6Enabled — (Boolean)

            If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

            In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

            If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

            • You enable IPv6 for the distribution

            • You're using alternate domain names in the URLs for your objects

            For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

            If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

          • ContinuousDeploymentPolicyId — (String)

            The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

          • Staging — (Boolean)

            A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

        • AliasICPRecordals — (Array<map>)

          Amazon Web Services services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

          For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with Amazon Web Services services in China.

          • CNAME — (String)

            A domain name associated with a distribution.

          • ICPRecordalStatus — (String)

            The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China.

            The status values returned are the following:

            • APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it.

            • SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number.

            • PENDING indicates that CloudFront can't determine the ICP recordal status of the CNAME associated with the distribution because there was an error in trying to determine the status. You can try again to see if the error is resolved in which case CloudFront returns an APPROVED or SUSPENDED status.

            Possible values include:
            • "APPROVED"
            • "SUSPENDED"
            • "PENDING"
      • ETag — (String)

        The current version of the primary distribution (after it's updated).

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateFieldLevelEncryptionConfig(params = {}, callback) ⇒ AWS.Request

Update a field-level encryption configuration.

Examples:

Calling the updateFieldLevelEncryptionConfig operation

var params = {
  FieldLevelEncryptionConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE',
    ContentTypeProfileConfig: {
      ForwardWhenContentTypeIsUnknown: true || false, /* required */
      ContentTypeProfiles: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            ContentType: 'STRING_VALUE', /* required */
            Format: URLEncoded, /* required */
            ProfileId: 'STRING_VALUE'
          },
          /* more items */
        ]
      }
    },
    QueryArgProfileConfig: {
      ForwardWhenQueryArgProfileIsUnknown: true || false, /* required */
      QueryArgProfiles: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          {
            ProfileId: 'STRING_VALUE', /* required */
            QueryArg: 'STRING_VALUE' /* required */
          },
          /* more items */
        ]
      }
    }
  },
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateFieldLevelEncryptionConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • FieldLevelEncryptionConfig — (map)

      Request to update a field-level encryption configuration.

      • CallerReferencerequired — (String)

        A unique number that ensures the request can't be replayed.

      • Comment — (String)

        An optional comment about the configuration. The comment cannot be longer than 128 characters.

      • QueryArgProfileConfig — (map)

        A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.

        • ForwardWhenQueryArgProfileIsUnknownrequired — (Boolean)

          Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.

        • QueryArgProfiles — (map)

          Profiles specified for query argument-profile mapping for field-level encryption.

          • Quantityrequired — (Integer)

            Number of profiles for query argument-profile mapping for field-level encryption.

          • Items — (Array<map>)

            Number of items for query argument-profile mapping for field-level encryption.

            • QueryArgrequired — (String)

              Query argument for field-level encryption query argument-profile mapping.

            • ProfileIdrequired — (String)

              ID of profile to use for field-level encryption query argument-profile mapping

      • ContentTypeProfileConfig — (map)

        A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.

        • ForwardWhenContentTypeIsUnknownrequired — (Boolean)

          The setting in a field-level encryption content type-profile mapping that specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.

        • ContentTypeProfiles — (map)

          The configuration for a field-level encryption content type-profile.

          • Quantityrequired — (Integer)

            The number of field-level encryption content type-profile mappings.

          • Items — (Array<map>)

            Items in a field-level encryption content type-profile mapping.

            • Formatrequired — (String)

              The format for a field-level encryption content type-profile mapping.

              Possible values include:
              • "URLEncoded"
            • ProfileId — (String)

              The profile ID for a field-level encryption content type-profile mapping.

            • ContentTyperequired — (String)

              The content type for a field-level encryption content type-profile mapping.

    • Id — (String)

      The ID of the configuration you want to update.

    • IfMatch — (String)

      The value of the ETag header that you received when retrieving the configuration identity to update. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FieldLevelEncryption — (map)

        Return the results of updating the configuration.

        • Idrequired — (String)

          The configuration ID for a field-level encryption configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.

        • LastModifiedTimerequired — (Date)

          The last time the field-level encryption configuration was changed.

        • FieldLevelEncryptionConfigrequired — (map)

          A complex data type that includes the profile configurations specified for field-level encryption.

          • CallerReferencerequired — (String)

            A unique number that ensures the request can't be replayed.

          • Comment — (String)

            An optional comment about the configuration. The comment cannot be longer than 128 characters.

          • QueryArgProfileConfig — (map)

            A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.

            • ForwardWhenQueryArgProfileIsUnknownrequired — (Boolean)

              Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.

            • QueryArgProfiles — (map)

              Profiles specified for query argument-profile mapping for field-level encryption.

              • Quantityrequired — (Integer)

                Number of profiles for query argument-profile mapping for field-level encryption.

              • Items — (Array<map>)

                Number of items for query argument-profile mapping for field-level encryption.

                • QueryArgrequired — (String)

                  Query argument for field-level encryption query argument-profile mapping.

                • ProfileIdrequired — (String)

                  ID of profile to use for field-level encryption query argument-profile mapping

          • ContentTypeProfileConfig — (map)

            A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.

            • ForwardWhenContentTypeIsUnknownrequired — (Boolean)

              The setting in a field-level encryption content type-profile mapping that specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.

            • ContentTypeProfiles — (map)

              The configuration for a field-level encryption content type-profile.

              • Quantityrequired — (Integer)

                The number of field-level encryption content type-profile mappings.

              • Items — (Array<map>)

                Items in a field-level encryption content type-profile mapping.

                • Formatrequired — (String)

                  The format for a field-level encryption content type-profile mapping.

                  Possible values include:
                  • "URLEncoded"
                • ProfileId — (String)

                  The profile ID for a field-level encryption content type-profile mapping.

                • ContentTyperequired — (String)

                  The content type for a field-level encryption content type-profile mapping.

      • ETag — (String)

        The value of the ETag header that you received when updating the configuration. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateFieldLevelEncryptionProfile(params = {}, callback) ⇒ AWS.Request

Update a field-level encryption profile.

Examples:

Calling the updateFieldLevelEncryptionProfile operation

var params = {
  FieldLevelEncryptionProfileConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    EncryptionEntities: { /* required */
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          FieldPatterns: { /* required */
            Quantity: 'NUMBER_VALUE', /* required */
            Items: [
              'STRING_VALUE',
              /* more items */
            ]
          },
          ProviderId: 'STRING_VALUE', /* required */
          PublicKeyId: 'STRING_VALUE' /* required */
        },
        /* more items */
      ]
    },
    Name: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE'
  },
  Id: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateFieldLevelEncryptionProfile(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • FieldLevelEncryptionProfileConfig — (map)

      Request to update a field-level encryption profile.

      • Namerequired — (String)

        Profile name for the field-level encryption profile.

      • CallerReferencerequired — (String)

        A unique number that ensures that the request can't be replayed.

      • Comment — (String)

        An optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters.

      • EncryptionEntitiesrequired — (map)

        A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.

        • Quantityrequired — (Integer)

          Number of field pattern items in a field-level encryption content type-profile mapping.

        • Items — (Array<map>)

          An array of field patterns in a field-level encryption content type-profile mapping.

          • PublicKeyIdrequired — (String)

            The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.

          • ProviderIdrequired — (String)

            The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.

          • FieldPatternsrequired — (map)

            Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (). You can't overlap field patterns. For example, you can't have both ABC and AB*. Note that field patterns are case-sensitive.

            • Quantityrequired — (Integer)

              The number of field-level encryption field patterns.

            • Items — (Array<String>)

              An array of the field-level encryption field patterns.

    • Id — (String)

      The ID of the field-level encryption profile request.

    • IfMatch — (String)

      The value of the ETag header that you received when retrieving the profile identity to update. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FieldLevelEncryptionProfile — (map)

        Return the results of updating the profile.

        • Idrequired — (String)

          The ID for a field-level encryption profile configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.

        • LastModifiedTimerequired — (Date)

          The last time the field-level encryption profile was updated.

        • FieldLevelEncryptionProfileConfigrequired — (map)

          A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.

          • Namerequired — (String)

            Profile name for the field-level encryption profile.

          • CallerReferencerequired — (String)

            A unique number that ensures that the request can't be replayed.

          • Comment — (String)

            An optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters.

          • EncryptionEntitiesrequired — (map)

            A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.

            • Quantityrequired — (Integer)

              Number of field pattern items in a field-level encryption content type-profile mapping.

            • Items — (Array<map>)

              An array of field patterns in a field-level encryption content type-profile mapping.

              • PublicKeyIdrequired — (String)

                The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.

              • ProviderIdrequired — (String)

                The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.

              • FieldPatternsrequired — (map)

                Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (). You can't overlap field patterns. For example, you can't have both ABC and AB*. Note that field patterns are case-sensitive.

                • Quantityrequired — (Integer)

                  The number of field-level encryption field patterns.

                • Items — (Array<String>)

                  An array of the field-level encryption field patterns.

      • ETag — (String)

        The result of the field-level encryption profile request.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateFunction(params = {}, callback) ⇒ AWS.Request

Updates a CloudFront function.

You can update a function's code or the comment that describes the function. You cannot update a function's name.

To update a function, you provide the function's name and version (ETag value) along with the updated function code. To get the name and version, you can use ListFunctions and DescribeFunction.

Service Reference:

Examples:

To update a function


/* Use the following command to update a function. */

 var params = {
  FunctionCode: <Binary String>, 
  FunctionConfig: {
   Comment: "my-changed-comment", 
   KeyValueStoreAssociations: {
    Items: [
       {
      KeyValueStoreARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
     }
    ], 
    Quantity: 1
   }, 
   Runtime: "cloudfront-js-2.0"
  }, 
  IfMatch: "ETVPDKIKX0DER", 
  Name: "my-function-name"
 };
 cloudfront.updateFunction(params, function(err, data) {
   if (err) console.log(err, err.stack); // an error occurred
   else     console.log(data);           // successful response
   /*
   data = {
    ETag: "E3UN6WX5RRO2AG", 
    FunctionSummary: {
     FunctionConfig: {
      Comment: "my-changed-comment", 
      KeyValueStoreAssociations: {
       Items: [
          {
         KeyValueStoreARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
        }
       ], 
       Quantity: 1
      }, 
      Runtime: "cloudfront-js-2.0"
     }, 
     FunctionMetadata: {
      CreatedTime: <Date Representation>, 
      FunctionARN: "arn:aws:cloudfront::123456789012:function/my-function-name", 
      LastModifiedTime: <Date Representation>, 
      Stage: "DEVELOPMENT"
     }, 
     Name: "my-function-name", 
     Status: "UNPUBLISHED"
    }
   }
   */
 });

Calling the updateFunction operation

var params = {
  FunctionCode: Buffer.from('...') || 'STRING_VALUE' /* Strings will be Base-64 encoded on your behalf */, /* required */
  FunctionConfig: { /* required */
    Comment: 'STRING_VALUE', /* required */
    Runtime: cloudfront-js-1.0 | cloudfront-js-2.0, /* required */
    KeyValueStoreAssociations: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          KeyValueStoreARN: 'STRING_VALUE' /* required */
        },
        /* more items */
      ]
    }
  },
  IfMatch: 'STRING_VALUE', /* required */
  Name: 'STRING_VALUE' /* required */
};
cloudfront.updateFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the function that you are updating.

    • IfMatch — (String)

      The current version (ETag value) of the function that you are updating, which you can get using DescribeFunction.

    • FunctionConfig — (map)

      Configuration information about the function.

      • Commentrequired — (String)

        A comment to describe the function.

      • Runtimerequired — (String)

        The function's runtime environment version.

        Possible values include:
        • "cloudfront-js-1.0"
        • "cloudfront-js-2.0"
      • KeyValueStoreAssociations — (map)

        The configuration for the Key Value Store associations.

        • Quantityrequired — (Integer)

          The quantity of Key Value Store associations.

        • Items — (Array<map>)

          The items of the Key Value Store association.

          • KeyValueStoreARNrequired — (String)

            The Amazon Resource Name (ARN) of the Key Value Store association.

    • FunctionCode — (Buffer, Typed Array, Blob, String)

      The function code. For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FunctionSummary — (map)

        Contains configuration information and metadata about a CloudFront function.

        • Namerequired — (String)

          The name of the CloudFront function.

        • Status — (String)

          The status of the CloudFront function.

        • FunctionConfigrequired — (map)

          Contains configuration information about a CloudFront function.

          • Commentrequired — (String)

            A comment to describe the function.

          • Runtimerequired — (String)

            The function's runtime environment version.

            Possible values include:
            • "cloudfront-js-1.0"
            • "cloudfront-js-2.0"
          • KeyValueStoreAssociations — (map)

            The configuration for the Key Value Store associations.

            • Quantityrequired — (Integer)

              The quantity of Key Value Store associations.

            • Items — (Array<map>)

              The items of the Key Value Store association.

              • KeyValueStoreARNrequired — (String)

                The Amazon Resource Name (ARN) of the Key Value Store association.

        • FunctionMetadatarequired — (map)

          Contains metadata about a CloudFront function.

          • FunctionARNrequired — (String)

            The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function.

          • Stage — (String)

            The stage that the function is in, either DEVELOPMENT or LIVE.

            When a function is in the DEVELOPMENT stage, you can test the function with TestFunction, and update it with UpdateFunction.

            When a function is in the LIVE stage, you can attach the function to a distribution's cache behavior, using the function's ARN.

            Possible values include:
            • "DEVELOPMENT"
            • "LIVE"
          • CreatedTime — (Date)

            The date and time when the function was created.

          • LastModifiedTimerequired — (Date)

            The date and time when the function was most recently updated.

      • ETag — (String)

        The version identifier for the current version of the CloudFront function.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateKeyGroup(params = {}, callback) ⇒ AWS.Request

Updates a key group.

When you update a key group, all the fields are updated with the values provided in the request. You cannot update some fields independent of others. To update a key group:

  1. Get the current key group with GetKeyGroup or GetKeyGroupConfig.

  2. Locally modify the fields in the key group that you want to update. For example, add or remove public key IDs.

  3. Call UpdateKeyGroup with the entire key group object, including the fields that you modified and those that you didn't.

Service Reference:

Examples:

Calling the updateKeyGroup operation

var params = {
  Id: 'STRING_VALUE', /* required */
  KeyGroupConfig: { /* required */
    Items: [ /* required */
      'STRING_VALUE',
      /* more items */
    ],
    Name: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE'
  },
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateKeyGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • KeyGroupConfig — (map)

      The key group configuration.

      • Namerequired — (String)

        A name to identify the key group.

      • Itemsrequired — (Array<String>)

        A list of the identifiers of the public keys in the key group.

      • Comment — (String)

        A comment to describe the key group. The comment cannot be longer than 128 characters.

    • Id — (String)

      The identifier of the key group that you are updating.

    • IfMatch — (String)

      The version of the key group that you are updating. The version is the key group's ETag value.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • KeyGroup — (map)

        The key group that was just updated.

        • Idrequired — (String)

          The identifier for the key group.

        • LastModifiedTimerequired — (Date)

          The date and time when the key group was last modified.

        • KeyGroupConfigrequired — (map)

          The key group configuration.

          • Namerequired — (String)

            A name to identify the key group.

          • Itemsrequired — (Array<String>)

            A list of the identifiers of the public keys in the key group.

          • Comment — (String)

            A comment to describe the key group. The comment cannot be longer than 128 characters.

      • ETag — (String)

        The identifier for this version of the key group.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateKeyValueStore(params = {}, callback) ⇒ AWS.Request

Specifies the Key Value Store to update.

Service Reference:

Examples:

To update a KeyValueStore


/* Use the following command to update a KeyValueStore. */

 var params = {
  Comment: "my-changed-comment", 
  IfMatch: "ETVPDKIKX0DER", 
  Name: "my-keyvaluestore-name"
 };
 cloudfront.updateKeyValueStore(params, function(err, data) {
   if (err) console.log(err, err.stack); // an error occurred
   else     console.log(data);           // successful response
   /*
   data = {
    ETag: "E3UN6WX5RRO2AG", 
    KeyValueStore: {
     ARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", 
     Comment: "my-changed-comment", 
     Id: "54947df8-0e9e-4471-a2f9-9af509fb5889", 
     LastModifiedTime: <Date Representation>, 
     Name: "my-keyvaluestore-name", 
     Status: "READY"
    }
   }
   */
 });

Calling the updateKeyValueStore operation

var params = {
  Comment: 'STRING_VALUE', /* required */
  IfMatch: 'STRING_VALUE', /* required */
  Name: 'STRING_VALUE' /* required */
};
cloudfront.updateKeyValueStore(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the Key Value Store to update.

    • Comment — (String)

      The comment of the Key Value Store to update.

    • IfMatch — (String)

      The Key Value Store to update, if a match occurs.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • KeyValueStore — (map)

        The resulting Key Value Store to update.

        • Namerequired — (String)

          The name of the Key Value Store.

        • Idrequired — (String)

          The unique Id for the Key Value Store.

        • Commentrequired — (String)

          A comment for the Key Value Store.

        • ARNrequired — (String)

          The Amazon Resource Name (ARN) of the Key Value Store.

        • Status — (String)

          The status of the Key Value Store.

        • LastModifiedTimerequired — (Date)

          The last-modified time of the Key Value Store.

      • ETag — (String)

        The ETag of the resulting Key Value Store.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateOriginAccessControl(params = {}, callback) ⇒ AWS.Request

Updates a CloudFront origin access control.

Service Reference:

Examples:

Calling the updateOriginAccessControl operation

var params = {
  Id: 'STRING_VALUE', /* required */
  OriginAccessControlConfig: { /* required */
    Name: 'STRING_VALUE', /* required */
    OriginAccessControlOriginType: s3 | mediastore, /* required */
    SigningBehavior: never | always | no-override, /* required */
    SigningProtocol: sigv4, /* required */
    Description: 'STRING_VALUE'
  },
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateOriginAccessControl(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • OriginAccessControlConfig — (map)

      An origin access control.

      • Namerequired — (String)

        A name to identify the origin access control.

      • Description — (String)

        A description of the origin access control.

      • SigningProtocolrequired — (String)

        The signing protocol of the origin access control, which determines how CloudFront signs (authenticates) requests. The only valid value is sigv4.

        Possible values include:
        • "sigv4"
      • SigningBehaviorrequired — (String)

        Specifies which requests CloudFront signs (adds authentication information to). Specify always for the most common use case. For more information, see origin access control advanced settings in the Amazon CloudFront Developer Guide.

        This field can have one of the following values:

        • always – CloudFront signs all origin requests, overwriting the Authorization header from the viewer request if one exists.

        • never – CloudFront doesn't sign any origin requests. This value turns off origin access control for all origins in all distributions that use this origin access control.

        • no-override – If the viewer request doesn't contain the Authorization header, then CloudFront signs the origin request. If the viewer request contains the Authorization header, then CloudFront doesn't sign the origin request and instead passes along the Authorization header from the viewer request. WARNING: To pass along the Authorization header from the viewer request, you must add the Authorization header to a cache policy for all cache behaviors that use origins associated with this origin access control.

        Possible values include:
        • "never"
        • "always"
        • "no-override"
      • OriginAccessControlOriginTyperequired — (String)

        The type of origin that this origin access control is for.

        Possible values include:
        • "s3"
        • "mediastore"
    • Id — (String)

      The unique identifier of the origin access control that you are updating.

    • IfMatch — (String)

      The current version (ETag value) of the origin access control that you are updating.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • OriginAccessControl — (map)

        The origin access control after it has been updated.

        • Idrequired — (String)

          The unique identifier of the origin access control.

        • OriginAccessControlConfig — (map)

          The origin access control.

          • Namerequired — (String)

            A name to identify the origin access control.

          • Description — (String)

            A description of the origin access control.

          • SigningProtocolrequired — (String)

            The signing protocol of the origin access control, which determines how CloudFront signs (authenticates) requests. The only valid value is sigv4.

            Possible values include:
            • "sigv4"
          • SigningBehaviorrequired — (String)

            Specifies which requests CloudFront signs (adds authentication information to). Specify always for the most common use case. For more information, see origin access control advanced settings in the Amazon CloudFront Developer Guide.

            This field can have one of the following values:

            • always – CloudFront signs all origin requests, overwriting the Authorization header from the viewer request if one exists.

            • never – CloudFront doesn't sign any origin requests. This value turns off origin access control for all origins in all distributions that use this origin access control.

            • no-override – If the viewer request doesn't contain the Authorization header, then CloudFront signs the origin request. If the viewer request contains the Authorization header, then CloudFront doesn't sign the origin request and instead passes along the Authorization header from the viewer request. WARNING: To pass along the Authorization header from the viewer request, you must add the Authorization header to a cache policy for all cache behaviors that use origins associated with this origin access control.

            Possible values include:
            • "never"
            • "always"
            • "no-override"
          • OriginAccessControlOriginTyperequired — (String)

            The type of origin that this origin access control is for.

            Possible values include:
            • "s3"
            • "mediastore"
      • ETag — (String)

        The new version of the origin access control after it has been updated.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateOriginRequestPolicy(params = {}, callback) ⇒ AWS.Request

Updates an origin request policy configuration.

When you update an origin request policy configuration, all the fields are updated with the values provided in the request. You cannot update some fields independent of others. To update an origin request policy configuration:

  1. Use GetOriginRequestPolicyConfig to get the current configuration.

  2. Locally modify the fields in the origin request policy configuration that you want to update.

  3. Call UpdateOriginRequestPolicy by providing the entire origin request policy configuration, including the fields that you modified and those that you didn't.

Service Reference:

Examples:

Calling the updateOriginRequestPolicy operation

var params = {
  Id: 'STRING_VALUE', /* required */
  OriginRequestPolicyConfig: { /* required */
    CookiesConfig: { /* required */
      CookieBehavior: none | whitelist | all | allExcept, /* required */
      Cookies: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    HeadersConfig: { /* required */
      HeaderBehavior: none | whitelist | allViewer | allViewerAndWhitelistCloudFront | allExcept, /* required */
      Headers: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    Name: 'STRING_VALUE', /* required */
    QueryStringsConfig: { /* required */
      QueryStringBehavior: none | whitelist | all | allExcept, /* required */
      QueryStrings: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    Comment: 'STRING_VALUE'
  },
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateOriginRequestPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • OriginRequestPolicyConfig — (map)

      An origin request policy configuration.

      • Comment — (String)

        A comment to describe the origin request policy. The comment cannot be longer than 128 characters.

      • Namerequired — (String)

        A unique name to identify the origin request policy.

      • HeadersConfigrequired — (map)

        The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.

        • HeaderBehaviorrequired — (String)

          Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:

          • none – No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in a CachePolicy are included in origin requests.

          • whitelist – Only the HTTP headers that are listed in the Headers type are included in requests that CloudFront sends to the origin.

          • allViewer – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.

          • allViewerAndWhitelistCloudFront – All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the Headers type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.

          • allExcept – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the Headers type, which are not included.

          Possible values include:
          • "none"
          • "whitelist"
          • "allViewer"
          • "allViewerAndWhitelistCloudFront"
          • "allExcept"
        • Headers — (map)

          Contains a list of HTTP header names.

          • Quantityrequired — (Integer)

            The number of header names in the Items list.

          • Items — (Array<String>)

            A list of HTTP header names.

      • CookiesConfigrequired — (map)

        The cookies from viewer requests to include in origin requests.

        • CookieBehaviorrequired — (String)

          Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

          • none – No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in a CachePolicy are included in origin requests.

          • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in requests that CloudFront sends to the origin.

          • all – All cookies in viewer requests are included in requests that CloudFront sends to the origin.

          • allExcept – All cookies in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the CookieNames type, which are not included.

          Possible values include:
          • "none"
          • "whitelist"
          • "all"
          • "allExcept"
        • Cookies — (map)

          Contains a list of cookie names.

          • Quantityrequired — (Integer)

            The number of cookie names in the Items list.

          • Items — (Array<String>)

            A list of cookie names.

      • QueryStringsConfigrequired — (map)

        The URL query strings from viewer requests to include in origin requests.

        • QueryStringBehaviorrequired — (String)

          Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

          • none – No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in a CachePolicy are included in origin requests.

          • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in requests that CloudFront sends to the origin.

          • all – All query strings in viewer requests are included in requests that CloudFront sends to the origin.

          • allExcept – All query strings in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the QueryStringNames type, which are not included.

          Possible values include:
          • "none"
          • "whitelist"
          • "all"
          • "allExcept"
        • QueryStrings — (map)

          Contains the specific query strings in viewer requests that either are or are not included in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the OriginRequestPolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

          • Quantityrequired — (Integer)

            The number of query string names in the Items list.

          • Items — (Array<String>)

            A list of query string names.

    • Id — (String)

      The unique identifier for the origin request policy that you are updating. The identifier is returned in a cache behavior's OriginRequestPolicyId field in the response to GetDistributionConfig.

    • IfMatch — (String)

      The version of the origin request policy that you are updating. The version is returned in the origin request policy's ETag field in the response to GetOriginRequestPolicyConfig.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • OriginRequestPolicy — (map)

        An origin request policy.

        • Idrequired — (String)

          The unique identifier for the origin request policy.

        • LastModifiedTimerequired — (Date)

          The date and time when the origin request policy was last modified.

        • OriginRequestPolicyConfigrequired — (map)

          The origin request policy configuration.

          • Comment — (String)

            A comment to describe the origin request policy. The comment cannot be longer than 128 characters.

          • Namerequired — (String)

            A unique name to identify the origin request policy.

          • HeadersConfigrequired — (map)

            The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.

            • HeaderBehaviorrequired — (String)

              Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:

              • none – No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any headers that are listed in a CachePolicy are included in origin requests.

              • whitelist – Only the HTTP headers that are listed in the Headers type are included in requests that CloudFront sends to the origin.

              • allViewer – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.

              • allViewerAndWhitelistCloudFront – All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the Headers type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.

              • allExcept – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the Headers type, which are not included.

              Possible values include:
              • "none"
              • "whitelist"
              • "allViewer"
              • "allViewerAndWhitelistCloudFront"
              • "allExcept"
            • Headers — (map)

              Contains a list of HTTP header names.

              • Quantityrequired — (Integer)

                The number of header names in the Items list.

              • Items — (Array<String>)

                A list of HTTP header names.

          • CookiesConfigrequired — (map)

            The cookies from viewer requests to include in origin requests.

            • CookieBehaviorrequired — (String)

              Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

              • none – No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any cookies that are listed in a CachePolicy are included in origin requests.

              • whitelist – Only the cookies in viewer requests that are listed in the CookieNames type are included in requests that CloudFront sends to the origin.

              • all – All cookies in viewer requests are included in requests that CloudFront sends to the origin.

              • allExcept – All cookies in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the CookieNames type, which are not included.

              Possible values include:
              • "none"
              • "whitelist"
              • "all"
              • "allExcept"
            • Cookies — (map)

              Contains a list of cookie names.

              • Quantityrequired — (Integer)

                The number of cookie names in the Items list.

              • Items — (Array<String>)

                A list of cookie names.

          • QueryStringsConfigrequired — (map)

            The URL query strings from viewer requests to include in origin requests.

            • QueryStringBehaviorrequired — (String)

              Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:

              • none – No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none, any query strings that are listed in a CachePolicy are included in origin requests.

              • whitelist – Only the query strings in viewer requests that are listed in the QueryStringNames type are included in requests that CloudFront sends to the origin.

              • all – All query strings in viewer requests are included in requests that CloudFront sends to the origin.

              • allExcept – All query strings in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the QueryStringNames type, which are not included.

              Possible values include:
              • "none"
              • "whitelist"
              • "all"
              • "allExcept"
            • QueryStrings — (map)

              Contains the specific query strings in viewer requests that either are or are not included in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior field in the OriginRequestPolicyQueryStringsConfig type is set to whitelist (the listed query strings are included) or allExcept (the listed query strings are not included, but all other query strings are).

              • Quantityrequired — (Integer)

                The number of query string names in the Items list.

              • Items — (Array<String>)

                A list of query string names.

      • ETag — (String)

        The current version of the origin request policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updatePublicKey(params = {}, callback) ⇒ AWS.Request

Update public key information. Note that the only value you can change is the comment.

Service Reference:

Examples:

Calling the updatePublicKey operation

var params = {
  Id: 'STRING_VALUE', /* required */
  PublicKeyConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    EncodedKey: 'STRING_VALUE', /* required */
    Name: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE'
  },
  IfMatch: 'STRING_VALUE'
};
cloudfront.updatePublicKey(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • PublicKeyConfig — (map)

      A public key configuration.

      • CallerReferencerequired — (String)

        A string included in the request to help make sure that the request can't be replayed.

      • Namerequired — (String)

        A name to help identify the public key.

      • EncodedKeyrequired — (String)

        The public key that you can use with signed URLs and signed cookies, or with field-level encryption.

      • Comment — (String)

        A comment to describe the public key. The comment cannot be longer than 128 characters.

    • Id — (String)

      The identifier of the public key that you are updating.

    • IfMatch — (String)

      The value of the ETag header that you received when retrieving the public key to update. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • PublicKey — (map)

        The public key.

        • Idrequired — (String)

          The identifier of the public key.

        • CreatedTimerequired — (Date)

          The date and time when the public key was uploaded.

        • PublicKeyConfigrequired — (map)

          Configuration information about a public key that you can use with signed URLs and signed cookies, or with field-level encryption.

          • CallerReferencerequired — (String)

            A string included in the request to help make sure that the request can't be replayed.

          • Namerequired — (String)

            A name to help identify the public key.

          • EncodedKeyrequired — (String)

            The public key that you can use with signed URLs and signed cookies, or with field-level encryption.

          • Comment — (String)

            A comment to describe the public key. The comment cannot be longer than 128 characters.

      • ETag — (String)

        The identifier of the current version of the public key.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateRealtimeLogConfig(params = {}, callback) ⇒ AWS.Request

Updates a real-time log configuration.

When you update a real-time log configuration, all the parameters are updated with the values provided in the request. You cannot update some parameters independent of others. To update a real-time log configuration:

  1. Call GetRealtimeLogConfig to get the current real-time log configuration.

  2. Locally modify the parameters in the real-time log configuration that you want to update.

  3. Call this API (UpdateRealtimeLogConfig) by providing the entire real-time log configuration, including the parameters that you modified and those that you didn't.

You cannot update a real-time log configuration's Name or ARN.

Service Reference:

Examples:

Calling the updateRealtimeLogConfig operation

var params = {
  ARN: 'STRING_VALUE',
  EndPoints: [
    {
      StreamType: 'STRING_VALUE', /* required */
      KinesisStreamConfig: {
        RoleARN: 'STRING_VALUE', /* required */
        StreamARN: 'STRING_VALUE' /* required */
      }
    },
    /* more items */
  ],
  Fields: [
    'STRING_VALUE',
    /* more items */
  ],
  Name: 'STRING_VALUE',
  SamplingRate: 'NUMBER_VALUE'
};
cloudfront.updateRealtimeLogConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • EndPoints — (Array<map>)

      Contains information about the Amazon Kinesis data stream where you are sending real-time log data.

      • StreamTyperequired — (String)

        The type of data stream where you are sending real-time log data. The only valid value is Kinesis.

      • KinesisStreamConfig — (map)

        Contains information about the Amazon Kinesis data stream where you are sending real-time log data.

        • RoleARNrequired — (String)

          The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.

          For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide.

        • StreamARNrequired — (String)

          The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.

    • Fields — (Array<String>)

      A list of fields to include in each real-time log record.

      For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.

    • Name — (String)

      The name for this real-time log configuration.

    • ARN — (String)

      The Amazon Resource Name (ARN) for this real-time log configuration.

    • SamplingRate — (Integer)

      The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. You must provide an integer between 1 and 100, inclusive.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RealtimeLogConfig — (map)

        A real-time log configuration.

        • ARNrequired — (String)

          The Amazon Resource Name (ARN) of this real-time log configuration.

        • Namerequired — (String)

          The unique name of this real-time log configuration.

        • SamplingRaterequired — (Integer)

          The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. The sampling rate is an integer between 1 and 100, inclusive.

        • EndPointsrequired — (Array<map>)

          Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.

          • StreamTyperequired — (String)

            The type of data stream where you are sending real-time log data. The only valid value is Kinesis.

          • KinesisStreamConfig — (map)

            Contains information about the Amazon Kinesis data stream where you are sending real-time log data.

            • RoleARNrequired — (String)

              The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.

              For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide.

            • StreamARNrequired — (String)

              The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.

        • Fieldsrequired — (Array<String>)

          A list of fields that are included in each real-time log record. In an API response, the fields are provided in the same order in which they are sent to the Amazon Kinesis data stream.

          For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateResponseHeadersPolicy(params = {}, callback) ⇒ AWS.Request

Updates a response headers policy.

When you update a response headers policy, the entire policy is replaced. You cannot update some policy fields independent of others. To update a response headers policy configuration:

  1. Use GetResponseHeadersPolicyConfig to get the current policy's configuration.

  2. Modify the fields in the response headers policy configuration that you want to update.

  3. Call UpdateResponseHeadersPolicy, providing the entire response headers policy configuration, including the fields that you modified and those that you didn't.

Service Reference:

Examples:

Calling the updateResponseHeadersPolicy operation

var params = {
  Id: 'STRING_VALUE', /* required */
  ResponseHeadersPolicyConfig: { /* required */
    Name: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE',
    CorsConfig: {
      AccessControlAllowCredentials: true || false, /* required */
      AccessControlAllowHeaders: { /* required */
        Items: [ /* required */
          'STRING_VALUE',
          /* more items */
        ],
        Quantity: 'NUMBER_VALUE' /* required */
      },
      AccessControlAllowMethods: { /* required */
        Items: [ /* required */
          GET | POST | OPTIONS | PUT | DELETE | PATCH | HEAD | ALL,
          /* more items */
        ],
        Quantity: 'NUMBER_VALUE' /* required */
      },
      AccessControlAllowOrigins: { /* required */
        Items: [ /* required */
          'STRING_VALUE',
          /* more items */
        ],
        Quantity: 'NUMBER_VALUE' /* required */
      },
      OriginOverride: true || false, /* required */
      AccessControlExposeHeaders: {
        Quantity: 'NUMBER_VALUE', /* required */
        Items: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      AccessControlMaxAgeSec: 'NUMBER_VALUE'
    },
    CustomHeadersConfig: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          Header: 'STRING_VALUE', /* required */
          Override: true || false, /* required */
          Value: 'STRING_VALUE' /* required */
        },
        /* more items */
      ]
    },
    RemoveHeadersConfig: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        {
          Header: 'STRING_VALUE' /* required */
        },
        /* more items */
      ]
    },
    SecurityHeadersConfig: {
      ContentSecurityPolicy: {
        ContentSecurityPolicy: 'STRING_VALUE', /* required */
        Override: true || false /* required */
      },
      ContentTypeOptions: {
        Override: true || false /* required */
      },
      FrameOptions: {
        FrameOption: DENY | SAMEORIGIN, /* required */
        Override: true || false /* required */
      },
      ReferrerPolicy: {
        Override: true || false, /* required */
        ReferrerPolicy: no-referrer | no-referrer-when-downgrade | origin | origin-when-cross-origin | same-origin | strict-origin | strict-origin-when-cross-origin | unsafe-url /* required */
      },
      StrictTransportSecurity: {
        AccessControlMaxAgeSec: 'NUMBER_VALUE', /* required */
        Override: true || false, /* required */
        IncludeSubdomains: true || false,
        Preload: true || false
      },
      XSSProtection: {
        Override: true || false, /* required */
        Protection: true || false, /* required */
        ModeBlock: true || false,
        ReportUri: 'STRING_VALUE'
      }
    },
    ServerTimingHeadersConfig: {
      Enabled: true || false, /* required */
      SamplingRate: 'NUMBER_VALUE'
    }
  },
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateResponseHeadersPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResponseHeadersPolicyConfig — (map)

      A response headers policy configuration.

      • Comment — (String)

        A comment to describe the response headers policy.

        The comment cannot be longer than 128 characters.

      • Namerequired — (String)

        A name to identify the response headers policy.

        The name must be unique for response headers policies in this Amazon Web Services account.

      • CorsConfig — (map)

        A configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).

        • AccessControlAllowOriginsrequired — (map)

          A list of origins (domain names) that CloudFront can use as the value for the Access-Control-Allow-Origin HTTP response header.

          For more information about the Access-Control-Allow-Origin HTTP response header, see Access-Control-Allow-Origin in the MDN Web Docs.

          • Quantityrequired — (Integer)

            The number of origins in the list.

          • Itemsrequired — (Array<String>)

            The list of origins (domain names). You can specify * to allow all origins.

        • AccessControlAllowHeadersrequired — (map)

          A list of HTTP header names that CloudFront includes as values for the Access-Control-Allow-Headers HTTP response header.

          For more information about the Access-Control-Allow-Headers HTTP response header, see Access-Control-Allow-Headers in the MDN Web Docs.

          • Quantityrequired — (Integer)

            The number of HTTP header names in the list.

          • Itemsrequired — (Array<String>)

            The list of HTTP header names. You can specify * to allow all headers.

        • AccessControlAllowMethodsrequired — (map)

          A list of HTTP methods that CloudFront includes as values for the Access-Control-Allow-Methods HTTP response header.

          For more information about the Access-Control-Allow-Methods HTTP response header, see Access-Control-Allow-Methods in the MDN Web Docs.

          • Quantityrequired — (Integer)

            The number of HTTP methods in the list.

          • Itemsrequired — (Array<String>)

            The list of HTTP methods. Valid values are:

            • GET

            • DELETE

            • HEAD

            • OPTIONS

            • PATCH

            • POST

            • PUT

            • ALL

            ALL is a special value that includes all of the listed HTTP methods.

        • AccessControlAllowCredentialsrequired — (Boolean)

          A Boolean that CloudFront uses as the value for the Access-Control-Allow-Credentials HTTP response header.

          For more information about the Access-Control-Allow-Credentials HTTP response header, see Access-Control-Allow-Credentials in the MDN Web Docs.

        • AccessControlExposeHeaders — (map)

          A list of HTTP headers that CloudFront includes as values for the Access-Control-Expose-Headers HTTP response header.

          For more information about the Access-Control-Expose-Headers HTTP response header, see Access-Control-Expose-Headers in the MDN Web Docs.

          • Quantityrequired — (Integer)

            The number of HTTP headers in the list.

          • Items — (Array<String>)

            The list of HTTP headers. You can specify * to expose all headers.

        • AccessControlMaxAgeSec — (Integer)

          A number that CloudFront uses as the value for the Access-Control-Max-Age HTTP response header.

          For more information about the Access-Control-Max-Age HTTP response header, see Access-Control-Max-Age in the MDN Web Docs.

        • OriginOverriderequired — (Boolean)

          A Boolean that determines whether CloudFront overrides HTTP response headers received from the origin with the ones specified in this response headers policy.

      • SecurityHeadersConfig — (map)

        A configuration for a set of security-related HTTP response headers.

        • XSSProtection — (map)

          Determines whether CloudFront includes the X-XSS-Protection HTTP response header and the header's value.

          For more information about the X-XSS-Protection HTTP response header, see X-XSS-Protection in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header received from the origin with the one specified in this response headers policy.

          • Protectionrequired — (Boolean)

            A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting is true, the value of the X-XSS-Protection header is 1. When this setting is false, the value of the X-XSS-Protection header is 0.

            For more information about these settings, see X-XSS-Protection in the MDN Web Docs.

          • ModeBlock — (Boolean)

            A Boolean that determines whether CloudFront includes the mode=block directive in the X-XSS-Protection header.

            For more information about this directive, see X-XSS-Protection in the MDN Web Docs.

          • ReportUri — (String)

            A reporting URI, which CloudFront uses as the value of the report directive in the X-XSS-Protection header.

            You cannot specify a ReportUri when ModeBlock is true.

            For more information about using a reporting URL, see X-XSS-Protection in the MDN Web Docs.

        • FrameOptions — (map)

          Determines whether CloudFront includes the X-Frame-Options HTTP response header and the header's value.

          For more information about the X-Frame-Options HTTP response header, see X-Frame-Options in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the X-Frame-Options HTTP response header received from the origin with the one specified in this response headers policy.

          • FrameOptionrequired — (String)

            The value of the X-Frame-Options HTTP response header. Valid values are DENY and SAMEORIGIN.

            For more information about these values, see X-Frame-Options in the MDN Web Docs.

            Possible values include:
            • "DENY"
            • "SAMEORIGIN"
        • ReferrerPolicy — (map)

          Determines whether CloudFront includes the Referrer-Policy HTTP response header and the header's value.

          For more information about the Referrer-Policy HTTP response header, see Referrer-Policy in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the Referrer-Policy HTTP response header received from the origin with the one specified in this response headers policy.

          • ReferrerPolicyrequired — (String)

            The value of the Referrer-Policy HTTP response header. Valid values are:

            • no-referrer

            • no-referrer-when-downgrade

            • origin

            • origin-when-cross-origin

            • same-origin

            • strict-origin

            • strict-origin-when-cross-origin

            • unsafe-url

            For more information about these values, see Referrer-Policy in the MDN Web Docs.

            Possible values include:
            • "no-referrer"
            • "no-referrer-when-downgrade"
            • "origin"
            • "origin-when-cross-origin"
            • "same-origin"
            • "strict-origin"
            • "strict-origin-when-cross-origin"
            • "unsafe-url"
        • ContentSecurityPolicy — (map)

          The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

          For more information about the Content-Security-Policy HTTP response header, see Content-Security-Policy in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the Content-Security-Policy HTTP response header received from the origin with the one specified in this response headers policy.

          • ContentSecurityPolicyrequired — (String)

            The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

        • ContentTypeOptions — (map)

          Determines whether CloudFront includes the X-Content-Type-Options HTTP response header with its value set to nosniff.

          For more information about the X-Content-Type-Options HTTP response header, see X-Content-Type-Options in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the X-Content-Type-Options HTTP response header received from the origin with the one specified in this response headers policy.

        • StrictTransportSecurity — (map)

          Determines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header's value.

          For more information about the Strict-Transport-Security HTTP response header, see Strict-Transport-Security in the MDN Web Docs.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides the Strict-Transport-Security HTTP response header received from the origin with the one specified in this response headers policy.

          • IncludeSubdomains — (Boolean)

            A Boolean that determines whether CloudFront includes the includeSubDomains directive in the Strict-Transport-Security HTTP response header.

          • Preload — (Boolean)

            A Boolean that determines whether CloudFront includes the preload directive in the Strict-Transport-Security HTTP response header.

          • AccessControlMaxAgeSecrequired — (Integer)

            A number that CloudFront uses as the value for the max-age directive in the Strict-Transport-Security HTTP response header.

      • ServerTimingHeadersConfig — (map)

        A configuration for enabling the Server-Timing header in HTTP responses sent from CloudFront.

        • Enabledrequired — (Boolean)

          A Boolean that determines whether CloudFront adds the Server-Timing header to HTTP responses that it sends in response to requests that match a cache behavior that's associated with this response headers policy.

        • SamplingRate — (Float)

          A number 0–100 (inclusive) that specifies the percentage of responses that you want CloudFront to add the Server-Timing header to. When you set the sampling rate to 100, CloudFront adds the Server-Timing header to the HTTP response for every request that matches the cache behavior that this response headers policy is attached to. When you set it to 50, CloudFront adds the header to 50% of the responses for requests that match the cache behavior. You can set the sampling rate to any number 0–100 with up to four decimal places.

      • CustomHeadersConfig — (map)

        A configuration for a set of custom HTTP response headers.

        • Quantityrequired — (Integer)

          The number of HTTP response headers in the list.

        • Items — (Array<map>)

          The list of HTTP response headers and their values.

          • Headerrequired — (String)

            The HTTP response header name.

          • Valuerequired — (String)

            The value for the HTTP response header.

          • Overriderequired — (Boolean)

            A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.

      • RemoveHeadersConfig — (map)

        A configuration for a set of HTTP headers to remove from the HTTP response.

        • Quantityrequired — (Integer)

          The number of HTTP header names in the list.

        • Items — (Array<map>)

          The list of HTTP header names.

          • Headerrequired — (String)

            The HTTP header name.

    • Id — (String)

      The identifier for the response headers policy that you are updating.

    • IfMatch — (String)

      The version of the response headers policy that you are updating.

      The version is returned in the cache policy's ETag field in the response to GetResponseHeadersPolicyConfig.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ResponseHeadersPolicy — (map)

        A response headers policy.

        • Idrequired — (String)

          The identifier for the response headers policy.

        • LastModifiedTimerequired — (Date)

          The date and time when the response headers policy was last modified.

        • ResponseHeadersPolicyConfigrequired — (map)

          A response headers policy configuration.

          • Comment — (String)

            A comment to describe the response headers policy.

            The comment cannot be longer than 128 characters.

          • Namerequired — (String)

            A name to identify the response headers policy.

            The name must be unique for response headers policies in this Amazon Web Services account.

          • CorsConfig — (map)

            A configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).

            • AccessControlAllowOriginsrequired — (map)

              A list of origins (domain names) that CloudFront can use as the value for the Access-Control-Allow-Origin HTTP response header.

              For more information about the Access-Control-Allow-Origin HTTP response header, see Access-Control-Allow-Origin in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of origins in the list.

              • Itemsrequired — (Array<String>)

                The list of origins (domain names). You can specify * to allow all origins.

            • AccessControlAllowHeadersrequired — (map)

              A list of HTTP header names that CloudFront includes as values for the Access-Control-Allow-Headers HTTP response header.

              For more information about the Access-Control-Allow-Headers HTTP response header, see Access-Control-Allow-Headers in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of HTTP header names in the list.

              • Itemsrequired — (Array<String>)

                The list of HTTP header names. You can specify * to allow all headers.

            • AccessControlAllowMethodsrequired — (map)

              A list of HTTP methods that CloudFront includes as values for the Access-Control-Allow-Methods HTTP response header.

              For more information about the Access-Control-Allow-Methods HTTP response header, see Access-Control-Allow-Methods in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of HTTP methods in the list.

              • Itemsrequired — (Array<String>)

                The list of HTTP methods. Valid values are:

                • GET

                • DELETE

                • HEAD

                • OPTIONS

                • PATCH

                • POST

                • PUT

                • ALL

                ALL is a special value that includes all of the listed HTTP methods.

            • AccessControlAllowCredentialsrequired — (Boolean)

              A Boolean that CloudFront uses as the value for the Access-Control-Allow-Credentials HTTP response header.

              For more information about the Access-Control-Allow-Credentials HTTP response header, see Access-Control-Allow-Credentials in the MDN Web Docs.

            • AccessControlExposeHeaders — (map)

              A list of HTTP headers that CloudFront includes as values for the Access-Control-Expose-Headers HTTP response header.

              For more information about the Access-Control-Expose-Headers HTTP response header, see Access-Control-Expose-Headers in the MDN Web Docs.

              • Quantityrequired — (Integer)

                The number of HTTP headers in the list.

              • Items — (Array<String>)

                The list of HTTP headers. You can specify * to expose all headers.

            • AccessControlMaxAgeSec — (Integer)

              A number that CloudFront uses as the value for the Access-Control-Max-Age HTTP response header.

              For more information about the Access-Control-Max-Age HTTP response header, see Access-Control-Max-Age in the MDN Web Docs.

            • OriginOverriderequired — (Boolean)

              A Boolean that determines whether CloudFront overrides HTTP response headers received from the origin with the ones specified in this response headers policy.

          • SecurityHeadersConfig — (map)

            A configuration for a set of security-related HTTP response headers.

            • XSSProtection — (map)

              Determines whether CloudFront includes the X-XSS-Protection HTTP response header and the header's value.

              For more information about the X-XSS-Protection HTTP response header, see X-XSS-Protection in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header received from the origin with the one specified in this response headers policy.

              • Protectionrequired — (Boolean)

                A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting is true, the value of the X-XSS-Protection header is 1. When this setting is false, the value of the X-XSS-Protection header is 0.

                For more information about these settings, see X-XSS-Protection in the MDN Web Docs.

              • ModeBlock — (Boolean)

                A Boolean that determines whether CloudFront includes the mode=block directive in the X-XSS-Protection header.

                For more information about this directive, see X-XSS-Protection in the MDN Web Docs.

              • ReportUri — (String)

                A reporting URI, which CloudFront uses as the value of the report directive in the X-XSS-Protection header.

                You cannot specify a ReportUri when ModeBlock is true.

                For more information about using a reporting URL, see X-XSS-Protection in the MDN Web Docs.

            • FrameOptions — (map)

              Determines whether CloudFront includes the X-Frame-Options HTTP response header and the header's value.

              For more information about the X-Frame-Options HTTP response header, see X-Frame-Options in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the X-Frame-Options HTTP response header received from the origin with the one specified in this response headers policy.

              • FrameOptionrequired — (String)

                The value of the X-Frame-Options HTTP response header. Valid values are DENY and SAMEORIGIN.

                For more information about these values, see X-Frame-Options in the MDN Web Docs.

                Possible values include:
                • "DENY"
                • "SAMEORIGIN"
            • ReferrerPolicy — (map)

              Determines whether CloudFront includes the Referrer-Policy HTTP response header and the header's value.

              For more information about the Referrer-Policy HTTP response header, see Referrer-Policy in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the Referrer-Policy HTTP response header received from the origin with the one specified in this response headers policy.

              • ReferrerPolicyrequired — (String)

                The value of the Referrer-Policy HTTP response header. Valid values are:

                • no-referrer

                • no-referrer-when-downgrade

                • origin

                • origin-when-cross-origin

                • same-origin

                • strict-origin

                • strict-origin-when-cross-origin

                • unsafe-url

                For more information about these values, see Referrer-Policy in the MDN Web Docs.

                Possible values include:
                • "no-referrer"
                • "no-referrer-when-downgrade"
                • "origin"
                • "origin-when-cross-origin"
                • "same-origin"
                • "strict-origin"
                • "strict-origin-when-cross-origin"
                • "unsafe-url"
            • ContentSecurityPolicy — (map)

              The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

              For more information about the Content-Security-Policy HTTP response header, see Content-Security-Policy in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the Content-Security-Policy HTTP response header received from the origin with the one specified in this response headers policy.

              • ContentSecurityPolicyrequired — (String)

                The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.

            • ContentTypeOptions — (map)

              Determines whether CloudFront includes the X-Content-Type-Options HTTP response header with its value set to nosniff.

              For more information about the X-Content-Type-Options HTTP response header, see X-Content-Type-Options in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the X-Content-Type-Options HTTP response header received from the origin with the one specified in this response headers policy.

            • StrictTransportSecurity — (map)

              Determines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header's value.

              For more information about the Strict-Transport-Security HTTP response header, see Strict-Transport-Security in the MDN Web Docs.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides the Strict-Transport-Security HTTP response header received from the origin with the one specified in this response headers policy.

              • IncludeSubdomains — (Boolean)

                A Boolean that determines whether CloudFront includes the includeSubDomains directive in the Strict-Transport-Security HTTP response header.

              • Preload — (Boolean)

                A Boolean that determines whether CloudFront includes the preload directive in the Strict-Transport-Security HTTP response header.

              • AccessControlMaxAgeSecrequired — (Integer)

                A number that CloudFront uses as the value for the max-age directive in the Strict-Transport-Security HTTP response header.

          • ServerTimingHeadersConfig — (map)

            A configuration for enabling the Server-Timing header in HTTP responses sent from CloudFront.

            • Enabledrequired — (Boolean)

              A Boolean that determines whether CloudFront adds the Server-Timing header to HTTP responses that it sends in response to requests that match a cache behavior that's associated with this response headers policy.

            • SamplingRate — (Float)

              A number 0–100 (inclusive) that specifies the percentage of responses that you want CloudFront to add the Server-Timing header to. When you set the sampling rate to 100, CloudFront adds the Server-Timing header to the HTTP response for every request that matches the cache behavior that this response headers policy is attached to. When you set it to 50, CloudFront adds the header to 50% of the responses for requests that match the cache behavior. You can set the sampling rate to any number 0–100 with up to four decimal places.

          • CustomHeadersConfig — (map)

            A configuration for a set of custom HTTP response headers.

            • Quantityrequired — (Integer)

              The number of HTTP response headers in the list.

            • Items — (Array<map>)

              The list of HTTP response headers and their values.

              • Headerrequired — (String)

                The HTTP response header name.

              • Valuerequired — (String)

                The value for the HTTP response header.

              • Overriderequired — (Boolean)

                A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.

          • RemoveHeadersConfig — (map)

            A configuration for a set of HTTP headers to remove from the HTTP response.

            • Quantityrequired — (Integer)

              The number of HTTP header names in the list.

            • Items — (Array<map>)

              The list of HTTP header names.

              • Headerrequired — (String)

                The HTTP header name.

      • ETag — (String)

        The current version of the response headers policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateStreamingDistribution(params = {}, callback) ⇒ AWS.Request

Update a streaming distribution.

Service Reference:

Examples:

Calling the updateStreamingDistribution operation

var params = {
  Id: 'STRING_VALUE', /* required */
  StreamingDistributionConfig: { /* required */
    CallerReference: 'STRING_VALUE', /* required */
    Comment: 'STRING_VALUE', /* required */
    Enabled: true || false, /* required */
    S3Origin: { /* required */
      DomainName: 'STRING_VALUE', /* required */
      OriginAccessIdentity: 'STRING_VALUE' /* required */
    },
    TrustedSigners: { /* required */
      Enabled: true || false, /* required */
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    Aliases: {
      Quantity: 'NUMBER_VALUE', /* required */
      Items: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    Logging: {
      Bucket: 'STRING_VALUE', /* required */
      Enabled: true || false, /* required */
      Prefix: 'STRING_VALUE' /* required */
    },
    PriceClass: PriceClass_100 | PriceClass_200 | PriceClass_All
  },
  IfMatch: 'STRING_VALUE'
};
cloudfront.updateStreamingDistribution(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • StreamingDistributionConfig — (map)

      The streaming distribution's configuration information.

      • CallerReferencerequired — (String)

        A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

        If the value of CallerReference is new (regardless of the content of the StreamingDistributionConfig object), CloudFront creates a new distribution.

        If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

      • S3Originrequired — (map)

        A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

        • DomainNamerequired — (String)

          The DNS name of the Amazon S3 origin.

        • OriginAccessIdentityrequired — (String)

          The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

          If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

          To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

          To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

          For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.

      • Aliases — (map)

        A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.

        • Quantityrequired — (Integer)

          The number of CNAME aliases, if any, that you want to associate with this distribution.

        • Items — (Array<String>)

          A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

      • Commentrequired — (String)

        Any comments you want to include about the streaming distribution.

      • Logging — (map)

        A complex type that controls whether access logs are written for the streaming distribution.

        • Enabledrequired — (Boolean)

          Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket and Prefix, the values are automatically deleted.

        • Bucketrequired — (String)

          The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

        • Prefixrequired — (String)

          An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

      • TrustedSignersrequired — (map)

        A complex type that specifies any Amazon Web Services accounts that you want to permit to create signed URLs for private content. If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

        • Enabledrequired — (Boolean)

          This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

        • Quantityrequired — (Integer)

          The number of Amazon Web Services accounts in the list.

        • Items — (Array<String>)

          A list of Amazon Web Services account identifiers.

      • PriceClass — (String)

        A complex type that contains information about price class for this streaming distribution.

        Possible values include:
        • "PriceClass_100"
        • "PriceClass_200"
        • "PriceClass_All"
      • Enabledrequired — (Boolean)

        Whether the streaming distribution is enabled to accept user requests for content.

    • Id — (String)

      The streaming distribution's id.

    • IfMatch — (String)

      The value of the ETag header that you received when retrieving the streaming distribution's configuration. For example: E2QWRUHAPOMQZL.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • StreamingDistribution — (map)

        The streaming distribution's information.

        • Idrequired — (String)

          The identifier for the RTMP distribution. For example: EGTXBD79EXAMPLE.

        • ARNrequired — (String)

          The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your Amazon Web Services account ID.

        • Statusrequired — (String)

          The current status of the RTMP distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations.

        • LastModifiedTime — (Date)

          The date and time that the distribution was last modified.

        • DomainNamerequired — (String)

          The domain name that corresponds to the streaming distribution, for example, s5c39gqb8ow64r.cloudfront.net.

        • ActiveTrustedSignersrequired — (map)

          A complex type that lists the Amazon Web Services accounts, if any, that you included in the TrustedSigners complex type for this distribution. These are the accounts that you want to allow to create signed URLs for private content.

          The Signer complex type lists the Amazon Web Services account number of the trusted signer or self if the signer is the Amazon Web Services account that created the distribution. The Signer element also includes the IDs of any active CloudFront key pairs that are associated with the trusted signer's Amazon Web Services account. If no KeyPairId element appears for a Signer, that signer can't create signed URLs.

          For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • StreamingDistributionConfigrequired — (map)

          The current configuration information for the RTMP distribution.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the StreamingDistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • S3Originrequired — (map)

            A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

            • DomainNamerequired — (String)

              The DNS name of the Amazon S3 origin.

            • OriginAccessIdentityrequired — (String)

              The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

              If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

              To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

              To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

              For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • Commentrequired — (String)

            Any comments you want to include about the streaming distribution.

          • Logging — (map)

            A complex type that controls whether access logs are written for the streaming distribution.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket and Prefix, the values are automatically deleted.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • TrustedSignersrequired — (map)

            A complex type that specifies any Amazon Web Services accounts that you want to permit to create signed URLs for private content. If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of Amazon Web Services accounts in the list.

            • Items — (Array<String>)

              A list of Amazon Web Services account identifiers.

          • PriceClass — (String)

            A complex type that contains information about price class for this streaming distribution.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            Whether the streaming distribution is enabled to accept user requests for content.

      • ETag — (String)

        The current version of the configuration. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

waitFor(state, params = {}, callback) ⇒ AWS.Request

Waits for a given CloudFront resource. The final callback or 'complete' event will be fired only when the resource is either in its final state or the waiter has timed out and stopped polling for the final state.

Examples:

Waiting for the distributionDeployed state

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.waitFor('distributionDeployed', params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • state (String)

    the resource state to wait for. Available states for this service are listed in "Waiter Resource States" below.

  • params (map) (defaults to: {})

    a list of parameters for the given state. See each waiter resource state for required parameters.

Callback (callback):

  • function(err, data) { ... }

    Callback containing error and data information. See the respective resource state for the expected error or data information.

    If the waiter times out its requests, it will return a ResourceNotReady error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

Waiter Resource States:

Waiter Resource Details

cloudfront.waitFor('distributionDeployed', params = {}, [callback]) ⇒ AWS.Request

Waits for the distributionDeployed state by periodically calling the underlying CloudFront.getDistribution() operation every 60 seconds (at most 35 times).

Examples:

Waiting for the distributionDeployed state

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.waitFor('distributionDeployed', params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object)
    • Id — (String)

      The distribution's ID. If the ID is empty, an empty distribution configuration is returned.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Distribution — (map)

        The distribution's information.

        • Idrequired — (String)

          The distribution's identifier. For example: E1U5RQF7T870K0.

        • ARNrequired — (String)

          The distribution's Amazon Resource Name (ARN).

        • Statusrequired — (String)

          The distribution's status. When the status is Deployed, the distribution's information is fully propagated to all CloudFront edge locations.

        • LastModifiedTimerequired — (Date)

          The date and time when the distribution was last modified.

        • InProgressInvalidationBatchesrequired — (Integer)

          The number of invalidation batches currently in progress.

        • DomainNamerequired — (String)

          The distribution's CloudFront domain name. For example: d111111abcdef8.cloudfront.net.

        • ActiveTrustedSigners — (map)

          We recommend using TrustedKeyGroups instead of TrustedSigners.

          This field contains a list of Amazon Web Services account IDs and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • ActiveTrustedKeyGroups — (map)

          This field contains a list of key groups and the public keys in each key group that CloudFront can use to verify the signatures of signed URLs or signed cookies.

          • Enabledrequired — (Boolean)

            This field is true if any of the key groups have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of key groups in the list.

          • Items — (Array<map>)

            A list of key groups, including the identifiers of the public keys in each key group that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • KeyGroupId — (String)

              The identifier of the key group that contains the public keys.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • DistributionConfigrequired — (map)

          The distribution's configuration.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • DefaultRootObject — (String)

            The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution.

            Specify only the object name, for example, index.html. Don't add a / before the object name.

            If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element.

            To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element.

            To replace the default root object, update the distribution configuration and specify the new object.

            For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.

          • Originsrequired — (map)

            A complex type that contains information about origins for this distribution.

            • Quantityrequired — (Integer)

              The number of origins for this distribution.

            • Itemsrequired — (Array<map>)

              A list of origins.

              • Idrequired — (String)

                A unique identifier for the origin. This value must be unique within the distribution.

                Use this value to specify the TargetOriginId in a CacheBehavior or DefaultCacheBehavior.

              • DomainNamerequired — (String)

                The domain name for the origin.

                For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide.

              • OriginPath — (String)

                An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.

                For more information, see Origin Path in the Amazon CloudFront Developer Guide.

              • CustomHeaders — (map)

                A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

                For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of custom headers, if any, for this distribution.

                • Items — (Array<map>)

                  Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.

                  • HeaderNamerequired — (String)

                    The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

                  • HeaderValuerequired — (String)

                    The value for the header that you specified in the HeaderName field.

              • S3OriginConfig — (map)

                Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

                • OriginAccessIdentityrequired — (String)

                  The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:

                  origin-access-identity/cloudfront/ID-of-origin-access-identity

                  where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity.

                  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

                  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

                  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

                  For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

              • CustomOriginConfig — (map)

                Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

                • HTTPPortrequired — (Integer)

                  The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.

                • HTTPSPortrequired — (Integer)

                  The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.

                • OriginProtocolPolicyrequired — (String)

                  Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:

                  • http-only – CloudFront always uses HTTP to connect to the origin.

                  • match-viewer – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.

                  • https-only – CloudFront always uses HTTPS to connect to the origin.

                  Possible values include:
                  • "http-only"
                  • "match-viewer"
                  • "https-only"
                • OriginSslProtocols — (map)

                  Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include SSLv3, TLSv1, TLSv1.1, and TLSv1.2.

                  For more information, see Minimum Origin SSL Protocol in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

                  • Itemsrequired — (Array<String>)

                    A list that contains allowed SSL/TLS protocols for this distribution.

                • OriginReadTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the origin response timeout. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.

                  For more information, see Origin Response Timeout in the Amazon CloudFront Developer Guide.

                • OriginKeepaliveTimeout — (Integer)

                  Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.

                  For more information, see Origin Keep-alive Timeout in the Amazon CloudFront Developer Guide.

              • ConnectionAttempts — (Integer)

                The number of times that CloudFront attempts to connect to the origin. The minimum number is 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.

                For a custom origin (including an Amazon S3 bucket that's configured with static website hosting), this value also specifies the number of times that CloudFront attempts to get a response from the origin, in the case of an Origin Response Timeout.

                For more information, see Origin Connection Attempts in the Amazon CloudFront Developer Guide.

              • ConnectionTimeout — (Integer)

                The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don't specify otherwise) is 10 seconds.

                For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

              • OriginShield — (map)

                CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

                For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  A flag that specifies whether Origin Shield is enabled.

                  When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

                • OriginShieldRegion — (String)

                  The Amazon Web Services Region for Origin Shield.

                  Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

                  When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.

              • OriginAccessControlId — (String)

                The unique identifier of an origin access control for this origin.

                For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.

          • OriginGroups — (map)

            A complex type that contains information about origin groups for this distribution.

            • Quantityrequired — (Integer)

              The number of origin groups.

            • Items — (Array<map>)

              The items (origin groups) in a distribution.

              • Idrequired — (String)

                The origin group's ID.

              • FailoverCriteriarequired — (map)

                A complex type that contains information about the failover criteria for an origin group.

                • StatusCodesrequired — (map)

                  The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.

                  • Quantityrequired — (Integer)

                    The number of status codes.

                  • Itemsrequired — (Array<Integer>)

                    The items (status codes) for an origin group.

              • Membersrequired — (map)

                A complex type that contains information about the origins in an origin group.

                • Quantityrequired — (Integer)

                  The number of origins in an origin group.

                • Itemsrequired — (Array<map>)

                  Items (origins) in an origin group.

                  • OriginIdrequired — (String)

                    The ID for an origin in an origin group.

          • DefaultCacheBehaviorrequired — (map)

            A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

            • TargetOriginIdrequired — (String)

              The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior.

            • TrustedSigners — (map)

              We recommend using TrustedKeyGroups instead of TrustedSigners.

              A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of Amazon Web Services accounts in the list.

              • Items — (Array<String>)

                A list of Amazon Web Services account identifiers.

            • TrustedKeyGroups — (map)

              A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

              When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

              • Enabledrequired — (Boolean)

                This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

              • Quantityrequired — (Integer)

                The number of key groups in the list.

              • Items — (Array<String>)

                A list of key groups identifiers.

            • ViewerProtocolPolicyrequired — (String)

              The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

              • allow-all: Viewers can use HTTP or HTTPS.

              • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

              • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

              For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
              Possible values include:
              • "allow-all"
              • "https-only"
              • "redirect-to-https"
            • AllowedMethods — (map)

              A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

              • CloudFront forwards only GET and HEAD requests.

              • CloudFront forwards only GET, HEAD, and OPTIONS requests.

              • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

              If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

              • Quantityrequired — (Integer)

                The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

              • Itemsrequired — (Array<String>)

                A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

              • CachedMethods — (map)

                A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                • CloudFront caches responses to GET and HEAD requests.

                • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                • Quantityrequired — (Integer)

                  The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

            • SmoothStreaming — (Boolean)

              Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

            • Compress — (Boolean)

              Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

            • LambdaFunctionAssociations — (map)

              A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

              • Quantityrequired — (Integer)

                The number of Lambda@Edge function associations for this cache behavior.

              • Items — (Array<map>)

                Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                • LambdaFunctionARNrequired — (String)

                  The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                • EventTyperequired — (String)

                  Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                  • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                  • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                  • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                  • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                    If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
                • IncludeBody — (Boolean)

                  A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

            • FunctionAssociations — (map)

              A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

              • Quantityrequired — (Integer)

                The number of CloudFront functions in the list.

              • Items — (Array<map>)

                The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • FunctionARNrequired — (String)

                  The Amazon Resource Name (ARN) of the function.

                • EventTyperequired — (String)

                  The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                  Possible values include:
                  • "viewer-request"
                  • "viewer-response"
                  • "origin-request"
                  • "origin-response"
            • FieldLevelEncryptionId — (String)

              The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for the default cache behavior.

            • RealtimeLogConfigArn — (String)

              The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

            • CachePolicyId — (String)

              The unique identifier of the cache policy that is attached to the default cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

            • OriginRequestPolicyId — (String)

              The unique identifier of the origin request policy that is attached to the default cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

            • ResponseHeadersPolicyId — (String)

              The identifier for a response headers policy.

            • ForwardedValues — (map)

              This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

              If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              A DefaultCacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

              • QueryStringrequired — (Boolean)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

              • Cookiesrequired — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                • Forwardrequired — (String)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                  Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                  Possible values include:
                  • "none"
                  • "whitelist"
                  • "all"
                • WhitelistedNames — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                  If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                  For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                  • Quantityrequired — (Integer)

                    The number of cookie names in the Items list.

                  • Items — (Array<String>)

                    A list of cookie names.

              • Headers — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                • Quantityrequired — (Integer)

                  The number of header names in the Items list.

                • Items — (Array<String>)

                  A list of HTTP header names.

              • QueryStringCacheKeys — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                • Quantityrequired — (Integer)

                  The number of whitelisted query string parameters for a cache behavior.

                • Items — (Array<String>)

                  A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

            • MinTTL — (Integer)

              This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

            • DefaultTTL — (Integer)

              This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

            • MaxTTL — (Integer)

              This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

              The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CacheBehaviors — (map)

            A complex type that contains zero or more CacheBehavior elements.

            • Quantityrequired — (Integer)

              The number of cache behaviors for this distribution.

            • Items — (Array<map>)

              Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

              • PathPatternrequired — (String)

                The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution.

                Note: You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /.

                The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior.

                For more information, see Path Pattern in the Amazon CloudFront Developer Guide.

              • TargetOriginIdrequired — (String)

                The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior.

              • TrustedSigners — (map)

                We recommend using TrustedKeyGroups instead of TrustedSigners.

                A list of Amazon Web Services account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer's Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of Amazon Web Services accounts in the list.

                • Items — (Array<String>)

                  A list of Amazon Web Services account identifiers.

              • TrustedKeyGroups — (map)

                A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

                When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

                • Enabledrequired — (Boolean)

                  This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

                • Quantityrequired — (Integer)

                  The number of key groups in the list.

                • Items — (Array<String>)

                  A list of key groups identifiers.

              • ViewerProtocolPolicyrequired — (String)

                The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options:

                • allow-all: Viewers can use HTTP or HTTPS.

                • redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL.

                • https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden).

                For more information about requiring the HTTPS protocol, see Requiring HTTPS Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

                Note: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing Cache Expiration in the Amazon CloudFront Developer Guide.
                Possible values include:
                • "allow-all"
                • "https-only"
                • "redirect-to-https"
              • AllowedMethods — (map)

                A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

                • CloudFront forwards only GET and HEAD requests.

                • CloudFront forwards only GET, HEAD, and OPTIONS requests.

                • CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests.

                If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin.

                • Quantityrequired — (Integer)

                  The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).

                • Itemsrequired — (Array<String>)

                  A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.

                • CachedMethods — (map)

                  A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

                  • CloudFront caches responses to GET and HEAD requests.

                  • CloudFront caches responses to GET, HEAD, and OPTIONS requests.

                  If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly.

                  • Quantityrequired — (Integer)

                    The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).

                  • Itemsrequired — (Array<String>)

                    A complex type that contains the HTTP methods that you want CloudFront to cache responses to.

              • SmoothStreaming — (Boolean)

                Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.

              • Compress — (Boolean)

                Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.

              • LambdaFunctionAssociations — (map)

                A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.

                • Quantityrequired — (Integer)

                  The number of Lambda@Edge function associations for this cache behavior.

                • Items — (Array<map>)

                  Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.

                  • LambdaFunctionARNrequired — (String)

                    The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST.

                  • EventTyperequired — (String)

                    Specifies the event type that triggers a Lambda@Edge function invocation. You can specify the following values:

                    • viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache.

                    • origin-request: The function executes only when CloudFront sends a request to your origin. When the requested object is in the edge cache, the function doesn't execute.

                    • origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute.

                    • viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache.

                      If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
                  • IncludeBody — (Boolean)

                    A flag that allows a Lambda@Edge function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.

              • FunctionAssociations — (map)

                A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                • Quantityrequired — (Integer)

                  The number of CloudFront functions in the list.

                • Items — (Array<map>)

                  The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.

                  • FunctionARNrequired — (String)

                    The Amazon Resource Name (ARN) of the function.

                  • EventTyperequired — (String)

                    The event type of the function, either viewer-request or viewer-response. You cannot use origin-facing event types (origin-request and origin-response) with a CloudFront function.

                    Possible values include:
                    • "viewer-request"
                    • "viewer-response"
                    • "origin-request"
                    • "origin-response"
              • FieldLevelEncryptionId — (String)

                The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for this cache behavior.

              • RealtimeLogConfigArn — (String)

                The Amazon Resource Name (ARN) of the real-time log configuration that is attached to this cache behavior. For more information, see Real-time logs in the Amazon CloudFront Developer Guide.

              • CachePolicyId — (String)

                The unique identifier of the cache policy that is attached to this cache behavior. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

              • OriginRequestPolicyId — (String)

                The unique identifier of the origin request policy that is attached to this cache behavior. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

              • ResponseHeadersPolicyId — (String)

                The identifier for a response headers policy.

              • ForwardedValues — (map)

                This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field. For more information, see Working with policies in the Amazon CloudFront Developer Guide.

                If you want to include values in the cache key, use a cache policy. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                If you want to send values to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies or Using the managed origin request policies in the Amazon CloudFront Developer Guide.

                A CacheBehavior must include either a CachePolicyId or ForwardedValues. We recommend that you use a CachePolicyId.

                A complex type that specifies how CloudFront handles query strings, cookies, and HTTP headers.

                • QueryStringrequired — (Boolean)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any:

                  If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin.

                  If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify.

                  If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters.

                  For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.

                • Cookiesrequired — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.

                  • Forwardrequired — (String)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type.

                    Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.

                    Possible values include:
                    • "none"
                    • "whitelist"
                    • "all"
                  • WhitelistedNames — (map)

                    This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                    If you want to include cookies in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                    If you want to send cookies to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                    Required if you specify whitelist for the value of Forward. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies.

                    If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically.

                    For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the Amazon Web Services General Reference.

                    • Quantityrequired — (Integer)

                      The number of cookie names in the Items list.

                    • Items — (Array<String>)

                      A list of cookie names.

                • Headers — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include headers in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send headers to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests.

                  For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.

                  • Quantityrequired — (Integer)

                    The number of header names in the Items list.

                  • Items — (Array<String>)

                    A list of HTTP header names.

                • QueryStringCacheKeys — (map)

                  This field is deprecated. We recommend that you use a cache policy or an origin request policy instead of this field.

                  If you want to include query strings in the cache key, use a cache policy. For more information, see Creating cache policies in the Amazon CloudFront Developer Guide.

                  If you want to send query strings to the origin but not include them in the cache key, use an origin request policy. For more information, see Creating origin request policies in the Amazon CloudFront Developer Guide.

                  A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.

                  • Quantityrequired — (Integer)

                    The number of whitelisted query string parameters for a cache behavior.

                  • Items — (Array<String>)

                    A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

              • MinTTL — (Integer)

                This field is deprecated. We recommend that you use the MinTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

                You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).

              • DefaultTTL — (Integer)

                This field is deprecated. We recommend that you use the DefaultTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

              • MaxTTL — (Integer)

                This field is deprecated. We recommend that you use the MaxTTL field in a cache policy instead of this field. For more information, see Creating cache policies or Using the managed cache policies in the Amazon CloudFront Developer Guide.

                The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.

          • CustomErrorResponses — (map)

            A complex type that controls the following:

            • Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.

            • How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

            For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.

            • Items — (Array<map>)

              A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ErrorCoderequired — (Integer)

                The HTTP status code for which you want to specify a custom error page and/or a caching duration.

              • ResponsePagePath — (String)

                The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:

                • The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*.

                • The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages.

                If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode.

                We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.

              • ResponseCode — (String)

                The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:

                • Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted.

                • If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors.

                • You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down.

                If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath.

              • ErrorCachingMinTTL — (Integer)

                The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

                For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.

          • Commentrequired — (String)

            A comment to describe the distribution. The comment cannot be longer than 128 characters.

          • Logging — (map)

            A complex type that controls whether access logs are written for the distribution.

            For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.

            • IncludeCookiesrequired — (Boolean)

              Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • PriceClass — (String)

            The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations.

            If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.

            For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            From this field, you can enable or disable the selected distribution.

          • ViewerCertificate — (map)

            A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.

            • CloudFrontDefaultCertificate — (Boolean)

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, set this field to true.

              If the distribution uses Aliases (alternate domain names or CNAMEs), set this field to false and specify values for the following fields:

              • ACMCertificateArn or IAMCertificateId (specify a value for one, not both)

              • MinimumProtocolVersion

              • SSLSupportMethod

            • IAMCertificateId — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Identity and Access Management (IAM), provide the ID of the IAM certificate.

              If you specify an IAM certificate ID, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • ACMCertificateArn — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs) and the SSL/TLS certificate is stored in Certificate Manager (ACM), provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only supports ACM certificates in the US East (N. Virginia) Region (us-east-1).

              If you specify an ACM certificate ARN, you must also specify values for MinimumProtocolVersion and SSLSupportMethod.

            • SSLSupportMethod — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify which viewers the distribution accepts HTTPS connections from.

              • sni-only – The distribution accepts HTTPS connections from only viewers that support server name indication (SNI). This is recommended. Most browsers and clients support SNI.

              • vip – The distribution accepts HTTPS connections from all viewers including those that don't support SNI. This is not recommended, and results in additional monthly charges from CloudFront.

              • static-ip - Do not specify this value unless your distribution has been enabled for this feature by the CloudFront team. If you have a use case that requires static IP addresses for a distribution, contact CloudFront through the Amazon Web Services Support Center.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net, don't set a value for this field.

              Possible values include:
              • "sni-only"
              • "vip"
              • "static-ip"
            • MinimumProtocolVersion — (String)

              If the distribution uses Aliases (alternate domain names or CNAMEs), specify the security policy that you want CloudFront to use for HTTPS connections with viewers. The security policy determines two settings:

              • The minimum SSL/TLS protocol that CloudFront can use to communicate with viewers.

              • The ciphers that CloudFront can use to encrypt the content that it returns to viewers.

              For more information, see Security Policy and Supported Protocols and Ciphers Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.

              Note: On the CloudFront console, this setting is called Security Policy.

              When you're using SNI only (you set SSLSupportMethod to sni-only), you must specify TLSv1 or higher.

              If the distribution uses the CloudFront domain name such as d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true), CloudFront automatically sets the security policy to TLSv1 regardless of the value that you set here.

              Possible values include:
              • "SSLv3"
              • "TLSv1"
              • "TLSv1_2016"
              • "TLSv1.1_2016"
              • "TLSv1.2_2018"
              • "TLSv1.2_2019"
              • "TLSv1.2_2021"
            • Certificate — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

            • CertificateSource — (String)

              This field is deprecated. Use one of the following fields instead:

              • ACMCertificateArn

              • IAMCertificateId

              • CloudFrontDefaultCertificate

              Possible values include:
              • "cloudfront"
              • "iam"
              • "acm"
          • Restrictions — (map)

            A complex type that identifies ways in which you want to restrict distribution of your content.

            • GeoRestrictionrequired — (map)

              A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.

              • RestrictionTyperequired — (String)

                The method that you want to use to restrict distribution of your content by country:

                • none: No geo restriction is enabled, meaning access to content is not restricted by client geo location.

                • blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content.

                • whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.

                Possible values include:
                • "blacklist"
                • "whitelist"
                • "none"
              • Quantityrequired — (Integer)

                When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.

              • Items — (Array<String>)

                A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist).

                The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country.

                CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

          • WebACLId — (String)

            A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a.

            WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.

          • HttpVersion — (String)

            (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.

            For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).

            For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.

            Possible values include:
            • "http1.1"
            • "http2"
            • "http3"
            • "http2and3"
          • IsIPV6Enabled — (Boolean)

            If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.

            In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.

            If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:

            • You enable IPv6 for the distribution

            • You're using alternate domain names in the URLs for your objects

            For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.

            If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.

          • ContinuousDeploymentPolicyId — (String)

            The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy.

          • Staging — (Boolean)

            A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.

        • AliasICPRecordals — (Array<map>)

          Amazon Web Services services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

          For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with Amazon Web Services services in China.

          • CNAME — (String)

            A domain name associated with a distribution.

          • ICPRecordalStatus — (String)

            The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China.

            The status values returned are the following:

            • APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it.

            • SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number.

            • PENDING indicates that CloudFront can't determine the ICP recordal status of the CNAME associated with the distribution because there was an error in trying to determine the status. You can try again to see if the error is resolved in which case CloudFront returns an APPROVED or SUSPENDED status.

            Possible values include:
            • "APPROVED"
            • "SUSPENDED"
            • "PENDING"
      • ETag — (String)

        The current version of the distribution's information. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

See Also:

cloudfront.waitFor('invalidationCompleted', params = {}, [callback]) ⇒ AWS.Request

Waits for the invalidationCompleted state by periodically calling the underlying CloudFront.getInvalidation() operation every 20 seconds (at most 30 times).

Examples:

Waiting for the invalidationCompleted state

var params = {
  DistributionId: 'STRING_VALUE', /* required */
  Id: 'STRING_VALUE' /* required */
};
cloudfront.waitFor('invalidationCompleted', params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object)
    • DistributionId — (String)

      The distribution's ID.

    • Id — (String)

      The identifier for the invalidation request, for example, IDFDVBD632BHDS5.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Invalidation — (map)

        The invalidation's information. For more information, see Invalidation Complex Type.

        • Idrequired — (String)

          The identifier for the invalidation request. For example: IDFDVBD632BHDS5.

        • Statusrequired — (String)

          The status of the invalidation request. When the invalidation batch is finished, the status is Completed.

        • CreateTimerequired — (Date)

          The date and time the invalidation request was first made.

        • InvalidationBatchrequired — (map)

          The current invalidation information for the batch request.

          • Pathsrequired — (map)

            A complex type that contains information about the objects that you want to invalidate. For more information, see Specifying the Objects to Invalidate in the Amazon CloudFront Developer Guide.

            • Quantityrequired — (Integer)

              The number of invalidation paths specified for the objects that you want to invalidate.

            • Items — (Array<String>)

              A complex type that contains a list of the paths that you want to invalidate.

          • CallerReferencerequired — (String)

            A value that you specify to uniquely identify an invalidation request. CloudFront uses the value to prevent you from accidentally resubmitting an identical request. Whenever you create a new invalidation request, you must specify a new value for CallerReference and change other values in the request as applicable. One way to ensure that the value of CallerReference is unique is to use a timestamp, for example, 20120301090000.

            If you make a second invalidation request with the same value for CallerReference, and if the rest of the request is the same, CloudFront doesn't create a new invalidation request. Instead, CloudFront returns information about the invalidation request that you previously created with the same CallerReference.

            If CallerReference is a value you already sent in a previous invalidation batch request but the content of any Path is different from the original request, CloudFront returns an InvalidationBatchAlreadyExists error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

See Also:

cloudfront.waitFor('streamingDistributionDeployed', params = {}, [callback]) ⇒ AWS.Request

Waits for the streamingDistributionDeployed state by periodically calling the underlying CloudFront.getStreamingDistribution() operation every 60 seconds (at most 25 times).

Examples:

Waiting for the streamingDistributionDeployed state

var params = {
  Id: 'STRING_VALUE' /* required */
};
cloudfront.waitFor('streamingDistributionDeployed', params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object)
    • Id — (String)

      The streaming distribution's ID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • StreamingDistribution — (map)

        The streaming distribution's information.

        • Idrequired — (String)

          The identifier for the RTMP distribution. For example: EGTXBD79EXAMPLE.

        • ARNrequired — (String)

          The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your Amazon Web Services account ID.

        • Statusrequired — (String)

          The current status of the RTMP distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations.

        • LastModifiedTime — (Date)

          The date and time that the distribution was last modified.

        • DomainNamerequired — (String)

          The domain name that corresponds to the streaming distribution, for example, s5c39gqb8ow64r.cloudfront.net.

        • ActiveTrustedSignersrequired — (map)

          A complex type that lists the Amazon Web Services accounts, if any, that you included in the TrustedSigners complex type for this distribution. These are the accounts that you want to allow to create signed URLs for private content.

          The Signer complex type lists the Amazon Web Services account number of the trusted signer or self if the signer is the Amazon Web Services account that created the distribution. The Signer element also includes the IDs of any active CloudFront key pairs that are associated with the trusted signer's Amazon Web Services account. If no KeyPairId element appears for a Signer, that signer can't create signed URLs.

          For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

          • Enabledrequired — (Boolean)

            This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

          • Quantityrequired — (Integer)

            The number of Amazon Web Services accounts in the list.

          • Items — (Array<map>)

            A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

            • AwsAccountNumber — (String)

              An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

            • KeyPairIds — (map)

              A list of CloudFront key pair identifiers.

              • Quantityrequired — (Integer)

                The number of key pair identifiers in the list.

              • Items — (Array<String>)

                A list of CloudFront key pair identifiers.

        • StreamingDistributionConfigrequired — (map)

          The current configuration information for the RTMP distribution.

          • CallerReferencerequired — (String)

            A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.

            If the value of CallerReference is new (regardless of the content of the StreamingDistributionConfig object), CloudFront creates a new distribution.

            If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.

          • S3Originrequired — (map)

            A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

            • DomainNamerequired — (String)

              The DNS name of the Amazon S3 origin.

            • OriginAccessIdentityrequired — (String)

              The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

              If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

              To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

              To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

              For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.

          • Aliases — (map)

            A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.

            • Quantityrequired — (Integer)

              The number of CNAME aliases, if any, that you want to associate with this distribution.

            • Items — (Array<String>)

              A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

          • Commentrequired — (String)

            Any comments you want to include about the streaming distribution.

          • Logging — (map)

            A complex type that controls whether access logs are written for the streaming distribution.

            • Enabledrequired — (Boolean)

              Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket and Prefix, the values are automatically deleted.

            • Bucketrequired — (String)

              The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.

            • Prefixrequired — (String)

              An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.

          • TrustedSignersrequired — (map)

            A complex type that specifies any Amazon Web Services accounts that you want to permit to create signed URLs for private content. If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

            • Enabledrequired — (Boolean)

              This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

            • Quantityrequired — (Integer)

              The number of Amazon Web Services accounts in the list.

            • Items — (Array<String>)

              A list of Amazon Web Services account identifiers.

          • PriceClass — (String)

            A complex type that contains information about price class for this streaming distribution.

            Possible values include:
            • "PriceClass_100"
            • "PriceClass_200"
            • "PriceClass_All"
          • Enabledrequired — (Boolean)

            Whether the streaming distribution is enabled to accept user requests for content.

      • ETag — (String)

        The current version of the streaming distribution's information. For example: E2QWRUHAPOMQZL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

See Also: