/ cloudformation-templates / node_modules / aws-cdk / node_modules / aws-sdk / clients / cloudfront.d.ts
cloudfront.d.ts
1 import {Request} from '../lib/request'; 2 import {Response} from '../lib/response'; 3 import {AWSError} from '../lib/error'; 4 import {CloudFrontCustomizations} from '../lib/services/cloudfront'; 5 import {WaiterConfiguration} from '../lib/service'; 6 import {ServiceConfigurationOptions} from '../lib/service'; 7 import {ConfigBase as Config} from '../lib/config-base'; 8 import {Signer as signer} from '../lib/cloudfront/signer'; 9 interface Blob {} 10 declare class CloudFront extends CloudFrontCustomizations { 11 /** 12 * Constructs a service object. This object has one method for each API operation. 13 */ 14 constructor(options?: CloudFront.Types.ClientConfiguration) 15 config: Config & CloudFront.Types.ClientConfiguration; 16 /** 17 * 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. 18 */ 19 associateAlias(params: CloudFront.Types.AssociateAliasRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 20 /** 21 * 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. 22 */ 23 associateAlias(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 24 /** 25 * 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 automatically 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. 26 */ 27 createCachePolicy(params: CloudFront.Types.CreateCachePolicyRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateCachePolicyResult) => void): Request<CloudFront.Types.CreateCachePolicyResult, AWSError>; 28 /** 29 * 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 automatically 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. 30 */ 31 createCachePolicy(callback?: (err: AWSError, data: CloudFront.Types.CreateCachePolicyResult) => void): Request<CloudFront.Types.CreateCachePolicyResult, AWSError>; 32 /** 33 * 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. 34 */ 35 createCloudFrontOriginAccessIdentity(params: CloudFront.Types.CreateCloudFrontOriginAccessIdentityRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.CreateCloudFrontOriginAccessIdentityResult, AWSError>; 36 /** 37 * 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. 38 */ 39 createCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: CloudFront.Types.CreateCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.CreateCloudFrontOriginAccessIdentityResult, AWSError>; 40 /** 41 * Creates a new web distribution. You create a CloudFront distribution to tell CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery. Send a POST request to the /CloudFront API version/distribution/distribution ID resource. When you update a distribution, there are more required fields than when you create a distribution. When you update your distribution by using UpdateDistribution, follow the steps included in the documentation to get the current configuration and then make your updates. This helps to make sure that you include all of the required fields. To view a summary, see Required Fields for Create Distribution and Update Distribution in the Amazon CloudFront Developer Guide. 42 */ 43 createDistribution(params: CloudFront.Types.CreateDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionResult) => void): Request<CloudFront.Types.CreateDistributionResult, AWSError>; 44 /** 45 * Creates a new web distribution. You create a CloudFront distribution to tell CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery. Send a POST request to the /CloudFront API version/distribution/distribution ID resource. When you update a distribution, there are more required fields than when you create a distribution. When you update your distribution by using UpdateDistribution, follow the steps included in the documentation to get the current configuration and then make your updates. This helps to make sure that you include all of the required fields. To view a summary, see Required Fields for Create Distribution and Update Distribution in the Amazon CloudFront Developer Guide. 46 */ 47 createDistribution(callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionResult) => void): Request<CloudFront.Types.CreateDistributionResult, AWSError>; 48 /** 49 * Create a new distribution with tags. 50 */ 51 createDistributionWithTags(params: CloudFront.Types.CreateDistributionWithTagsRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateDistributionWithTagsResult, AWSError>; 52 /** 53 * Create a new distribution with tags. 54 */ 55 createDistributionWithTags(callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateDistributionWithTagsResult, AWSError>; 56 /** 57 * Create a new field-level encryption configuration. 58 */ 59 createFieldLevelEncryptionConfig(params: CloudFront.Types.CreateFieldLevelEncryptionConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.CreateFieldLevelEncryptionConfigResult, AWSError>; 60 /** 61 * Create a new field-level encryption configuration. 62 */ 63 createFieldLevelEncryptionConfig(callback?: (err: AWSError, data: CloudFront.Types.CreateFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.CreateFieldLevelEncryptionConfigResult, AWSError>; 64 /** 65 * Create a field-level encryption profile. 66 */ 67 createFieldLevelEncryptionProfile(params: CloudFront.Types.CreateFieldLevelEncryptionProfileRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.CreateFieldLevelEncryptionProfileResult, AWSError>; 68 /** 69 * Create a field-level encryption profile. 70 */ 71 createFieldLevelEncryptionProfile(callback?: (err: AWSError, data: CloudFront.Types.CreateFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.CreateFieldLevelEncryptionProfileResult, AWSError>; 72 /** 73 * 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. 74 */ 75 createFunction(params: CloudFront.Types.CreateFunctionRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateFunctionResult) => void): Request<CloudFront.Types.CreateFunctionResult, AWSError>; 76 /** 77 * 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. 78 */ 79 createFunction(callback?: (err: AWSError, data: CloudFront.Types.CreateFunctionResult) => void): Request<CloudFront.Types.CreateFunctionResult, AWSError>; 80 /** 81 * Create a new invalidation. 82 */ 83 createInvalidation(params: CloudFront.Types.CreateInvalidationRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateInvalidationResult) => void): Request<CloudFront.Types.CreateInvalidationResult, AWSError>; 84 /** 85 * Create a new invalidation. 86 */ 87 createInvalidation(callback?: (err: AWSError, data: CloudFront.Types.CreateInvalidationResult) => void): Request<CloudFront.Types.CreateInvalidationResult, AWSError>; 88 /** 89 * 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. 90 */ 91 createKeyGroup(params: CloudFront.Types.CreateKeyGroupRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateKeyGroupResult) => void): Request<CloudFront.Types.CreateKeyGroupResult, AWSError>; 92 /** 93 * 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. 94 */ 95 createKeyGroup(callback?: (err: AWSError, data: CloudFront.Types.CreateKeyGroupResult) => void): Request<CloudFront.Types.CreateKeyGroupResult, AWSError>; 96 /** 97 * 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. 98 */ 99 createMonitoringSubscription(params: CloudFront.Types.CreateMonitoringSubscriptionRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateMonitoringSubscriptionResult) => void): Request<CloudFront.Types.CreateMonitoringSubscriptionResult, AWSError>; 100 /** 101 * 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. 102 */ 103 createMonitoringSubscription(callback?: (err: AWSError, data: CloudFront.Types.CreateMonitoringSubscriptionResult) => void): Request<CloudFront.Types.CreateMonitoringSubscriptionResult, AWSError>; 104 /** 105 * 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. 106 */ 107 createOriginRequestPolicy(params: CloudFront.Types.CreateOriginRequestPolicyRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateOriginRequestPolicyResult) => void): Request<CloudFront.Types.CreateOriginRequestPolicyResult, AWSError>; 108 /** 109 * 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. 110 */ 111 createOriginRequestPolicy(callback?: (err: AWSError, data: CloudFront.Types.CreateOriginRequestPolicyResult) => void): Request<CloudFront.Types.CreateOriginRequestPolicyResult, AWSError>; 112 /** 113 * Uploads a public key to CloudFront that you can use with signed URLs and signed cookies, or with field-level encryption. 114 */ 115 createPublicKey(params: CloudFront.Types.CreatePublicKeyRequest, callback?: (err: AWSError, data: CloudFront.Types.CreatePublicKeyResult) => void): Request<CloudFront.Types.CreatePublicKeyResult, AWSError>; 116 /** 117 * Uploads a public key to CloudFront that you can use with signed URLs and signed cookies, or with field-level encryption. 118 */ 119 createPublicKey(callback?: (err: AWSError, data: CloudFront.Types.CreatePublicKeyResult) => void): Request<CloudFront.Types.CreatePublicKeyResult, AWSError>; 120 /** 121 * 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. 122 */ 123 createRealtimeLogConfig(params: CloudFront.Types.CreateRealtimeLogConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateRealtimeLogConfigResult) => void): Request<CloudFront.Types.CreateRealtimeLogConfigResult, AWSError>; 124 /** 125 * 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. 126 */ 127 createRealtimeLogConfig(callback?: (err: AWSError, data: CloudFront.Types.CreateRealtimeLogConfigResult) => void): Request<CloudFront.Types.CreateRealtimeLogConfigResult, AWSError>; 128 /** 129 * 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. 130 */ 131 createStreamingDistribution(params: CloudFront.Types.CreateStreamingDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateStreamingDistributionResult) => void): Request<CloudFront.Types.CreateStreamingDistributionResult, AWSError>; 132 /** 133 * 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. 134 */ 135 createStreamingDistribution(callback?: (err: AWSError, data: CloudFront.Types.CreateStreamingDistributionResult) => void): Request<CloudFront.Types.CreateStreamingDistributionResult, AWSError>; 136 /** 137 * 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. 138 */ 139 createStreamingDistributionWithTags(params: CloudFront.Types.CreateStreamingDistributionWithTagsRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateStreamingDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateStreamingDistributionWithTagsResult, AWSError>; 140 /** 141 * 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. 142 */ 143 createStreamingDistributionWithTags(callback?: (err: AWSError, data: CloudFront.Types.CreateStreamingDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateStreamingDistributionWithTagsResult, AWSError>; 144 /** 145 * 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. 146 */ 147 deleteCachePolicy(params: CloudFront.Types.DeleteCachePolicyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 148 /** 149 * 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. 150 */ 151 deleteCachePolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 152 /** 153 * Delete an origin access identity. 154 */ 155 deleteCloudFrontOriginAccessIdentity(params: CloudFront.Types.DeleteCloudFrontOriginAccessIdentityRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 156 /** 157 * Delete an origin access identity. 158 */ 159 deleteCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 160 /** 161 * Delete a distribution. 162 */ 163 deleteDistribution(params: CloudFront.Types.DeleteDistributionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 164 /** 165 * Delete a distribution. 166 */ 167 deleteDistribution(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 168 /** 169 * Remove a field-level encryption configuration. 170 */ 171 deleteFieldLevelEncryptionConfig(params: CloudFront.Types.DeleteFieldLevelEncryptionConfigRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 172 /** 173 * Remove a field-level encryption configuration. 174 */ 175 deleteFieldLevelEncryptionConfig(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 176 /** 177 * Remove a field-level encryption profile. 178 */ 179 deleteFieldLevelEncryptionProfile(params: CloudFront.Types.DeleteFieldLevelEncryptionProfileRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 180 /** 181 * Remove a field-level encryption profile. 182 */ 183 deleteFieldLevelEncryptionProfile(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 184 /** 185 * 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. 186 */ 187 deleteFunction(params: CloudFront.Types.DeleteFunctionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 188 /** 189 * 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. 190 */ 191 deleteFunction(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 192 /** 193 * 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. 194 */ 195 deleteKeyGroup(params: CloudFront.Types.DeleteKeyGroupRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 196 /** 197 * 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. 198 */ 199 deleteKeyGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 200 /** 201 * Disables additional CloudWatch metrics for the specified CloudFront distribution. 202 */ 203 deleteMonitoringSubscription(params: CloudFront.Types.DeleteMonitoringSubscriptionRequest, callback?: (err: AWSError, data: CloudFront.Types.DeleteMonitoringSubscriptionResult) => void): Request<CloudFront.Types.DeleteMonitoringSubscriptionResult, AWSError>; 204 /** 205 * Disables additional CloudWatch metrics for the specified CloudFront distribution. 206 */ 207 deleteMonitoringSubscription(callback?: (err: AWSError, data: CloudFront.Types.DeleteMonitoringSubscriptionResult) => void): Request<CloudFront.Types.DeleteMonitoringSubscriptionResult, AWSError>; 208 /** 209 * 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. 210 */ 211 deleteOriginRequestPolicy(params: CloudFront.Types.DeleteOriginRequestPolicyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 212 /** 213 * 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. 214 */ 215 deleteOriginRequestPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 216 /** 217 * Remove a public key you previously added to CloudFront. 218 */ 219 deletePublicKey(params: CloudFront.Types.DeletePublicKeyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 220 /** 221 * Remove a public key you previously added to CloudFront. 222 */ 223 deletePublicKey(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 224 /** 225 * 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. 226 */ 227 deleteRealtimeLogConfig(params: CloudFront.Types.DeleteRealtimeLogConfigRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 228 /** 229 * 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. 230 */ 231 deleteRealtimeLogConfig(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 232 /** 233 * 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: Disable the RTMP distribution. Submit a GET Streaming Distribution Config request to get the current configuration and the Etag header for the distribution. 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. 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. Review the response to the PUT Streaming Distribution Config request to confirm that the distribution was successfully disabled. Submit a GET Streaming Distribution Config request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed. 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. 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. 234 */ 235 deleteStreamingDistribution(params: CloudFront.Types.DeleteStreamingDistributionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 236 /** 237 * 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: Disable the RTMP distribution. Submit a GET Streaming Distribution Config request to get the current configuration and the Etag header for the distribution. 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. 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. Review the response to the PUT Streaming Distribution Config request to confirm that the distribution was successfully disabled. Submit a GET Streaming Distribution Config request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed. 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. 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. 238 */ 239 deleteStreamingDistribution(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 240 /** 241 * 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. 242 */ 243 describeFunction(params: CloudFront.Types.DescribeFunctionRequest, callback?: (err: AWSError, data: CloudFront.Types.DescribeFunctionResult) => void): Request<CloudFront.Types.DescribeFunctionResult, AWSError>; 244 /** 245 * 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. 246 */ 247 describeFunction(callback?: (err: AWSError, data: CloudFront.Types.DescribeFunctionResult) => void): Request<CloudFront.Types.DescribeFunctionResult, AWSError>; 248 /** 249 * 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. 250 */ 251 getCachePolicy(params: CloudFront.Types.GetCachePolicyRequest, callback?: (err: AWSError, data: CloudFront.Types.GetCachePolicyResult) => void): Request<CloudFront.Types.GetCachePolicyResult, AWSError>; 252 /** 253 * 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. 254 */ 255 getCachePolicy(callback?: (err: AWSError, data: CloudFront.Types.GetCachePolicyResult) => void): Request<CloudFront.Types.GetCachePolicyResult, AWSError>; 256 /** 257 * 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. 258 */ 259 getCachePolicyConfig(params: CloudFront.Types.GetCachePolicyConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetCachePolicyConfigResult) => void): Request<CloudFront.Types.GetCachePolicyConfigResult, AWSError>; 260 /** 261 * 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. 262 */ 263 getCachePolicyConfig(callback?: (err: AWSError, data: CloudFront.Types.GetCachePolicyConfigResult) => void): Request<CloudFront.Types.GetCachePolicyConfigResult, AWSError>; 264 /** 265 * Get the information about an origin access identity. 266 */ 267 getCloudFrontOriginAccessIdentity(params: CloudFront.Types.GetCloudFrontOriginAccessIdentityRequest, callback?: (err: AWSError, data: CloudFront.Types.GetCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.GetCloudFrontOriginAccessIdentityResult, AWSError>; 268 /** 269 * Get the information about an origin access identity. 270 */ 271 getCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: CloudFront.Types.GetCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.GetCloudFrontOriginAccessIdentityResult, AWSError>; 272 /** 273 * Get the configuration information about an origin access identity. 274 */ 275 getCloudFrontOriginAccessIdentityConfig(params: CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigResult) => void): Request<CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigResult, AWSError>; 276 /** 277 * Get the configuration information about an origin access identity. 278 */ 279 getCloudFrontOriginAccessIdentityConfig(callback?: (err: AWSError, data: CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigResult) => void): Request<CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigResult, AWSError>; 280 /** 281 * Get the information about a distribution. 282 */ 283 getDistribution(params: CloudFront.Types.GetDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.GetDistributionResult) => void): Request<CloudFront.Types.GetDistributionResult, AWSError>; 284 /** 285 * Get the information about a distribution. 286 */ 287 getDistribution(callback?: (err: AWSError, data: CloudFront.Types.GetDistributionResult) => void): Request<CloudFront.Types.GetDistributionResult, AWSError>; 288 /** 289 * Get the configuration information about a distribution. 290 */ 291 getDistributionConfig(params: CloudFront.Types.GetDistributionConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetDistributionConfigResult) => void): Request<CloudFront.Types.GetDistributionConfigResult, AWSError>; 292 /** 293 * Get the configuration information about a distribution. 294 */ 295 getDistributionConfig(callback?: (err: AWSError, data: CloudFront.Types.GetDistributionConfigResult) => void): Request<CloudFront.Types.GetDistributionConfigResult, AWSError>; 296 /** 297 * Get the field-level encryption configuration information. 298 */ 299 getFieldLevelEncryption(params: CloudFront.Types.GetFieldLevelEncryptionRequest, callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionResult, AWSError>; 300 /** 301 * Get the field-level encryption configuration information. 302 */ 303 getFieldLevelEncryption(callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionResult, AWSError>; 304 /** 305 * Get the field-level encryption configuration information. 306 */ 307 getFieldLevelEncryptionConfig(params: CloudFront.Types.GetFieldLevelEncryptionConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionConfigResult, AWSError>; 308 /** 309 * Get the field-level encryption configuration information. 310 */ 311 getFieldLevelEncryptionConfig(callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionConfigResult, AWSError>; 312 /** 313 * Get the field-level encryption profile information. 314 */ 315 getFieldLevelEncryptionProfile(params: CloudFront.Types.GetFieldLevelEncryptionProfileRequest, callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionProfileResult, AWSError>; 316 /** 317 * Get the field-level encryption profile information. 318 */ 319 getFieldLevelEncryptionProfile(callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionProfileResult, AWSError>; 320 /** 321 * Get the field-level encryption profile configuration information. 322 */ 323 getFieldLevelEncryptionProfileConfig(params: CloudFront.Types.GetFieldLevelEncryptionProfileConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionProfileConfigResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionProfileConfigResult, AWSError>; 324 /** 325 * Get the field-level encryption profile configuration information. 326 */ 327 getFieldLevelEncryptionProfileConfig(callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionProfileConfigResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionProfileConfigResult, AWSError>; 328 /** 329 * 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. 330 */ 331 getFunction(params: CloudFront.Types.GetFunctionRequest, callback?: (err: AWSError, data: CloudFront.Types.GetFunctionResult) => void): Request<CloudFront.Types.GetFunctionResult, AWSError>; 332 /** 333 * 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. 334 */ 335 getFunction(callback?: (err: AWSError, data: CloudFront.Types.GetFunctionResult) => void): Request<CloudFront.Types.GetFunctionResult, AWSError>; 336 /** 337 * Get the information about an invalidation. 338 */ 339 getInvalidation(params: CloudFront.Types.GetInvalidationRequest, callback?: (err: AWSError, data: CloudFront.Types.GetInvalidationResult) => void): Request<CloudFront.Types.GetInvalidationResult, AWSError>; 340 /** 341 * Get the information about an invalidation. 342 */ 343 getInvalidation(callback?: (err: AWSError, data: CloudFront.Types.GetInvalidationResult) => void): Request<CloudFront.Types.GetInvalidationResult, AWSError>; 344 /** 345 * 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. 346 */ 347 getKeyGroup(params: CloudFront.Types.GetKeyGroupRequest, callback?: (err: AWSError, data: CloudFront.Types.GetKeyGroupResult) => void): Request<CloudFront.Types.GetKeyGroupResult, AWSError>; 348 /** 349 * 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. 350 */ 351 getKeyGroup(callback?: (err: AWSError, data: CloudFront.Types.GetKeyGroupResult) => void): Request<CloudFront.Types.GetKeyGroupResult, AWSError>; 352 /** 353 * 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. 354 */ 355 getKeyGroupConfig(params: CloudFront.Types.GetKeyGroupConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetKeyGroupConfigResult) => void): Request<CloudFront.Types.GetKeyGroupConfigResult, AWSError>; 356 /** 357 * 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. 358 */ 359 getKeyGroupConfig(callback?: (err: AWSError, data: CloudFront.Types.GetKeyGroupConfigResult) => void): Request<CloudFront.Types.GetKeyGroupConfigResult, AWSError>; 360 /** 361 * Gets information about whether additional CloudWatch metrics are enabled for the specified CloudFront distribution. 362 */ 363 getMonitoringSubscription(params: CloudFront.Types.GetMonitoringSubscriptionRequest, callback?: (err: AWSError, data: CloudFront.Types.GetMonitoringSubscriptionResult) => void): Request<CloudFront.Types.GetMonitoringSubscriptionResult, AWSError>; 364 /** 365 * Gets information about whether additional CloudWatch metrics are enabled for the specified CloudFront distribution. 366 */ 367 getMonitoringSubscription(callback?: (err: AWSError, data: CloudFront.Types.GetMonitoringSubscriptionResult) => void): Request<CloudFront.Types.GetMonitoringSubscriptionResult, AWSError>; 368 /** 369 * 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. 370 */ 371 getOriginRequestPolicy(params: CloudFront.Types.GetOriginRequestPolicyRequest, callback?: (err: AWSError, data: CloudFront.Types.GetOriginRequestPolicyResult) => void): Request<CloudFront.Types.GetOriginRequestPolicyResult, AWSError>; 372 /** 373 * 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. 374 */ 375 getOriginRequestPolicy(callback?: (err: AWSError, data: CloudFront.Types.GetOriginRequestPolicyResult) => void): Request<CloudFront.Types.GetOriginRequestPolicyResult, AWSError>; 376 /** 377 * 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. 378 */ 379 getOriginRequestPolicyConfig(params: CloudFront.Types.GetOriginRequestPolicyConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetOriginRequestPolicyConfigResult) => void): Request<CloudFront.Types.GetOriginRequestPolicyConfigResult, AWSError>; 380 /** 381 * 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. 382 */ 383 getOriginRequestPolicyConfig(callback?: (err: AWSError, data: CloudFront.Types.GetOriginRequestPolicyConfigResult) => void): Request<CloudFront.Types.GetOriginRequestPolicyConfigResult, AWSError>; 384 /** 385 * Gets a public key. 386 */ 387 getPublicKey(params: CloudFront.Types.GetPublicKeyRequest, callback?: (err: AWSError, data: CloudFront.Types.GetPublicKeyResult) => void): Request<CloudFront.Types.GetPublicKeyResult, AWSError>; 388 /** 389 * Gets a public key. 390 */ 391 getPublicKey(callback?: (err: AWSError, data: CloudFront.Types.GetPublicKeyResult) => void): Request<CloudFront.Types.GetPublicKeyResult, AWSError>; 392 /** 393 * Gets a public key configuration. 394 */ 395 getPublicKeyConfig(params: CloudFront.Types.GetPublicKeyConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetPublicKeyConfigResult) => void): Request<CloudFront.Types.GetPublicKeyConfigResult, AWSError>; 396 /** 397 * Gets a public key configuration. 398 */ 399 getPublicKeyConfig(callback?: (err: AWSError, data: CloudFront.Types.GetPublicKeyConfigResult) => void): Request<CloudFront.Types.GetPublicKeyConfigResult, AWSError>; 400 /** 401 * 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. 402 */ 403 getRealtimeLogConfig(params: CloudFront.Types.GetRealtimeLogConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetRealtimeLogConfigResult) => void): Request<CloudFront.Types.GetRealtimeLogConfigResult, AWSError>; 404 /** 405 * 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. 406 */ 407 getRealtimeLogConfig(callback?: (err: AWSError, data: CloudFront.Types.GetRealtimeLogConfigResult) => void): Request<CloudFront.Types.GetRealtimeLogConfigResult, AWSError>; 408 /** 409 * Gets information about a specified RTMP distribution, including the distribution configuration. 410 */ 411 getStreamingDistribution(params: CloudFront.Types.GetStreamingDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionResult) => void): Request<CloudFront.Types.GetStreamingDistributionResult, AWSError>; 412 /** 413 * Gets information about a specified RTMP distribution, including the distribution configuration. 414 */ 415 getStreamingDistribution(callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionResult) => void): Request<CloudFront.Types.GetStreamingDistributionResult, AWSError>; 416 /** 417 * Get the configuration information about a streaming distribution. 418 */ 419 getStreamingDistributionConfig(params: CloudFront.Types.GetStreamingDistributionConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionConfigResult) => void): Request<CloudFront.Types.GetStreamingDistributionConfigResult, AWSError>; 420 /** 421 * Get the configuration information about a streaming distribution. 422 */ 423 getStreamingDistributionConfig(callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionConfigResult) => void): Request<CloudFront.Types.GetStreamingDistributionConfigResult, AWSError>; 424 /** 425 * 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 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. 426 */ 427 listCachePolicies(params: CloudFront.Types.ListCachePoliciesRequest, callback?: (err: AWSError, data: CloudFront.Types.ListCachePoliciesResult) => void): Request<CloudFront.Types.ListCachePoliciesResult, AWSError>; 428 /** 429 * 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 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. 430 */ 431 listCachePolicies(callback?: (err: AWSError, data: CloudFront.Types.ListCachePoliciesResult) => void): Request<CloudFront.Types.ListCachePoliciesResult, AWSError>; 432 /** 433 * Lists origin access identities. 434 */ 435 listCloudFrontOriginAccessIdentities(params: CloudFront.Types.ListCloudFrontOriginAccessIdentitiesRequest, callback?: (err: AWSError, data: CloudFront.Types.ListCloudFrontOriginAccessIdentitiesResult) => void): Request<CloudFront.Types.ListCloudFrontOriginAccessIdentitiesResult, AWSError>; 436 /** 437 * Lists origin access identities. 438 */ 439 listCloudFrontOriginAccessIdentities(callback?: (err: AWSError, data: CloudFront.Types.ListCloudFrontOriginAccessIdentitiesResult) => void): Request<CloudFront.Types.ListCloudFrontOriginAccessIdentitiesResult, AWSError>; 440 /** 441 * 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. 442 */ 443 listConflictingAliases(params: CloudFront.Types.ListConflictingAliasesRequest, callback?: (err: AWSError, data: CloudFront.Types.ListConflictingAliasesResult) => void): Request<CloudFront.Types.ListConflictingAliasesResult, AWSError>; 444 /** 445 * 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. 446 */ 447 listConflictingAliases(callback?: (err: AWSError, data: CloudFront.Types.ListConflictingAliasesResult) => void): Request<CloudFront.Types.ListConflictingAliasesResult, AWSError>; 448 /** 449 * List CloudFront distributions. 450 */ 451 listDistributions(params: CloudFront.Types.ListDistributionsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsResult) => void): Request<CloudFront.Types.ListDistributionsResult, AWSError>; 452 /** 453 * List CloudFront distributions. 454 */ 455 listDistributions(callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsResult) => void): Request<CloudFront.Types.ListDistributionsResult, AWSError>; 456 /** 457 * 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. 458 */ 459 listDistributionsByCachePolicyId(params: CloudFront.Types.ListDistributionsByCachePolicyIdRequest, callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByCachePolicyIdResult) => void): Request<CloudFront.Types.ListDistributionsByCachePolicyIdResult, AWSError>; 460 /** 461 * 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. 462 */ 463 listDistributionsByCachePolicyId(callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByCachePolicyIdResult) => void): Request<CloudFront.Types.ListDistributionsByCachePolicyIdResult, AWSError>; 464 /** 465 * 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. 466 */ 467 listDistributionsByKeyGroup(params: CloudFront.Types.ListDistributionsByKeyGroupRequest, callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByKeyGroupResult) => void): Request<CloudFront.Types.ListDistributionsByKeyGroupResult, AWSError>; 468 /** 469 * 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. 470 */ 471 listDistributionsByKeyGroup(callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByKeyGroupResult) => void): Request<CloudFront.Types.ListDistributionsByKeyGroupResult, AWSError>; 472 /** 473 * 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. 474 */ 475 listDistributionsByOriginRequestPolicyId(params: CloudFront.Types.ListDistributionsByOriginRequestPolicyIdRequest, callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByOriginRequestPolicyIdResult) => void): Request<CloudFront.Types.ListDistributionsByOriginRequestPolicyIdResult, AWSError>; 476 /** 477 * 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. 478 */ 479 listDistributionsByOriginRequestPolicyId(callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByOriginRequestPolicyIdResult) => void): Request<CloudFront.Types.ListDistributionsByOriginRequestPolicyIdResult, AWSError>; 480 /** 481 * 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. 482 */ 483 listDistributionsByRealtimeLogConfig(params: CloudFront.Types.ListDistributionsByRealtimeLogConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByRealtimeLogConfigResult) => void): Request<CloudFront.Types.ListDistributionsByRealtimeLogConfigResult, AWSError>; 484 /** 485 * 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. 486 */ 487 listDistributionsByRealtimeLogConfig(callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByRealtimeLogConfigResult) => void): Request<CloudFront.Types.ListDistributionsByRealtimeLogConfigResult, AWSError>; 488 /** 489 * List the distributions that are associated with a specified WAF web ACL. 490 */ 491 listDistributionsByWebACLId(params: CloudFront.Types.ListDistributionsByWebACLIdRequest, callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByWebACLIdResult) => void): Request<CloudFront.Types.ListDistributionsByWebACLIdResult, AWSError>; 492 /** 493 * List the distributions that are associated with a specified WAF web ACL. 494 */ 495 listDistributionsByWebACLId(callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByWebACLIdResult) => void): Request<CloudFront.Types.ListDistributionsByWebACLIdResult, AWSError>; 496 /** 497 * List all field-level encryption configurations that have been created in CloudFront for this account. 498 */ 499 listFieldLevelEncryptionConfigs(params: CloudFront.Types.ListFieldLevelEncryptionConfigsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListFieldLevelEncryptionConfigsResult) => void): Request<CloudFront.Types.ListFieldLevelEncryptionConfigsResult, AWSError>; 500 /** 501 * List all field-level encryption configurations that have been created in CloudFront for this account. 502 */ 503 listFieldLevelEncryptionConfigs(callback?: (err: AWSError, data: CloudFront.Types.ListFieldLevelEncryptionConfigsResult) => void): Request<CloudFront.Types.ListFieldLevelEncryptionConfigsResult, AWSError>; 504 /** 505 * Request a list of field-level encryption profiles that have been created in CloudFront for this account. 506 */ 507 listFieldLevelEncryptionProfiles(params: CloudFront.Types.ListFieldLevelEncryptionProfilesRequest, callback?: (err: AWSError, data: CloudFront.Types.ListFieldLevelEncryptionProfilesResult) => void): Request<CloudFront.Types.ListFieldLevelEncryptionProfilesResult, AWSError>; 508 /** 509 * Request a list of field-level encryption profiles that have been created in CloudFront for this account. 510 */ 511 listFieldLevelEncryptionProfiles(callback?: (err: AWSError, data: CloudFront.Types.ListFieldLevelEncryptionProfilesResult) => void): Request<CloudFront.Types.ListFieldLevelEncryptionProfilesResult, AWSError>; 512 /** 513 * Gets a list of all CloudFront functions in your 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. 514 */ 515 listFunctions(params: CloudFront.Types.ListFunctionsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListFunctionsResult) => void): Request<CloudFront.Types.ListFunctionsResult, AWSError>; 516 /** 517 * Gets a list of all CloudFront functions in your 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. 518 */ 519 listFunctions(callback?: (err: AWSError, data: CloudFront.Types.ListFunctionsResult) => void): Request<CloudFront.Types.ListFunctionsResult, AWSError>; 520 /** 521 * Lists invalidation batches. 522 */ 523 listInvalidations(params: CloudFront.Types.ListInvalidationsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListInvalidationsResult) => void): Request<CloudFront.Types.ListInvalidationsResult, AWSError>; 524 /** 525 * Lists invalidation batches. 526 */ 527 listInvalidations(callback?: (err: AWSError, data: CloudFront.Types.ListInvalidationsResult) => void): Request<CloudFront.Types.ListInvalidationsResult, AWSError>; 528 /** 529 * 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. 530 */ 531 listKeyGroups(params: CloudFront.Types.ListKeyGroupsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListKeyGroupsResult) => void): Request<CloudFront.Types.ListKeyGroupsResult, AWSError>; 532 /** 533 * 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. 534 */ 535 listKeyGroups(callback?: (err: AWSError, data: CloudFront.Types.ListKeyGroupsResult) => void): Request<CloudFront.Types.ListKeyGroupsResult, AWSError>; 536 /** 537 * 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 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. 538 */ 539 listOriginRequestPolicies(params: CloudFront.Types.ListOriginRequestPoliciesRequest, callback?: (err: AWSError, data: CloudFront.Types.ListOriginRequestPoliciesResult) => void): Request<CloudFront.Types.ListOriginRequestPoliciesResult, AWSError>; 540 /** 541 * 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 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. 542 */ 543 listOriginRequestPolicies(callback?: (err: AWSError, data: CloudFront.Types.ListOriginRequestPoliciesResult) => void): Request<CloudFront.Types.ListOriginRequestPoliciesResult, AWSError>; 544 /** 545 * List all public keys that have been added to CloudFront for this account. 546 */ 547 listPublicKeys(params: CloudFront.Types.ListPublicKeysRequest, callback?: (err: AWSError, data: CloudFront.Types.ListPublicKeysResult) => void): Request<CloudFront.Types.ListPublicKeysResult, AWSError>; 548 /** 549 * List all public keys that have been added to CloudFront for this account. 550 */ 551 listPublicKeys(callback?: (err: AWSError, data: CloudFront.Types.ListPublicKeysResult) => void): Request<CloudFront.Types.ListPublicKeysResult, AWSError>; 552 /** 553 * 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. 554 */ 555 listRealtimeLogConfigs(params: CloudFront.Types.ListRealtimeLogConfigsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListRealtimeLogConfigsResult) => void): Request<CloudFront.Types.ListRealtimeLogConfigsResult, AWSError>; 556 /** 557 * 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. 558 */ 559 listRealtimeLogConfigs(callback?: (err: AWSError, data: CloudFront.Types.ListRealtimeLogConfigsResult) => void): Request<CloudFront.Types.ListRealtimeLogConfigsResult, AWSError>; 560 /** 561 * List streaming distributions. 562 */ 563 listStreamingDistributions(params: CloudFront.Types.ListStreamingDistributionsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListStreamingDistributionsResult) => void): Request<CloudFront.Types.ListStreamingDistributionsResult, AWSError>; 564 /** 565 * List streaming distributions. 566 */ 567 listStreamingDistributions(callback?: (err: AWSError, data: CloudFront.Types.ListStreamingDistributionsResult) => void): Request<CloudFront.Types.ListStreamingDistributionsResult, AWSError>; 568 /** 569 * List tags for a CloudFront resource. 570 */ 571 listTagsForResource(params: CloudFront.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: CloudFront.Types.ListTagsForResourceResult) => void): Request<CloudFront.Types.ListTagsForResourceResult, AWSError>; 572 /** 573 * List tags for a CloudFront resource. 574 */ 575 listTagsForResource(callback?: (err: AWSError, data: CloudFront.Types.ListTagsForResourceResult) => void): Request<CloudFront.Types.ListTagsForResourceResult, AWSError>; 576 /** 577 * 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. 578 */ 579 publishFunction(params: CloudFront.Types.PublishFunctionRequest, callback?: (err: AWSError, data: CloudFront.Types.PublishFunctionResult) => void): Request<CloudFront.Types.PublishFunctionResult, AWSError>; 580 /** 581 * 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. 582 */ 583 publishFunction(callback?: (err: AWSError, data: CloudFront.Types.PublishFunctionResult) => void): Request<CloudFront.Types.PublishFunctionResult, AWSError>; 584 /** 585 * Add tags to a CloudFront resource. 586 */ 587 tagResource(params: CloudFront.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 588 /** 589 * Add tags to a CloudFront resource. 590 */ 591 tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 592 /** 593 * 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. 594 */ 595 testFunction(params: CloudFront.Types.TestFunctionRequest, callback?: (err: AWSError, data: CloudFront.Types.TestFunctionResult) => void): Request<CloudFront.Types.TestFunctionResult, AWSError>; 596 /** 597 * 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. 598 */ 599 testFunction(callback?: (err: AWSError, data: CloudFront.Types.TestFunctionResult) => void): Request<CloudFront.Types.TestFunctionResult, AWSError>; 600 /** 601 * Remove tags from a CloudFront resource. 602 */ 603 untagResource(params: CloudFront.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 604 /** 605 * Remove tags from a CloudFront resource. 606 */ 607 untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 608 /** 609 * 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: Use GetCachePolicyConfig to get the current configuration. Locally modify the fields in the cache policy configuration that you want to update. Call UpdateCachePolicy by providing the entire cache policy configuration, including the fields that you modified and those that you didn’t. 610 */ 611 updateCachePolicy(params: CloudFront.Types.UpdateCachePolicyRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateCachePolicyResult) => void): Request<CloudFront.Types.UpdateCachePolicyResult, AWSError>; 612 /** 613 * 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: Use GetCachePolicyConfig to get the current configuration. Locally modify the fields in the cache policy configuration that you want to update. Call UpdateCachePolicy by providing the entire cache policy configuration, including the fields that you modified and those that you didn’t. 614 */ 615 updateCachePolicy(callback?: (err: AWSError, data: CloudFront.Types.UpdateCachePolicyResult) => void): Request<CloudFront.Types.UpdateCachePolicyResult, AWSError>; 616 /** 617 * Update an origin access identity. 618 */ 619 updateCloudFrontOriginAccessIdentity(params: CloudFront.Types.UpdateCloudFrontOriginAccessIdentityRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.UpdateCloudFrontOriginAccessIdentityResult, AWSError>; 620 /** 621 * Update an origin access identity. 622 */ 623 updateCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: CloudFront.Types.UpdateCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.UpdateCloudFrontOriginAccessIdentityResult, AWSError>; 624 /** 625 * Updates the configuration for a web distribution. When you update a distribution, there are more required fields than when you create a distribution. When you update your distribution by using this API action, follow the steps here to get the current configuration and then make your updates, to make sure that you include all of the required fields. To view a summary, see Required Fields for Create Distribution and Update Distribution in the Amazon CloudFront Developer Guide. The update process includes getting the current distribution configuration, updating the XML document that is returned to make your changes, and then submitting an UpdateDistribution request to make the updates. For information about updating a distribution using the CloudFront console instead, see Creating a Distribution in the Amazon CloudFront Developer Guide. To update a web distribution using the CloudFront API Submit a GetDistributionConfig request to get the current configuration and an Etag header for the distribution. If you update the distribution again, you must get a new Etag header. Update the XML document that was returned in the response to your GetDistributionConfig request to include your changes. When you edit the XML file, be aware of the following: You must strip out the ETag parameter that is returned. Additional fields are required when you update a distribution. There may be fields included in the XML file for features that you haven't configured for your distribution. This is expected and required to successfully update the distribution. You can't change the value of CallerReference. If you try to change this value, CloudFront returns an IllegalUpdate error. The new configuration replaces the existing configuration; the values that you specify in an UpdateDistribution request are not merged into your existing configuration. When you add, delete, or replace values in an element that allows multiple values (for example, CNAME), you must specify all of the values that you want to appear in the updated distribution. In addition, you must update the corresponding Quantity element. Submit an UpdateDistribution request to update the configuration for your distribution: In the request body, include the XML document that you updated in Step 2. The request body must include an XML document with a DistributionConfig element. Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GetDistributionConfig request in Step 1. Review the response to the UpdateDistribution request to confirm that the configuration was successfully updated. Optional: Submit a GetDistribution request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed. 626 */ 627 updateDistribution(params: CloudFront.Types.UpdateDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionResult) => void): Request<CloudFront.Types.UpdateDistributionResult, AWSError>; 628 /** 629 * Updates the configuration for a web distribution. When you update a distribution, there are more required fields than when you create a distribution. When you update your distribution by using this API action, follow the steps here to get the current configuration and then make your updates, to make sure that you include all of the required fields. To view a summary, see Required Fields for Create Distribution and Update Distribution in the Amazon CloudFront Developer Guide. The update process includes getting the current distribution configuration, updating the XML document that is returned to make your changes, and then submitting an UpdateDistribution request to make the updates. For information about updating a distribution using the CloudFront console instead, see Creating a Distribution in the Amazon CloudFront Developer Guide. To update a web distribution using the CloudFront API Submit a GetDistributionConfig request to get the current configuration and an Etag header for the distribution. If you update the distribution again, you must get a new Etag header. Update the XML document that was returned in the response to your GetDistributionConfig request to include your changes. When you edit the XML file, be aware of the following: You must strip out the ETag parameter that is returned. Additional fields are required when you update a distribution. There may be fields included in the XML file for features that you haven't configured for your distribution. This is expected and required to successfully update the distribution. You can't change the value of CallerReference. If you try to change this value, CloudFront returns an IllegalUpdate error. The new configuration replaces the existing configuration; the values that you specify in an UpdateDistribution request are not merged into your existing configuration. When you add, delete, or replace values in an element that allows multiple values (for example, CNAME), you must specify all of the values that you want to appear in the updated distribution. In addition, you must update the corresponding Quantity element. Submit an UpdateDistribution request to update the configuration for your distribution: In the request body, include the XML document that you updated in Step 2. The request body must include an XML document with a DistributionConfig element. Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GetDistributionConfig request in Step 1. Review the response to the UpdateDistribution request to confirm that the configuration was successfully updated. Optional: Submit a GetDistribution request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed. 630 */ 631 updateDistribution(callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionResult) => void): Request<CloudFront.Types.UpdateDistributionResult, AWSError>; 632 /** 633 * Update a field-level encryption configuration. 634 */ 635 updateFieldLevelEncryptionConfig(params: CloudFront.Types.UpdateFieldLevelEncryptionConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.UpdateFieldLevelEncryptionConfigResult, AWSError>; 636 /** 637 * Update a field-level encryption configuration. 638 */ 639 updateFieldLevelEncryptionConfig(callback?: (err: AWSError, data: CloudFront.Types.UpdateFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.UpdateFieldLevelEncryptionConfigResult, AWSError>; 640 /** 641 * Update a field-level encryption profile. 642 */ 643 updateFieldLevelEncryptionProfile(params: CloudFront.Types.UpdateFieldLevelEncryptionProfileRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.UpdateFieldLevelEncryptionProfileResult, AWSError>; 644 /** 645 * Update a field-level encryption profile. 646 */ 647 updateFieldLevelEncryptionProfile(callback?: (err: AWSError, data: CloudFront.Types.UpdateFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.UpdateFieldLevelEncryptionProfileResult, AWSError>; 648 /** 649 * 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. 650 */ 651 updateFunction(params: CloudFront.Types.UpdateFunctionRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateFunctionResult) => void): Request<CloudFront.Types.UpdateFunctionResult, AWSError>; 652 /** 653 * 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. 654 */ 655 updateFunction(callback?: (err: AWSError, data: CloudFront.Types.UpdateFunctionResult) => void): Request<CloudFront.Types.UpdateFunctionResult, AWSError>; 656 /** 657 * 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: Get the current key group with GetKeyGroup or GetKeyGroupConfig. Locally modify the fields in the key group that you want to update. For example, add or remove public key IDs. Call UpdateKeyGroup with the entire key group object, including the fields that you modified and those that you didn’t. 658 */ 659 updateKeyGroup(params: CloudFront.Types.UpdateKeyGroupRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateKeyGroupResult) => void): Request<CloudFront.Types.UpdateKeyGroupResult, AWSError>; 660 /** 661 * 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: Get the current key group with GetKeyGroup or GetKeyGroupConfig. Locally modify the fields in the key group that you want to update. For example, add or remove public key IDs. Call UpdateKeyGroup with the entire key group object, including the fields that you modified and those that you didn’t. 662 */ 663 updateKeyGroup(callback?: (err: AWSError, data: CloudFront.Types.UpdateKeyGroupResult) => void): Request<CloudFront.Types.UpdateKeyGroupResult, AWSError>; 664 /** 665 * 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: Use GetOriginRequestPolicyConfig to get the current configuration. Locally modify the fields in the origin request policy configuration that you want to update. Call UpdateOriginRequestPolicy by providing the entire origin request policy configuration, including the fields that you modified and those that you didn’t. 666 */ 667 updateOriginRequestPolicy(params: CloudFront.Types.UpdateOriginRequestPolicyRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateOriginRequestPolicyResult) => void): Request<CloudFront.Types.UpdateOriginRequestPolicyResult, AWSError>; 668 /** 669 * 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: Use GetOriginRequestPolicyConfig to get the current configuration. Locally modify the fields in the origin request policy configuration that you want to update. Call UpdateOriginRequestPolicy by providing the entire origin request policy configuration, including the fields that you modified and those that you didn’t. 670 */ 671 updateOriginRequestPolicy(callback?: (err: AWSError, data: CloudFront.Types.UpdateOriginRequestPolicyResult) => void): Request<CloudFront.Types.UpdateOriginRequestPolicyResult, AWSError>; 672 /** 673 * Update public key information. Note that the only value you can change is the comment. 674 */ 675 updatePublicKey(params: CloudFront.Types.UpdatePublicKeyRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdatePublicKeyResult) => void): Request<CloudFront.Types.UpdatePublicKeyResult, AWSError>; 676 /** 677 * Update public key information. Note that the only value you can change is the comment. 678 */ 679 updatePublicKey(callback?: (err: AWSError, data: CloudFront.Types.UpdatePublicKeyResult) => void): Request<CloudFront.Types.UpdatePublicKeyResult, AWSError>; 680 /** 681 * 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: Call GetRealtimeLogConfig to get the current real-time log configuration. Locally modify the parameters in the real-time log configuration that you want to update. 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. 682 */ 683 updateRealtimeLogConfig(params: CloudFront.Types.UpdateRealtimeLogConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateRealtimeLogConfigResult) => void): Request<CloudFront.Types.UpdateRealtimeLogConfigResult, AWSError>; 684 /** 685 * 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: Call GetRealtimeLogConfig to get the current real-time log configuration. Locally modify the parameters in the real-time log configuration that you want to update. 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. 686 */ 687 updateRealtimeLogConfig(callback?: (err: AWSError, data: CloudFront.Types.UpdateRealtimeLogConfigResult) => void): Request<CloudFront.Types.UpdateRealtimeLogConfigResult, AWSError>; 688 /** 689 * Update a streaming distribution. 690 */ 691 updateStreamingDistribution(params: CloudFront.Types.UpdateStreamingDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateStreamingDistributionResult) => void): Request<CloudFront.Types.UpdateStreamingDistributionResult, AWSError>; 692 /** 693 * Update a streaming distribution. 694 */ 695 updateStreamingDistribution(callback?: (err: AWSError, data: CloudFront.Types.UpdateStreamingDistributionResult) => void): Request<CloudFront.Types.UpdateStreamingDistributionResult, AWSError>; 696 /** 697 * Waits for the distributionDeployed state by periodically calling the underlying CloudFront.getDistributionoperation every 60 seconds (at most 35 times). Wait until a distribution is deployed. 698 */ 699 waitFor(state: "distributionDeployed", params: CloudFront.Types.GetDistributionRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: CloudFront.Types.GetDistributionResult) => void): Request<CloudFront.Types.GetDistributionResult, AWSError>; 700 /** 701 * Waits for the distributionDeployed state by periodically calling the underlying CloudFront.getDistributionoperation every 60 seconds (at most 35 times). Wait until a distribution is deployed. 702 */ 703 waitFor(state: "distributionDeployed", callback?: (err: AWSError, data: CloudFront.Types.GetDistributionResult) => void): Request<CloudFront.Types.GetDistributionResult, AWSError>; 704 /** 705 * Waits for the invalidationCompleted state by periodically calling the underlying CloudFront.getInvalidationoperation every 20 seconds (at most 30 times). Wait until an invalidation has completed. 706 */ 707 waitFor(state: "invalidationCompleted", params: CloudFront.Types.GetInvalidationRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: CloudFront.Types.GetInvalidationResult) => void): Request<CloudFront.Types.GetInvalidationResult, AWSError>; 708 /** 709 * Waits for the invalidationCompleted state by periodically calling the underlying CloudFront.getInvalidationoperation every 20 seconds (at most 30 times). Wait until an invalidation has completed. 710 */ 711 waitFor(state: "invalidationCompleted", callback?: (err: AWSError, data: CloudFront.Types.GetInvalidationResult) => void): Request<CloudFront.Types.GetInvalidationResult, AWSError>; 712 /** 713 * Waits for the streamingDistributionDeployed state by periodically calling the underlying CloudFront.getStreamingDistributionoperation every 60 seconds (at most 25 times). Wait until a streaming distribution is deployed. 714 */ 715 waitFor(state: "streamingDistributionDeployed", params: CloudFront.Types.GetStreamingDistributionRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionResult) => void): Request<CloudFront.Types.GetStreamingDistributionResult, AWSError>; 716 /** 717 * Waits for the streamingDistributionDeployed state by periodically calling the underlying CloudFront.getStreamingDistributionoperation every 60 seconds (at most 25 times). Wait until a streaming distribution is deployed. 718 */ 719 waitFor(state: "streamingDistributionDeployed", callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionResult) => void): Request<CloudFront.Types.GetStreamingDistributionResult, AWSError>; 720 } 721 declare namespace CloudFront { 722 export import Signer = signer; 723 } 724 declare namespace CloudFront { 725 export interface ActiveTrustedKeyGroups { 726 /** 727 * 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. 728 */ 729 Enabled: boolean; 730 /** 731 * The number of key groups in the list. 732 */ 733 Quantity: integer; 734 /** 735 * 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. 736 */ 737 Items?: KGKeyPairIdsList; 738 } 739 export interface ActiveTrustedSigners { 740 /** 741 * This field is true if any of the accounts in the list have active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false. 742 */ 743 Enabled: boolean; 744 /** 745 * The number of accounts in the list. 746 */ 747 Quantity: integer; 748 /** 749 * A list of 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. 750 */ 751 Items?: SignerList; 752 } 753 export interface AliasICPRecordal { 754 /** 755 * A domain name associated with a distribution. 756 */ 757 CNAME?: string; 758 /** 759 * 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. 760 */ 761 ICPRecordalStatus?: ICPRecordalStatus; 762 } 763 export type AliasICPRecordals = AliasICPRecordal[]; 764 export type AliasList = string[]; 765 export interface Aliases { 766 /** 767 * The number of CNAME aliases, if any, that you want to associate with this distribution. 768 */ 769 Quantity: integer; 770 /** 771 * A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution. 772 */ 773 Items?: AliasList; 774 } 775 export interface AllowedMethods { 776 /** 777 * 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). 778 */ 779 Quantity: integer; 780 /** 781 * A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin. 782 */ 783 Items: MethodsList; 784 CachedMethods?: CachedMethods; 785 } 786 export interface AssociateAliasRequest { 787 /** 788 * The ID of the distribution that you’re associating the alias with. 789 */ 790 TargetDistributionId: string; 791 /** 792 * The alias (also known as a CNAME) to add to the target distribution. 793 */ 794 Alias: string; 795 } 796 export type AwsAccountNumberList = string[]; 797 export interface CacheBehavior { 798 /** 799 * 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. 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. 800 */ 801 PathPattern: string; 802 /** 803 * The value of ID for the origin that you want CloudFront to route requests to when they match this cache behavior. 804 */ 805 TargetOriginId: string; 806 /** 807 * We recommend using TrustedKeyGroups instead of TrustedSigners. A list of 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 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. 808 */ 809 TrustedSigners?: TrustedSigners; 810 /** 811 * 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. 812 */ 813 TrustedKeyGroups?: TrustedKeyGroups; 814 /** 815 * 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. 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. 816 */ 817 ViewerProtocolPolicy: ViewerProtocolPolicy; 818 AllowedMethods?: AllowedMethods; 819 /** 820 * 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. 821 */ 822 SmoothStreaming?: boolean; 823 /** 824 * 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. 825 */ 826 Compress?: boolean; 827 /** 828 * A complex type that contains zero or more Lambda@Edge function associations for a cache behavior. 829 */ 830 LambdaFunctionAssociations?: LambdaFunctionAssociations; 831 /** 832 * 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. 833 */ 834 FunctionAssociations?: FunctionAssociations; 835 /** 836 * 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. 837 */ 838 FieldLevelEncryptionId?: string; 839 /** 840 * 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. 841 */ 842 RealtimeLogConfigArn?: string; 843 /** 844 * 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. 845 */ 846 CachePolicyId?: string; 847 /** 848 * 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. 849 */ 850 OriginRequestPolicyId?: string; 851 /** 852 * 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. 853 */ 854 ForwardedValues?: ForwardedValues; 855 /** 856 * 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). 857 */ 858 MinTTL?: long; 859 /** 860 * 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. 861 */ 862 DefaultTTL?: long; 863 /** 864 * 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. 865 */ 866 MaxTTL?: long; 867 } 868 export type CacheBehaviorList = CacheBehavior[]; 869 export interface CacheBehaviors { 870 /** 871 * The number of cache behaviors for this distribution. 872 */ 873 Quantity: integer; 874 /** 875 * Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items. 876 */ 877 Items?: CacheBehaviorList; 878 } 879 export interface CachePolicy { 880 /** 881 * The unique identifier for the cache policy. 882 */ 883 Id: string; 884 /** 885 * The date and time when the cache policy was last modified. 886 */ 887 LastModifiedTime: timestamp; 888 /** 889 * The cache policy configuration. 890 */ 891 CachePolicyConfig: CachePolicyConfig; 892 } 893 export interface CachePolicyConfig { 894 /** 895 * A comment to describe the cache policy. The comment cannot be longer than 128 characters. 896 */ 897 Comment?: string; 898 /** 899 * A unique name to identify the cache policy. 900 */ 901 Name: string; 902 /** 903 * 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. 904 */ 905 DefaultTTL?: long; 906 /** 907 * 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. 908 */ 909 MaxTTL?: long; 910 /** 911 * 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. 912 */ 913 MinTTL: long; 914 /** 915 * The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are automatically included in requests that CloudFront sends to the origin. 916 */ 917 ParametersInCacheKeyAndForwardedToOrigin?: ParametersInCacheKeyAndForwardedToOrigin; 918 } 919 export type CachePolicyCookieBehavior = "none"|"whitelist"|"allExcept"|"all"|string; 920 export interface CachePolicyCookiesConfig { 921 /** 922 * Determines whether any cookies in viewer requests are included in the cache key and automatically included in requests that CloudFront sends to the origin. Valid values are: none – Cookies in viewer requests are not included in the cache key and are not automatically included 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 – The cookies in viewer requests that are listed in the CookieNames type are included in the cache key and automatically included in requests that CloudFront sends to the origin. allExcept – All cookies in viewer requests that are not listed in the CookieNames type are included in the cache key and automatically included in requests that CloudFront sends to the origin. all – All cookies in viewer requests are included in the cache key and are automatically included in requests that CloudFront sends to the origin. 923 */ 924 CookieBehavior: CachePolicyCookieBehavior; 925 Cookies?: CookieNames; 926 } 927 export type CachePolicyHeaderBehavior = "none"|"whitelist"|string; 928 export interface CachePolicyHeadersConfig { 929 /** 930 * Determines whether any HTTP headers are included in the cache key and automatically included in requests that CloudFront sends to the origin. Valid values are: none – HTTP headers are not included in the cache key and are not automatically included 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 – The HTTP headers that are listed in the Headers type are included in the cache key and are automatically included in requests that CloudFront sends to the origin. 931 */ 932 HeaderBehavior: CachePolicyHeaderBehavior; 933 Headers?: Headers; 934 } 935 export interface CachePolicyList { 936 /** 937 * 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. 938 */ 939 NextMarker?: string; 940 /** 941 * The maximum number of cache policies requested. 942 */ 943 MaxItems: integer; 944 /** 945 * The total number of cache policies returned in the response. 946 */ 947 Quantity: integer; 948 /** 949 * Contains the cache policies in the list. 950 */ 951 Items?: CachePolicySummaryList; 952 } 953 export type CachePolicyQueryStringBehavior = "none"|"whitelist"|"allExcept"|"all"|string; 954 export interface CachePolicyQueryStringsConfig { 955 /** 956 * Determines whether any URL query strings in viewer requests are included in the cache key and automatically included in requests that CloudFront sends to the origin. Valid values are: none – Query strings in viewer requests are not included in the cache key and are not automatically included 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 – The query strings in viewer requests that are listed in the QueryStringNames type are included in the cache key and automatically included in requests that CloudFront sends to the origin. allExcept – All query strings in viewer requests that are not listed in the QueryStringNames type are included in the cache key and automatically included in requests that CloudFront sends to the origin. all – All query strings in viewer requests are included in the cache key and are automatically included in requests that CloudFront sends to the origin. 957 */ 958 QueryStringBehavior: CachePolicyQueryStringBehavior; 959 /** 960 * Contains the specific query strings in viewer requests that either are or are not included in the cache key and automatically included 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). 961 */ 962 QueryStrings?: QueryStringNames; 963 } 964 export interface CachePolicySummary { 965 /** 966 * The type of cache policy, either managed (created by Amazon Web Services) or custom (created in this account). 967 */ 968 Type: CachePolicyType; 969 /** 970 * The cache policy. 971 */ 972 CachePolicy: CachePolicy; 973 } 974 export type CachePolicySummaryList = CachePolicySummary[]; 975 export type CachePolicyType = "managed"|"custom"|string; 976 export interface CachedMethods { 977 /** 978 * 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). 979 */ 980 Quantity: integer; 981 /** 982 * A complex type that contains the HTTP methods that you want CloudFront to cache responses to. 983 */ 984 Items: MethodsList; 985 } 986 export type CertificateSource = "cloudfront"|"iam"|"acm"|string; 987 export interface CloudFrontOriginAccessIdentity { 988 /** 989 * The ID for the origin access identity, for example, E74FTE3AJFJ256A. 990 */ 991 Id: string; 992 /** 993 * 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. 994 */ 995 S3CanonicalUserId: string; 996 /** 997 * The current configuration information for the identity. 998 */ 999 CloudFrontOriginAccessIdentityConfig?: CloudFrontOriginAccessIdentityConfig; 1000 } 1001 export interface CloudFrontOriginAccessIdentityConfig { 1002 /** 1003 * 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. 1004 */ 1005 CallerReference: string; 1006 /** 1007 * A comment to describe the origin access identity. The comment cannot be longer than 128 characters. 1008 */ 1009 Comment: string; 1010 } 1011 export interface CloudFrontOriginAccessIdentityList { 1012 /** 1013 * 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). 1014 */ 1015 Marker: string; 1016 /** 1017 * 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. 1018 */ 1019 NextMarker?: string; 1020 /** 1021 * The maximum number of origin access identities you want in the response body. 1022 */ 1023 MaxItems: integer; 1024 /** 1025 * 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. 1026 */ 1027 IsTruncated: boolean; 1028 /** 1029 * The number of CloudFront origin access identities that were created by the current account. 1030 */ 1031 Quantity: integer; 1032 /** 1033 * A complex type that contains one CloudFrontOriginAccessIdentitySummary element for each origin access identity that was created by the current account. 1034 */ 1035 Items?: CloudFrontOriginAccessIdentitySummaryList; 1036 } 1037 export interface CloudFrontOriginAccessIdentitySummary { 1038 /** 1039 * The ID for the origin access identity. For example: E74FTE3AJFJ256A. 1040 */ 1041 Id: string; 1042 /** 1043 * 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. 1044 */ 1045 S3CanonicalUserId: string; 1046 /** 1047 * The comment for this origin access identity, as originally specified when created. 1048 */ 1049 Comment: string; 1050 } 1051 export type CloudFrontOriginAccessIdentitySummaryList = CloudFrontOriginAccessIdentitySummary[]; 1052 export type CommentType = string; 1053 export interface ConflictingAlias { 1054 /** 1055 * An alias (also called a CNAME). 1056 */ 1057 Alias?: string; 1058 /** 1059 * The (partially hidden) ID of the CloudFront distribution associated with the alias. 1060 */ 1061 DistributionId?: string; 1062 /** 1063 * The (partially hidden) ID of the Amazon Web Services account that owns the distribution that’s associated with the alias. 1064 */ 1065 AccountId?: string; 1066 } 1067 export type ConflictingAliases = ConflictingAlias[]; 1068 export interface ConflictingAliasesList { 1069 /** 1070 * 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. 1071 */ 1072 NextMarker?: string; 1073 /** 1074 * The maximum number of conflicting aliases requested. 1075 */ 1076 MaxItems?: integer; 1077 /** 1078 * The number of conflicting aliases returned in the response. 1079 */ 1080 Quantity?: integer; 1081 /** 1082 * Contains the conflicting aliases in the list. 1083 */ 1084 Items?: ConflictingAliases; 1085 } 1086 export interface ContentTypeProfile { 1087 /** 1088 * The format for a field-level encryption content type-profile mapping. 1089 */ 1090 Format: Format; 1091 /** 1092 * The profile ID for a field-level encryption content type-profile mapping. 1093 */ 1094 ProfileId?: string; 1095 /** 1096 * The content type for a field-level encryption content type-profile mapping. 1097 */ 1098 ContentType: string; 1099 } 1100 export interface ContentTypeProfileConfig { 1101 /** 1102 * 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. 1103 */ 1104 ForwardWhenContentTypeIsUnknown: boolean; 1105 /** 1106 * The configuration for a field-level encryption content type-profile. 1107 */ 1108 ContentTypeProfiles?: ContentTypeProfiles; 1109 } 1110 export type ContentTypeProfileList = ContentTypeProfile[]; 1111 export interface ContentTypeProfiles { 1112 /** 1113 * The number of field-level encryption content type-profile mappings. 1114 */ 1115 Quantity: integer; 1116 /** 1117 * Items in a field-level encryption content type-profile mapping. 1118 */ 1119 Items?: ContentTypeProfileList; 1120 } 1121 export type CookieNameList = string[]; 1122 export interface CookieNames { 1123 /** 1124 * The number of cookie names in the Items list. 1125 */ 1126 Quantity: integer; 1127 /** 1128 * A list of cookie names. 1129 */ 1130 Items?: CookieNameList; 1131 } 1132 export interface CookiePreference { 1133 /** 1134 * 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. 1135 */ 1136 Forward: ItemSelection; 1137 /** 1138 * 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. 1139 */ 1140 WhitelistedNames?: CookieNames; 1141 } 1142 export interface CreateCachePolicyRequest { 1143 /** 1144 * A cache policy configuration. 1145 */ 1146 CachePolicyConfig: CachePolicyConfig; 1147 } 1148 export interface CreateCachePolicyResult { 1149 /** 1150 * A cache policy. 1151 */ 1152 CachePolicy?: CachePolicy; 1153 /** 1154 * The fully qualified URI of the cache policy just created. 1155 */ 1156 Location?: string; 1157 /** 1158 * The current version of the cache policy. 1159 */ 1160 ETag?: string; 1161 } 1162 export interface CreateCloudFrontOriginAccessIdentityRequest { 1163 /** 1164 * The current configuration information for the identity. 1165 */ 1166 CloudFrontOriginAccessIdentityConfig: CloudFrontOriginAccessIdentityConfig; 1167 } 1168 export interface CreateCloudFrontOriginAccessIdentityResult { 1169 /** 1170 * The origin access identity's information. 1171 */ 1172 CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity; 1173 /** 1174 * The fully qualified URI of the new origin access identity just created. 1175 */ 1176 Location?: string; 1177 /** 1178 * The current version of the origin access identity created. 1179 */ 1180 ETag?: string; 1181 } 1182 export interface CreateDistributionRequest { 1183 /** 1184 * The distribution's configuration information. 1185 */ 1186 DistributionConfig: DistributionConfig; 1187 } 1188 export interface CreateDistributionResult { 1189 /** 1190 * The distribution's information. 1191 */ 1192 Distribution?: Distribution; 1193 /** 1194 * The fully qualified URI of the new distribution resource just created. 1195 */ 1196 Location?: string; 1197 /** 1198 * The current version of the distribution created. 1199 */ 1200 ETag?: string; 1201 } 1202 export interface CreateDistributionWithTagsRequest { 1203 /** 1204 * The distribution's configuration information. 1205 */ 1206 DistributionConfigWithTags: DistributionConfigWithTags; 1207 } 1208 export interface CreateDistributionWithTagsResult { 1209 /** 1210 * The distribution's information. 1211 */ 1212 Distribution?: Distribution; 1213 /** 1214 * The fully qualified URI of the new distribution resource just created. 1215 */ 1216 Location?: string; 1217 /** 1218 * The current version of the distribution created. 1219 */ 1220 ETag?: string; 1221 } 1222 export interface CreateFieldLevelEncryptionConfigRequest { 1223 /** 1224 * The request to create a new field-level encryption configuration. 1225 */ 1226 FieldLevelEncryptionConfig: FieldLevelEncryptionConfig; 1227 } 1228 export interface CreateFieldLevelEncryptionConfigResult { 1229 /** 1230 * Returned when you create a new field-level encryption configuration. 1231 */ 1232 FieldLevelEncryption?: FieldLevelEncryption; 1233 /** 1234 * The fully qualified URI of the new configuration resource just created. 1235 */ 1236 Location?: string; 1237 /** 1238 * The current version of the field level encryption configuration. For example: E2QWRUHAPOMQZL. 1239 */ 1240 ETag?: string; 1241 } 1242 export interface CreateFieldLevelEncryptionProfileRequest { 1243 /** 1244 * The request to create a field-level encryption profile. 1245 */ 1246 FieldLevelEncryptionProfileConfig: FieldLevelEncryptionProfileConfig; 1247 } 1248 export interface CreateFieldLevelEncryptionProfileResult { 1249 /** 1250 * Returned when you create a new field-level encryption profile. 1251 */ 1252 FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile; 1253 /** 1254 * The fully qualified URI of the new profile resource just created. 1255 */ 1256 Location?: string; 1257 /** 1258 * The current version of the field level encryption profile. For example: E2QWRUHAPOMQZL. 1259 */ 1260 ETag?: string; 1261 } 1262 export interface CreateFunctionRequest { 1263 /** 1264 * A name to identify the function. 1265 */ 1266 Name: FunctionName; 1267 /** 1268 * Configuration information about the function, including an optional comment and the function’s runtime. 1269 */ 1270 FunctionConfig: FunctionConfig; 1271 /** 1272 * The function code. For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide. 1273 */ 1274 FunctionCode: FunctionBlob; 1275 } 1276 export interface CreateFunctionResult { 1277 /** 1278 * Contains configuration information and metadata about a CloudFront function. 1279 */ 1280 FunctionSummary?: FunctionSummary; 1281 /** 1282 * The URL of the CloudFront function. Use the URL to manage the function with the CloudFront API. 1283 */ 1284 Location?: string; 1285 /** 1286 * The version identifier for the current version of the CloudFront function. 1287 */ 1288 ETag?: string; 1289 } 1290 export interface CreateInvalidationRequest { 1291 /** 1292 * The distribution's id. 1293 */ 1294 DistributionId: string; 1295 /** 1296 * The batch information for the invalidation. 1297 */ 1298 InvalidationBatch: InvalidationBatch; 1299 } 1300 export interface CreateInvalidationResult { 1301 /** 1302 * The fully qualified URI of the distribution and invalidation batch request, including the Invalidation ID. 1303 */ 1304 Location?: string; 1305 /** 1306 * The invalidation's information. 1307 */ 1308 Invalidation?: Invalidation; 1309 } 1310 export interface CreateKeyGroupRequest { 1311 /** 1312 * A key group configuration. 1313 */ 1314 KeyGroupConfig: KeyGroupConfig; 1315 } 1316 export interface CreateKeyGroupResult { 1317 /** 1318 * The key group that was just created. 1319 */ 1320 KeyGroup?: KeyGroup; 1321 /** 1322 * The URL of the key group. 1323 */ 1324 Location?: string; 1325 /** 1326 * The identifier for this version of the key group. 1327 */ 1328 ETag?: string; 1329 } 1330 export interface CreateMonitoringSubscriptionRequest { 1331 /** 1332 * The ID of the distribution that you are enabling metrics for. 1333 */ 1334 DistributionId: string; 1335 /** 1336 * A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution. 1337 */ 1338 MonitoringSubscription: MonitoringSubscription; 1339 } 1340 export interface CreateMonitoringSubscriptionResult { 1341 /** 1342 * A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution. 1343 */ 1344 MonitoringSubscription?: MonitoringSubscription; 1345 } 1346 export interface CreateOriginRequestPolicyRequest { 1347 /** 1348 * An origin request policy configuration. 1349 */ 1350 OriginRequestPolicyConfig: OriginRequestPolicyConfig; 1351 } 1352 export interface CreateOriginRequestPolicyResult { 1353 /** 1354 * An origin request policy. 1355 */ 1356 OriginRequestPolicy?: OriginRequestPolicy; 1357 /** 1358 * The fully qualified URI of the origin request policy just created. 1359 */ 1360 Location?: string; 1361 /** 1362 * The current version of the origin request policy. 1363 */ 1364 ETag?: string; 1365 } 1366 export interface CreatePublicKeyRequest { 1367 /** 1368 * A CloudFront public key configuration. 1369 */ 1370 PublicKeyConfig: PublicKeyConfig; 1371 } 1372 export interface CreatePublicKeyResult { 1373 /** 1374 * The public key. 1375 */ 1376 PublicKey?: PublicKey; 1377 /** 1378 * The URL of the public key. 1379 */ 1380 Location?: string; 1381 /** 1382 * The identifier for this version of the public key. 1383 */ 1384 ETag?: string; 1385 } 1386 export interface CreateRealtimeLogConfigRequest { 1387 /** 1388 * Contains information about the Amazon Kinesis data stream where you are sending real-time log data. 1389 */ 1390 EndPoints: EndPointList; 1391 /** 1392 * 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. 1393 */ 1394 Fields: FieldList; 1395 /** 1396 * A unique name to identify this real-time log configuration. 1397 */ 1398 Name: string; 1399 /** 1400 * 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. 1401 */ 1402 SamplingRate: long; 1403 } 1404 export interface CreateRealtimeLogConfigResult { 1405 /** 1406 * A real-time log configuration. 1407 */ 1408 RealtimeLogConfig?: RealtimeLogConfig; 1409 } 1410 export interface CreateStreamingDistributionRequest { 1411 /** 1412 * The streaming distribution's configuration information. 1413 */ 1414 StreamingDistributionConfig: StreamingDistributionConfig; 1415 } 1416 export interface CreateStreamingDistributionResult { 1417 /** 1418 * The streaming distribution's information. 1419 */ 1420 StreamingDistribution?: StreamingDistribution; 1421 /** 1422 * The fully qualified URI of the new streaming distribution resource just created. 1423 */ 1424 Location?: string; 1425 /** 1426 * The current version of the streaming distribution created. 1427 */ 1428 ETag?: string; 1429 } 1430 export interface CreateStreamingDistributionWithTagsRequest { 1431 /** 1432 * The streaming distribution's configuration information. 1433 */ 1434 StreamingDistributionConfigWithTags: StreamingDistributionConfigWithTags; 1435 } 1436 export interface CreateStreamingDistributionWithTagsResult { 1437 /** 1438 * The streaming distribution's information. 1439 */ 1440 StreamingDistribution?: StreamingDistribution; 1441 /** 1442 * The fully qualified URI of the new streaming distribution resource just created. 1443 */ 1444 Location?: string; 1445 /** 1446 * The current version of the distribution created. 1447 */ 1448 ETag?: string; 1449 } 1450 export interface CustomErrorResponse { 1451 /** 1452 * The HTTP status code for which you want to specify a custom error page and/or a caching duration. 1453 */ 1454 ErrorCode: integer; 1455 /** 1456 * 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. 1457 */ 1458 ResponsePagePath?: string; 1459 /** 1460 * 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. 1461 */ 1462 ResponseCode?: string; 1463 /** 1464 * 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. 1465 */ 1466 ErrorCachingMinTTL?: long; 1467 } 1468 export type CustomErrorResponseList = CustomErrorResponse[]; 1469 export interface CustomErrorResponses { 1470 /** 1471 * 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. 1472 */ 1473 Quantity: integer; 1474 /** 1475 * 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. 1476 */ 1477 Items?: CustomErrorResponseList; 1478 } 1479 export interface CustomHeaders { 1480 /** 1481 * The number of custom headers, if any, for this distribution. 1482 */ 1483 Quantity: integer; 1484 /** 1485 * 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. 1486 */ 1487 Items?: OriginCustomHeadersList; 1488 } 1489 export interface CustomOriginConfig { 1490 /** 1491 * The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on. 1492 */ 1493 HTTPPort: integer; 1494 /** 1495 * The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on. 1496 */ 1497 HTTPSPort: integer; 1498 /** 1499 * 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. 1500 */ 1501 OriginProtocolPolicy: OriginProtocolPolicy; 1502 /** 1503 * 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. 1504 */ 1505 OriginSslProtocols?: OriginSslProtocols; 1506 /** 1507 * 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. 1508 */ 1509 OriginReadTimeout?: integer; 1510 /** 1511 * 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. 1512 */ 1513 OriginKeepaliveTimeout?: integer; 1514 } 1515 export interface DefaultCacheBehavior { 1516 /** 1517 * The value of ID for the origin that you want CloudFront to route requests to when they use the default cache behavior. 1518 */ 1519 TargetOriginId: string; 1520 /** 1521 * We recommend using TrustedKeyGroups instead of TrustedSigners. A list of 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 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. 1522 */ 1523 TrustedSigners?: TrustedSigners; 1524 /** 1525 * 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. 1526 */ 1527 TrustedKeyGroups?: TrustedKeyGroups; 1528 /** 1529 * 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. 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. 1530 */ 1531 ViewerProtocolPolicy: ViewerProtocolPolicy; 1532 AllowedMethods?: AllowedMethods; 1533 /** 1534 * 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. 1535 */ 1536 SmoothStreaming?: boolean; 1537 /** 1538 * 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. 1539 */ 1540 Compress?: boolean; 1541 /** 1542 * A complex type that contains zero or more Lambda@Edge function associations for a cache behavior. 1543 */ 1544 LambdaFunctionAssociations?: LambdaFunctionAssociations; 1545 /** 1546 * 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. 1547 */ 1548 FunctionAssociations?: FunctionAssociations; 1549 /** 1550 * 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. 1551 */ 1552 FieldLevelEncryptionId?: string; 1553 /** 1554 * 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. 1555 */ 1556 RealtimeLogConfigArn?: string; 1557 /** 1558 * 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. 1559 */ 1560 CachePolicyId?: string; 1561 /** 1562 * 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. 1563 */ 1564 OriginRequestPolicyId?: string; 1565 /** 1566 * 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. 1567 */ 1568 ForwardedValues?: ForwardedValues; 1569 /** 1570 * 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). 1571 */ 1572 MinTTL?: long; 1573 /** 1574 * 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. 1575 */ 1576 DefaultTTL?: long; 1577 /** 1578 * 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. 1579 */ 1580 MaxTTL?: long; 1581 } 1582 export interface DeleteCachePolicyRequest { 1583 /** 1584 * The unique identifier for the cache policy that you are deleting. To get the identifier, you can use ListCachePolicies. 1585 */ 1586 Id: string; 1587 /** 1588 * 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. 1589 */ 1590 IfMatch?: string; 1591 } 1592 export interface DeleteCloudFrontOriginAccessIdentityRequest { 1593 /** 1594 * The origin access identity's ID. 1595 */ 1596 Id: string; 1597 /** 1598 * The value of the ETag header you received from a previous GET or PUT request. For example: E2QWRUHAPOMQZL. 1599 */ 1600 IfMatch?: string; 1601 } 1602 export interface DeleteDistributionRequest { 1603 /** 1604 * The distribution ID. 1605 */ 1606 Id: string; 1607 /** 1608 * The value of the ETag header that you received when you disabled the distribution. For example: E2QWRUHAPOMQZL. 1609 */ 1610 IfMatch?: string; 1611 } 1612 export interface DeleteFieldLevelEncryptionConfigRequest { 1613 /** 1614 * The ID of the configuration you want to delete from CloudFront. 1615 */ 1616 Id: string; 1617 /** 1618 * The value of the ETag header that you received when retrieving the configuration identity to delete. For example: E2QWRUHAPOMQZL. 1619 */ 1620 IfMatch?: string; 1621 } 1622 export interface DeleteFieldLevelEncryptionProfileRequest { 1623 /** 1624 * Request the ID of the profile you want to delete from CloudFront. 1625 */ 1626 Id: string; 1627 /** 1628 * The value of the ETag header that you received when retrieving the profile to delete. For example: E2QWRUHAPOMQZL. 1629 */ 1630 IfMatch?: string; 1631 } 1632 export interface DeleteFunctionRequest { 1633 /** 1634 * The name of the function that you are deleting. 1635 */ 1636 Name: string; 1637 /** 1638 * The current version (ETag value) of the function that you are deleting, which you can get using DescribeFunction. 1639 */ 1640 IfMatch: string; 1641 } 1642 export interface DeleteKeyGroupRequest { 1643 /** 1644 * The identifier of the key group that you are deleting. To get the identifier, use ListKeyGroups. 1645 */ 1646 Id: string; 1647 /** 1648 * 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. 1649 */ 1650 IfMatch?: string; 1651 } 1652 export interface DeleteMonitoringSubscriptionRequest { 1653 /** 1654 * The ID of the distribution that you are disabling metrics for. 1655 */ 1656 DistributionId: string; 1657 } 1658 export interface DeleteMonitoringSubscriptionResult { 1659 } 1660 export interface DeleteOriginRequestPolicyRequest { 1661 /** 1662 * The unique identifier for the origin request policy that you are deleting. To get the identifier, you can use ListOriginRequestPolicies. 1663 */ 1664 Id: string; 1665 /** 1666 * 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. 1667 */ 1668 IfMatch?: string; 1669 } 1670 export interface DeletePublicKeyRequest { 1671 /** 1672 * The ID of the public key you want to remove from CloudFront. 1673 */ 1674 Id: string; 1675 /** 1676 * The value of the ETag header that you received when retrieving the public key identity to delete. For example: E2QWRUHAPOMQZL. 1677 */ 1678 IfMatch?: string; 1679 } 1680 export interface DeleteRealtimeLogConfigRequest { 1681 /** 1682 * The name of the real-time log configuration to delete. 1683 */ 1684 Name?: string; 1685 /** 1686 * The Amazon Resource Name (ARN) of the real-time log configuration to delete. 1687 */ 1688 ARN?: string; 1689 } 1690 export interface DeleteStreamingDistributionRequest { 1691 /** 1692 * The distribution ID. 1693 */ 1694 Id: string; 1695 /** 1696 * The value of the ETag header that you received when you disabled the streaming distribution. For example: E2QWRUHAPOMQZL. 1697 */ 1698 IfMatch?: string; 1699 } 1700 export interface DescribeFunctionRequest { 1701 /** 1702 * The name of the function that you are getting information about. 1703 */ 1704 Name: string; 1705 /** 1706 * The function’s stage, either DEVELOPMENT or LIVE. 1707 */ 1708 Stage?: FunctionStage; 1709 } 1710 export interface DescribeFunctionResult { 1711 /** 1712 * Contains configuration information and metadata about a CloudFront function. 1713 */ 1714 FunctionSummary?: FunctionSummary; 1715 /** 1716 * The version identifier for the current version of the CloudFront function. 1717 */ 1718 ETag?: string; 1719 } 1720 export interface Distribution { 1721 /** 1722 * The identifier for the distribution. For example: EDFDVBD632BHDS5. 1723 */ 1724 Id: string; 1725 /** 1726 * The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your account ID. 1727 */ 1728 ARN: string; 1729 /** 1730 * This response element indicates the current status of the distribution. When the status is Deployed, the distribution's information is fully propagated to all CloudFront edge locations. 1731 */ 1732 Status: string; 1733 /** 1734 * The date and time the distribution was last modified. 1735 */ 1736 LastModifiedTime: timestamp; 1737 /** 1738 * The number of invalidation batches currently in progress. 1739 */ 1740 InProgressInvalidationBatches: integer; 1741 /** 1742 * The domain name corresponding to the distribution, for example, d111111abcdef8.cloudfront.net. 1743 */ 1744 DomainName: string; 1745 /** 1746 * We recommend using TrustedKeyGroups instead of TrustedSigners. CloudFront automatically adds this field to the response if you’ve configured a cache behavior in this distribution to serve private content using trusted signers. This field contains a list of 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. 1747 */ 1748 ActiveTrustedSigners?: ActiveTrustedSigners; 1749 /** 1750 * CloudFront automatically adds this field to the response if you’ve configured a cache behavior in this distribution to serve private content using key groups. 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. 1751 */ 1752 ActiveTrustedKeyGroups?: ActiveTrustedKeyGroups; 1753 /** 1754 * The current configuration information for the distribution. Send a GET request to the /CloudFront API version/distribution ID/config resource. 1755 */ 1756 DistributionConfig: DistributionConfig; 1757 /** 1758 * 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. 1759 */ 1760 AliasICPRecordals?: AliasICPRecordals; 1761 } 1762 export interface DistributionConfig { 1763 /** 1764 * 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. 1765 */ 1766 CallerReference: string; 1767 /** 1768 * A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution. 1769 */ 1770 Aliases?: Aliases; 1771 /** 1772 * 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 (http://www.example.com) instead of an object in your distribution (http://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. 1773 */ 1774 DefaultRootObject?: string; 1775 /** 1776 * A complex type that contains information about origins for this distribution. 1777 */ 1778 Origins: Origins; 1779 /** 1780 * A complex type that contains information about origin groups for this distribution. 1781 */ 1782 OriginGroups?: OriginGroups; 1783 /** 1784 * 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. 1785 */ 1786 DefaultCacheBehavior: DefaultCacheBehavior; 1787 /** 1788 * A complex type that contains zero or more CacheBehavior elements. 1789 */ 1790 CacheBehaviors?: CacheBehaviors; 1791 /** 1792 * 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. 1793 */ 1794 CustomErrorResponses?: CustomErrorResponses; 1795 /** 1796 * An optional comment to describe the distribution. The comment cannot be longer than 128 characters. 1797 */ 1798 Comment: CommentType; 1799 /** 1800 * 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. 1801 */ 1802 Logging?: LoggingConfig; 1803 /** 1804 * 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. 1805 */ 1806 PriceClass?: PriceClass; 1807 /** 1808 * From this field, you can enable or disable the selected distribution. 1809 */ 1810 Enabled: boolean; 1811 /** 1812 * A complex type that determines the distribution’s SSL/TLS configuration for communicating with viewers. 1813 */ 1814 ViewerCertificate?: ViewerCertificate; 1815 /** 1816 * A complex type that identifies ways in which you want to restrict distribution of your content. 1817 */ 1818 Restrictions?: Restrictions; 1819 /** 1820 * 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. 1821 */ 1822 WebACLId?: string; 1823 /** 1824 * (Optional) 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 automatically use an earlier HTTP version. For viewers and CloudFront to use HTTP/2, viewers must support TLS 1.2 or later, and must support Server Name Identification (SNI). In general, configuring CloudFront to communicate with viewers using HTTP/2 reduces latency. You can improve performance by optimizing for HTTP/2. For more information, do an Internet search for "http/2 optimization." 1825 */ 1826 HttpVersion?: HttpVersion; 1827 /** 1828 * 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. 1829 */ 1830 IsIPV6Enabled?: boolean; 1831 } 1832 export interface DistributionConfigWithTags { 1833 /** 1834 * A distribution configuration. 1835 */ 1836 DistributionConfig: DistributionConfig; 1837 /** 1838 * A complex type that contains zero or more Tag elements. 1839 */ 1840 Tags: Tags; 1841 } 1842 export interface DistributionIdList { 1843 /** 1844 * The value provided in the Marker request field. 1845 */ 1846 Marker: string; 1847 /** 1848 * Contains the value that you should use in the Marker field of a subsequent request to continue listing distribution IDs where you left off. 1849 */ 1850 NextMarker?: string; 1851 /** 1852 * The maximum number of distribution IDs requested. 1853 */ 1854 MaxItems: integer; 1855 /** 1856 * 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. 1857 */ 1858 IsTruncated: boolean; 1859 /** 1860 * The total number of distribution IDs returned in the response. 1861 */ 1862 Quantity: integer; 1863 /** 1864 * Contains the distribution IDs in the list. 1865 */ 1866 Items?: DistributionIdListSummary; 1867 } 1868 export type DistributionIdListSummary = string[]; 1869 export interface DistributionList { 1870 /** 1871 * The value you provided for the Marker request parameter. 1872 */ 1873 Marker: string; 1874 /** 1875 * 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. 1876 */ 1877 NextMarker?: string; 1878 /** 1879 * The value you provided for the MaxItems request parameter. 1880 */ 1881 MaxItems: integer; 1882 /** 1883 * 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. 1884 */ 1885 IsTruncated: boolean; 1886 /** 1887 * The number of distributions that were created by the current account. 1888 */ 1889 Quantity: integer; 1890 /** 1891 * A complex type that contains one DistributionSummary element for each distribution that was created by the current account. 1892 */ 1893 Items?: DistributionSummaryList; 1894 } 1895 export interface DistributionSummary { 1896 /** 1897 * The identifier for the distribution. For example: EDFDVBD632BHDS5. 1898 */ 1899 Id: string; 1900 /** 1901 * The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your account ID. 1902 */ 1903 ARN: string; 1904 /** 1905 * The current status of the distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations. 1906 */ 1907 Status: string; 1908 /** 1909 * The date and time the distribution was last modified. 1910 */ 1911 LastModifiedTime: timestamp; 1912 /** 1913 * The domain name that corresponds to the distribution, for example, d111111abcdef8.cloudfront.net. 1914 */ 1915 DomainName: string; 1916 /** 1917 * A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution. 1918 */ 1919 Aliases: Aliases; 1920 /** 1921 * A complex type that contains information about origins for this distribution. 1922 */ 1923 Origins: Origins; 1924 /** 1925 * A complex type that contains information about origin groups for this distribution. 1926 */ 1927 OriginGroups?: OriginGroups; 1928 /** 1929 * 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. 1930 */ 1931 DefaultCacheBehavior: DefaultCacheBehavior; 1932 /** 1933 * A complex type that contains zero or more CacheBehavior elements. 1934 */ 1935 CacheBehaviors: CacheBehaviors; 1936 /** 1937 * A complex type that contains zero or more CustomErrorResponses elements. 1938 */ 1939 CustomErrorResponses: CustomErrorResponses; 1940 /** 1941 * The comment originally specified when this distribution was created. 1942 */ 1943 Comment: string; 1944 /** 1945 * A complex type that contains information about price class for this streaming distribution. 1946 */ 1947 PriceClass: PriceClass; 1948 /** 1949 * Whether the distribution is enabled to accept user requests for content. 1950 */ 1951 Enabled: boolean; 1952 /** 1953 * A complex type that determines the distribution’s SSL/TLS configuration for communicating with viewers. 1954 */ 1955 ViewerCertificate: ViewerCertificate; 1956 /** 1957 * A complex type that identifies ways in which you want to restrict distribution of your content. 1958 */ 1959 Restrictions: Restrictions; 1960 /** 1961 * The Web ACL Id (if any) associated with the distribution. 1962 */ 1963 WebACLId: string; 1964 /** 1965 * 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. 1966 */ 1967 HttpVersion: HttpVersion; 1968 /** 1969 * Whether CloudFront responds to IPv6 DNS requests with an IPv6 address for your distribution. 1970 */ 1971 IsIPV6Enabled: boolean; 1972 /** 1973 * 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. 1974 */ 1975 AliasICPRecordals?: AliasICPRecordals; 1976 } 1977 export type DistributionSummaryList = DistributionSummary[]; 1978 export interface EncryptionEntities { 1979 /** 1980 * Number of field pattern items in a field-level encryption content type-profile mapping. 1981 */ 1982 Quantity: integer; 1983 /** 1984 * An array of field patterns in a field-level encryption content type-profile mapping. 1985 */ 1986 Items?: EncryptionEntityList; 1987 } 1988 export interface EncryptionEntity { 1989 /** 1990 * The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns. 1991 */ 1992 PublicKeyId: string; 1993 /** 1994 * 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. 1995 */ 1996 ProviderId: string; 1997 /** 1998 * 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. 1999 */ 2000 FieldPatterns: FieldPatterns; 2001 } 2002 export type EncryptionEntityList = EncryptionEntity[]; 2003 export interface EndPoint { 2004 /** 2005 * The type of data stream where you are sending real-time log data. The only valid value is Kinesis. 2006 */ 2007 StreamType: string; 2008 /** 2009 * Contains information about the Amazon Kinesis data stream where you are sending real-time log data. 2010 */ 2011 KinesisStreamConfig?: KinesisStreamConfig; 2012 } 2013 export type EndPointList = EndPoint[]; 2014 export type EventType = "viewer-request"|"viewer-response"|"origin-request"|"origin-response"|string; 2015 export interface FieldLevelEncryption { 2016 /** 2017 * 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. 2018 */ 2019 Id: string; 2020 /** 2021 * The last time the field-level encryption configuration was changed. 2022 */ 2023 LastModifiedTime: timestamp; 2024 /** 2025 * A complex data type that includes the profile configurations specified for field-level encryption. 2026 */ 2027 FieldLevelEncryptionConfig: FieldLevelEncryptionConfig; 2028 } 2029 export interface FieldLevelEncryptionConfig { 2030 /** 2031 * A unique number that ensures the request can't be replayed. 2032 */ 2033 CallerReference: string; 2034 /** 2035 * An optional comment about the configuration. The comment cannot be longer than 128 characters. 2036 */ 2037 Comment?: string; 2038 /** 2039 * 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. 2040 */ 2041 QueryArgProfileConfig?: QueryArgProfileConfig; 2042 /** 2043 * 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. 2044 */ 2045 ContentTypeProfileConfig?: ContentTypeProfileConfig; 2046 } 2047 export interface FieldLevelEncryptionList { 2048 /** 2049 * 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. 2050 */ 2051 NextMarker?: string; 2052 /** 2053 * The maximum number of elements you want in the response body. 2054 */ 2055 MaxItems: integer; 2056 /** 2057 * The number of field-level encryption items. 2058 */ 2059 Quantity: integer; 2060 /** 2061 * An array of field-level encryption items. 2062 */ 2063 Items?: FieldLevelEncryptionSummaryList; 2064 } 2065 export interface FieldLevelEncryptionProfile { 2066 /** 2067 * 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. 2068 */ 2069 Id: string; 2070 /** 2071 * The last time the field-level encryption profile was updated. 2072 */ 2073 LastModifiedTime: timestamp; 2074 /** 2075 * A complex data type that includes the profile name and the encryption entities for the field-level encryption profile. 2076 */ 2077 FieldLevelEncryptionProfileConfig: FieldLevelEncryptionProfileConfig; 2078 } 2079 export interface FieldLevelEncryptionProfileConfig { 2080 /** 2081 * Profile name for the field-level encryption profile. 2082 */ 2083 Name: string; 2084 /** 2085 * A unique number that ensures that the request can't be replayed. 2086 */ 2087 CallerReference: string; 2088 /** 2089 * An optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters. 2090 */ 2091 Comment?: string; 2092 /** 2093 * 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. 2094 */ 2095 EncryptionEntities: EncryptionEntities; 2096 } 2097 export interface FieldLevelEncryptionProfileList { 2098 /** 2099 * 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. 2100 */ 2101 NextMarker?: string; 2102 /** 2103 * The maximum number of field-level encryption profiles you want in the response body. 2104 */ 2105 MaxItems: integer; 2106 /** 2107 * The number of field-level encryption profiles. 2108 */ 2109 Quantity: integer; 2110 /** 2111 * The field-level encryption profile items. 2112 */ 2113 Items?: FieldLevelEncryptionProfileSummaryList; 2114 } 2115 export interface FieldLevelEncryptionProfileSummary { 2116 /** 2117 * ID for the field-level encryption profile summary. 2118 */ 2119 Id: string; 2120 /** 2121 * The time when the the field-level encryption profile summary was last updated. 2122 */ 2123 LastModifiedTime: timestamp; 2124 /** 2125 * Name for the field-level encryption profile summary. 2126 */ 2127 Name: string; 2128 /** 2129 * 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. 2130 */ 2131 EncryptionEntities: EncryptionEntities; 2132 /** 2133 * An optional comment for the field-level encryption profile summary. The comment cannot be longer than 128 characters. 2134 */ 2135 Comment?: string; 2136 } 2137 export type FieldLevelEncryptionProfileSummaryList = FieldLevelEncryptionProfileSummary[]; 2138 export interface FieldLevelEncryptionSummary { 2139 /** 2140 * The unique ID of a field-level encryption item. 2141 */ 2142 Id: string; 2143 /** 2144 * The last time that the summary of field-level encryption items was modified. 2145 */ 2146 LastModifiedTime: timestamp; 2147 /** 2148 * An optional comment about the field-level encryption item. The comment cannot be longer than 128 characters. 2149 */ 2150 Comment?: string; 2151 /** 2152 * A summary of a query argument-profile mapping. 2153 */ 2154 QueryArgProfileConfig?: QueryArgProfileConfig; 2155 /** 2156 * A summary of a content type-profile mapping. 2157 */ 2158 ContentTypeProfileConfig?: ContentTypeProfileConfig; 2159 } 2160 export type FieldLevelEncryptionSummaryList = FieldLevelEncryptionSummary[]; 2161 export type FieldList = string[]; 2162 export type FieldPatternList = string[]; 2163 export interface FieldPatterns { 2164 /** 2165 * The number of field-level encryption field patterns. 2166 */ 2167 Quantity: integer; 2168 /** 2169 * An array of the field-level encryption field patterns. 2170 */ 2171 Items?: FieldPatternList; 2172 } 2173 export type Format = "URLEncoded"|string; 2174 export interface ForwardedValues { 2175 /** 2176 * 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. 2177 */ 2178 QueryString: boolean; 2179 /** 2180 * 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. 2181 */ 2182 Cookies: CookiePreference; 2183 /** 2184 * 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. 2185 */ 2186 Headers?: Headers; 2187 /** 2188 * 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. 2189 */ 2190 QueryStringCacheKeys?: QueryStringCacheKeys; 2191 } 2192 export type FunctionARN = string; 2193 export interface FunctionAssociation { 2194 /** 2195 * The Amazon Resource Name (ARN) of the function. 2196 */ 2197 FunctionARN: FunctionARN; 2198 /** 2199 * 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. 2200 */ 2201 EventType: EventType; 2202 } 2203 export type FunctionAssociationList = FunctionAssociation[]; 2204 export interface FunctionAssociations { 2205 /** 2206 * The number of CloudFront functions in the list. 2207 */ 2208 Quantity: integer; 2209 /** 2210 * 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. 2211 */ 2212 Items?: FunctionAssociationList; 2213 } 2214 export type FunctionBlob = Buffer|Uint8Array|Blob|string; 2215 export interface FunctionConfig { 2216 /** 2217 * A comment to describe the function. 2218 */ 2219 Comment: string; 2220 /** 2221 * The function’s runtime environment. The only valid value is cloudfront-js-1.0. 2222 */ 2223 Runtime: FunctionRuntime; 2224 } 2225 export type FunctionEventObject = Buffer|Uint8Array|Blob|string; 2226 export type FunctionExecutionLogList = string[]; 2227 export interface FunctionList { 2228 /** 2229 * 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. 2230 */ 2231 NextMarker?: string; 2232 /** 2233 * The maximum number of functions requested. 2234 */ 2235 MaxItems: integer; 2236 /** 2237 * The number of functions returned in the response. 2238 */ 2239 Quantity: integer; 2240 /** 2241 * Contains the functions in the list. 2242 */ 2243 Items?: FunctionSummaryList; 2244 } 2245 export interface FunctionMetadata { 2246 /** 2247 * The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function. 2248 */ 2249 FunctionARN: string; 2250 /** 2251 * 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. 2252 */ 2253 Stage?: FunctionStage; 2254 /** 2255 * The date and time when the function was created. 2256 */ 2257 CreatedTime?: timestamp; 2258 /** 2259 * The date and time when the function was most recently updated. 2260 */ 2261 LastModifiedTime: timestamp; 2262 } 2263 export type FunctionName = string; 2264 export type FunctionRuntime = "cloudfront-js-1.0"|string; 2265 export type FunctionStage = "DEVELOPMENT"|"LIVE"|string; 2266 export interface FunctionSummary { 2267 /** 2268 * The name of the CloudFront function. 2269 */ 2270 Name: FunctionName; 2271 /** 2272 * The status of the CloudFront function. 2273 */ 2274 Status?: string; 2275 /** 2276 * Contains configuration information about a CloudFront function. 2277 */ 2278 FunctionConfig: FunctionConfig; 2279 /** 2280 * Contains metadata about a CloudFront function. 2281 */ 2282 FunctionMetadata: FunctionMetadata; 2283 } 2284 export type FunctionSummaryList = FunctionSummary[]; 2285 export interface GeoRestriction { 2286 /** 2287 * 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. 2288 */ 2289 RestrictionType: GeoRestrictionType; 2290 /** 2291 * 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. 2292 */ 2293 Quantity: integer; 2294 /** 2295 * 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. 2296 */ 2297 Items?: LocationList; 2298 } 2299 export type GeoRestrictionType = "blacklist"|"whitelist"|"none"|string; 2300 export interface GetCachePolicyConfigRequest { 2301 /** 2302 * 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. 2303 */ 2304 Id: string; 2305 } 2306 export interface GetCachePolicyConfigResult { 2307 /** 2308 * The cache policy configuration. 2309 */ 2310 CachePolicyConfig?: CachePolicyConfig; 2311 /** 2312 * The current version of the cache policy. 2313 */ 2314 ETag?: string; 2315 } 2316 export interface GetCachePolicyRequest { 2317 /** 2318 * 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. 2319 */ 2320 Id: string; 2321 } 2322 export interface GetCachePolicyResult { 2323 /** 2324 * The cache policy. 2325 */ 2326 CachePolicy?: CachePolicy; 2327 /** 2328 * The current version of the cache policy. 2329 */ 2330 ETag?: string; 2331 } 2332 export interface GetCloudFrontOriginAccessIdentityConfigRequest { 2333 /** 2334 * The identity's ID. 2335 */ 2336 Id: string; 2337 } 2338 export interface GetCloudFrontOriginAccessIdentityConfigResult { 2339 /** 2340 * The origin access identity's configuration information. 2341 */ 2342 CloudFrontOriginAccessIdentityConfig?: CloudFrontOriginAccessIdentityConfig; 2343 /** 2344 * The current version of the configuration. For example: E2QWRUHAPOMQZL. 2345 */ 2346 ETag?: string; 2347 } 2348 export interface GetCloudFrontOriginAccessIdentityRequest { 2349 /** 2350 * The identity's ID. 2351 */ 2352 Id: string; 2353 } 2354 export interface GetCloudFrontOriginAccessIdentityResult { 2355 /** 2356 * The origin access identity's information. 2357 */ 2358 CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity; 2359 /** 2360 * The current version of the origin access identity's information. For example: E2QWRUHAPOMQZL. 2361 */ 2362 ETag?: string; 2363 } 2364 export interface GetDistributionConfigRequest { 2365 /** 2366 * The distribution's ID. If the ID is empty, an empty distribution configuration is returned. 2367 */ 2368 Id: string; 2369 } 2370 export interface GetDistributionConfigResult { 2371 /** 2372 * The distribution's configuration information. 2373 */ 2374 DistributionConfig?: DistributionConfig; 2375 /** 2376 * The current version of the configuration. For example: E2QWRUHAPOMQZL. 2377 */ 2378 ETag?: string; 2379 } 2380 export interface GetDistributionRequest { 2381 /** 2382 * The distribution's ID. If the ID is empty, an empty distribution configuration is returned. 2383 */ 2384 Id: string; 2385 } 2386 export interface GetDistributionResult { 2387 /** 2388 * The distribution's information. 2389 */ 2390 Distribution?: Distribution; 2391 /** 2392 * The current version of the distribution's information. For example: E2QWRUHAPOMQZL. 2393 */ 2394 ETag?: string; 2395 } 2396 export interface GetFieldLevelEncryptionConfigRequest { 2397 /** 2398 * Request the ID for the field-level encryption configuration information. 2399 */ 2400 Id: string; 2401 } 2402 export interface GetFieldLevelEncryptionConfigResult { 2403 /** 2404 * Return the field-level encryption configuration information. 2405 */ 2406 FieldLevelEncryptionConfig?: FieldLevelEncryptionConfig; 2407 /** 2408 * The current version of the field level encryption configuration. For example: E2QWRUHAPOMQZL. 2409 */ 2410 ETag?: string; 2411 } 2412 export interface GetFieldLevelEncryptionProfileConfigRequest { 2413 /** 2414 * Get the ID for the field-level encryption profile configuration information. 2415 */ 2416 Id: string; 2417 } 2418 export interface GetFieldLevelEncryptionProfileConfigResult { 2419 /** 2420 * Return the field-level encryption profile configuration information. 2421 */ 2422 FieldLevelEncryptionProfileConfig?: FieldLevelEncryptionProfileConfig; 2423 /** 2424 * The current version of the field-level encryption profile configuration result. For example: E2QWRUHAPOMQZL. 2425 */ 2426 ETag?: string; 2427 } 2428 export interface GetFieldLevelEncryptionProfileRequest { 2429 /** 2430 * Get the ID for the field-level encryption profile information. 2431 */ 2432 Id: string; 2433 } 2434 export interface GetFieldLevelEncryptionProfileResult { 2435 /** 2436 * Return the field-level encryption profile information. 2437 */ 2438 FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile; 2439 /** 2440 * The current version of the field level encryption profile. For example: E2QWRUHAPOMQZL. 2441 */ 2442 ETag?: string; 2443 } 2444 export interface GetFieldLevelEncryptionRequest { 2445 /** 2446 * Request the ID for the field-level encryption configuration information. 2447 */ 2448 Id: string; 2449 } 2450 export interface GetFieldLevelEncryptionResult { 2451 /** 2452 * Return the field-level encryption configuration information. 2453 */ 2454 FieldLevelEncryption?: FieldLevelEncryption; 2455 /** 2456 * The current version of the field level encryption configuration. For example: E2QWRUHAPOMQZL. 2457 */ 2458 ETag?: string; 2459 } 2460 export interface GetFunctionRequest { 2461 /** 2462 * The name of the function whose code you are getting. 2463 */ 2464 Name: string; 2465 /** 2466 * The function’s stage, either DEVELOPMENT or LIVE. 2467 */ 2468 Stage?: FunctionStage; 2469 } 2470 export interface GetFunctionResult { 2471 /** 2472 * The function code of a CloudFront function. 2473 */ 2474 FunctionCode?: FunctionBlob; 2475 /** 2476 * The version identifier for the current version of the CloudFront function. 2477 */ 2478 ETag?: string; 2479 /** 2480 * The content type (media type) of the response. 2481 */ 2482 ContentType?: string; 2483 } 2484 export interface GetInvalidationRequest { 2485 /** 2486 * The distribution's ID. 2487 */ 2488 DistributionId: string; 2489 /** 2490 * The identifier for the invalidation request, for example, IDFDVBD632BHDS5. 2491 */ 2492 Id: string; 2493 } 2494 export interface GetInvalidationResult { 2495 /** 2496 * The invalidation's information. For more information, see Invalidation Complex Type. 2497 */ 2498 Invalidation?: Invalidation; 2499 } 2500 export interface GetKeyGroupConfigRequest { 2501 /** 2502 * The identifier of the key group whose configuration you are getting. To get the identifier, use ListKeyGroups. 2503 */ 2504 Id: string; 2505 } 2506 export interface GetKeyGroupConfigResult { 2507 /** 2508 * The key group configuration. 2509 */ 2510 KeyGroupConfig?: KeyGroupConfig; 2511 /** 2512 * The identifier for this version of the key group. 2513 */ 2514 ETag?: string; 2515 } 2516 export interface GetKeyGroupRequest { 2517 /** 2518 * The identifier of the key group that you are getting. To get the identifier, use ListKeyGroups. 2519 */ 2520 Id: string; 2521 } 2522 export interface GetKeyGroupResult { 2523 /** 2524 * The key group. 2525 */ 2526 KeyGroup?: KeyGroup; 2527 /** 2528 * The identifier for this version of the key group. 2529 */ 2530 ETag?: string; 2531 } 2532 export interface GetMonitoringSubscriptionRequest { 2533 /** 2534 * The ID of the distribution that you are getting metrics information for. 2535 */ 2536 DistributionId: string; 2537 } 2538 export interface GetMonitoringSubscriptionResult { 2539 /** 2540 * A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution. 2541 */ 2542 MonitoringSubscription?: MonitoringSubscription; 2543 } 2544 export interface GetOriginRequestPolicyConfigRequest { 2545 /** 2546 * 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. 2547 */ 2548 Id: string; 2549 } 2550 export interface GetOriginRequestPolicyConfigResult { 2551 /** 2552 * The origin request policy configuration. 2553 */ 2554 OriginRequestPolicyConfig?: OriginRequestPolicyConfig; 2555 /** 2556 * The current version of the origin request policy. 2557 */ 2558 ETag?: string; 2559 } 2560 export interface GetOriginRequestPolicyRequest { 2561 /** 2562 * 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. 2563 */ 2564 Id: string; 2565 } 2566 export interface GetOriginRequestPolicyResult { 2567 /** 2568 * The origin request policy. 2569 */ 2570 OriginRequestPolicy?: OriginRequestPolicy; 2571 /** 2572 * The current version of the origin request policy. 2573 */ 2574 ETag?: string; 2575 } 2576 export interface GetPublicKeyConfigRequest { 2577 /** 2578 * The identifier of the public key whose configuration you are getting. 2579 */ 2580 Id: string; 2581 } 2582 export interface GetPublicKeyConfigResult { 2583 /** 2584 * A public key configuration. 2585 */ 2586 PublicKeyConfig?: PublicKeyConfig; 2587 /** 2588 * The identifier for this version of the public key configuration. 2589 */ 2590 ETag?: string; 2591 } 2592 export interface GetPublicKeyRequest { 2593 /** 2594 * The identifier of the public key you are getting. 2595 */ 2596 Id: string; 2597 } 2598 export interface GetPublicKeyResult { 2599 /** 2600 * The public key. 2601 */ 2602 PublicKey?: PublicKey; 2603 /** 2604 * The identifier for this version of the public key. 2605 */ 2606 ETag?: string; 2607 } 2608 export interface GetRealtimeLogConfigRequest { 2609 /** 2610 * The name of the real-time log configuration to get. 2611 */ 2612 Name?: string; 2613 /** 2614 * The Amazon Resource Name (ARN) of the real-time log configuration to get. 2615 */ 2616 ARN?: string; 2617 } 2618 export interface GetRealtimeLogConfigResult { 2619 /** 2620 * A real-time log configuration. 2621 */ 2622 RealtimeLogConfig?: RealtimeLogConfig; 2623 } 2624 export interface GetStreamingDistributionConfigRequest { 2625 /** 2626 * The streaming distribution's ID. 2627 */ 2628 Id: string; 2629 } 2630 export interface GetStreamingDistributionConfigResult { 2631 /** 2632 * The streaming distribution's configuration information. 2633 */ 2634 StreamingDistributionConfig?: StreamingDistributionConfig; 2635 /** 2636 * The current version of the configuration. For example: E2QWRUHAPOMQZL. 2637 */ 2638 ETag?: string; 2639 } 2640 export interface GetStreamingDistributionRequest { 2641 /** 2642 * The streaming distribution's ID. 2643 */ 2644 Id: string; 2645 } 2646 export interface GetStreamingDistributionResult { 2647 /** 2648 * The streaming distribution's information. 2649 */ 2650 StreamingDistribution?: StreamingDistribution; 2651 /** 2652 * The current version of the streaming distribution's information. For example: E2QWRUHAPOMQZL. 2653 */ 2654 ETag?: string; 2655 } 2656 export type HeaderList = string[]; 2657 export interface Headers { 2658 /** 2659 * The number of header names in the Items list. 2660 */ 2661 Quantity: integer; 2662 /** 2663 * A list of HTTP header names. 2664 */ 2665 Items?: HeaderList; 2666 } 2667 export type HttpVersion = "http1.1"|"http2"|string; 2668 export type ICPRecordalStatus = "APPROVED"|"SUSPENDED"|"PENDING"|string; 2669 export interface Invalidation { 2670 /** 2671 * The identifier for the invalidation request. For example: IDFDVBD632BHDS5. 2672 */ 2673 Id: string; 2674 /** 2675 * The status of the invalidation request. When the invalidation batch is finished, the status is Completed. 2676 */ 2677 Status: string; 2678 /** 2679 * The date and time the invalidation request was first made. 2680 */ 2681 CreateTime: timestamp; 2682 /** 2683 * The current invalidation information for the batch request. 2684 */ 2685 InvalidationBatch: InvalidationBatch; 2686 } 2687 export interface InvalidationBatch { 2688 /** 2689 * 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. 2690 */ 2691 Paths: Paths; 2692 /** 2693 * 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. 2694 */ 2695 CallerReference: string; 2696 } 2697 export interface InvalidationList { 2698 /** 2699 * The value that you provided for the Marker request parameter. 2700 */ 2701 Marker: string; 2702 /** 2703 * 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. 2704 */ 2705 NextMarker?: string; 2706 /** 2707 * The value that you provided for the MaxItems request parameter. 2708 */ 2709 MaxItems: integer; 2710 /** 2711 * 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. 2712 */ 2713 IsTruncated: boolean; 2714 /** 2715 * The number of invalidation batches that were created by the current account. 2716 */ 2717 Quantity: integer; 2718 /** 2719 * A complex type that contains one InvalidationSummary element for each invalidation batch created by the current account. 2720 */ 2721 Items?: InvalidationSummaryList; 2722 } 2723 export interface InvalidationSummary { 2724 /** 2725 * The unique ID for an invalidation request. 2726 */ 2727 Id: string; 2728 /** 2729 * The time that an invalidation request was created. 2730 */ 2731 CreateTime: timestamp; 2732 /** 2733 * The status of an invalidation request. 2734 */ 2735 Status: string; 2736 } 2737 export type InvalidationSummaryList = InvalidationSummary[]; 2738 export type ItemSelection = "none"|"whitelist"|"all"|string; 2739 export interface KGKeyPairIds { 2740 /** 2741 * The identifier of the key group that contains the public keys. 2742 */ 2743 KeyGroupId?: string; 2744 KeyPairIds?: KeyPairIds; 2745 } 2746 export type KGKeyPairIdsList = KGKeyPairIds[]; 2747 export interface KeyGroup { 2748 /** 2749 * The identifier for the key group. 2750 */ 2751 Id: string; 2752 /** 2753 * The date and time when the key group was last modified. 2754 */ 2755 LastModifiedTime: timestamp; 2756 /** 2757 * The key group configuration. 2758 */ 2759 KeyGroupConfig: KeyGroupConfig; 2760 } 2761 export interface KeyGroupConfig { 2762 /** 2763 * A name to identify the key group. 2764 */ 2765 Name: string; 2766 /** 2767 * A list of the identifiers of the public keys in the key group. 2768 */ 2769 Items: PublicKeyIdList; 2770 /** 2771 * A comment to describe the key group. The comment cannot be longer than 128 characters. 2772 */ 2773 Comment?: string; 2774 } 2775 export interface KeyGroupList { 2776 /** 2777 * 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. 2778 */ 2779 NextMarker?: string; 2780 /** 2781 * The maximum number of key groups requested. 2782 */ 2783 MaxItems: integer; 2784 /** 2785 * The number of key groups returned in the response. 2786 */ 2787 Quantity: integer; 2788 /** 2789 * A list of key groups. 2790 */ 2791 Items?: KeyGroupSummaryList; 2792 } 2793 export interface KeyGroupSummary { 2794 /** 2795 * A key group. 2796 */ 2797 KeyGroup: KeyGroup; 2798 } 2799 export type KeyGroupSummaryList = KeyGroupSummary[]; 2800 export type KeyPairIdList = string[]; 2801 export interface KeyPairIds { 2802 /** 2803 * The number of key pair identifiers in the list. 2804 */ 2805 Quantity: integer; 2806 /** 2807 * A list of CloudFront key pair identifiers. 2808 */ 2809 Items?: KeyPairIdList; 2810 } 2811 export interface KinesisStreamConfig { 2812 /** 2813 * 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. 2814 */ 2815 RoleARN: string; 2816 /** 2817 * The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data. 2818 */ 2819 StreamARN: string; 2820 } 2821 export type LambdaFunctionARN = string; 2822 export interface LambdaFunctionAssociation { 2823 /** 2824 * The ARN of the Lambda@Edge function. You must specify the ARN of a function version; you can't specify an alias or $LATEST. 2825 */ 2826 LambdaFunctionARN: LambdaFunctionARN; 2827 /** 2828 * 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. 2829 */ 2830 EventType: EventType; 2831 /** 2832 * 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. 2833 */ 2834 IncludeBody?: boolean; 2835 } 2836 export type LambdaFunctionAssociationList = LambdaFunctionAssociation[]; 2837 export interface LambdaFunctionAssociations { 2838 /** 2839 * The number of Lambda@Edge function associations for this cache behavior. 2840 */ 2841 Quantity: integer; 2842 /** 2843 * Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items. 2844 */ 2845 Items?: LambdaFunctionAssociationList; 2846 } 2847 export interface ListCachePoliciesRequest { 2848 /** 2849 * 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 account. 2850 */ 2851 Type?: CachePolicyType; 2852 /** 2853 * 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. 2854 */ 2855 Marker?: string; 2856 /** 2857 * The maximum number of cache policies that you want in the response. 2858 */ 2859 MaxItems?: string; 2860 } 2861 export interface ListCachePoliciesResult { 2862 /** 2863 * A list of cache policies. 2864 */ 2865 CachePolicyList?: CachePolicyList; 2866 } 2867 export interface ListCloudFrontOriginAccessIdentitiesRequest { 2868 /** 2869 * 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). 2870 */ 2871 Marker?: string; 2872 /** 2873 * The maximum number of origin access identities you want in the response body. 2874 */ 2875 MaxItems?: string; 2876 } 2877 export interface ListCloudFrontOriginAccessIdentitiesResult { 2878 /** 2879 * The CloudFrontOriginAccessIdentityList type. 2880 */ 2881 CloudFrontOriginAccessIdentityList?: CloudFrontOriginAccessIdentityList; 2882 } 2883 export interface ListConflictingAliasesRequest { 2884 /** 2885 * The ID of a distribution in your account that has an attached SSL/TLS certificate that includes the provided alias. 2886 */ 2887 DistributionId: distributionIdString; 2888 /** 2889 * The alias (also called a CNAME) to search for conflicting aliases. 2890 */ 2891 Alias: aliasString; 2892 /** 2893 * 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. 2894 */ 2895 Marker?: string; 2896 /** 2897 * The maximum number of conflicting aliases that you want in the response. 2898 */ 2899 MaxItems?: listConflictingAliasesMaxItemsInteger; 2900 } 2901 export interface ListConflictingAliasesResult { 2902 /** 2903 * A list of conflicting aliases. 2904 */ 2905 ConflictingAliasesList?: ConflictingAliasesList; 2906 } 2907 export interface ListDistributionsByCachePolicyIdRequest { 2908 /** 2909 * 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. 2910 */ 2911 Marker?: string; 2912 /** 2913 * The maximum number of distribution IDs that you want in the response. 2914 */ 2915 MaxItems?: string; 2916 /** 2917 * The ID of the cache policy whose associated distribution IDs you want to list. 2918 */ 2919 CachePolicyId: string; 2920 } 2921 export interface ListDistributionsByCachePolicyIdResult { 2922 /** 2923 * A list of distribution IDs. 2924 */ 2925 DistributionIdList?: DistributionIdList; 2926 } 2927 export interface ListDistributionsByKeyGroupRequest { 2928 /** 2929 * 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. 2930 */ 2931 Marker?: string; 2932 /** 2933 * The maximum number of distribution IDs that you want in the response. 2934 */ 2935 MaxItems?: string; 2936 /** 2937 * The ID of the key group whose associated distribution IDs you are listing. 2938 */ 2939 KeyGroupId: string; 2940 } 2941 export interface ListDistributionsByKeyGroupResult { 2942 DistributionIdList?: DistributionIdList; 2943 } 2944 export interface ListDistributionsByOriginRequestPolicyIdRequest { 2945 /** 2946 * 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. 2947 */ 2948 Marker?: string; 2949 /** 2950 * The maximum number of distribution IDs that you want in the response. 2951 */ 2952 MaxItems?: string; 2953 /** 2954 * The ID of the origin request policy whose associated distribution IDs you want to list. 2955 */ 2956 OriginRequestPolicyId: string; 2957 } 2958 export interface ListDistributionsByOriginRequestPolicyIdResult { 2959 /** 2960 * A list of distribution IDs. 2961 */ 2962 DistributionIdList?: DistributionIdList; 2963 } 2964 export interface ListDistributionsByRealtimeLogConfigRequest { 2965 /** 2966 * 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. 2967 */ 2968 Marker?: string; 2969 /** 2970 * The maximum number of distributions that you want in the response. 2971 */ 2972 MaxItems?: string; 2973 /** 2974 * The name of the real-time log configuration whose associated distributions you want to list. 2975 */ 2976 RealtimeLogConfigName?: string; 2977 /** 2978 * The Amazon Resource Name (ARN) of the real-time log configuration whose associated distributions you want to list. 2979 */ 2980 RealtimeLogConfigArn?: string; 2981 } 2982 export interface ListDistributionsByRealtimeLogConfigResult { 2983 DistributionList?: DistributionList; 2984 } 2985 export interface ListDistributionsByWebACLIdRequest { 2986 /** 2987 * 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.) 2988 */ 2989 Marker?: string; 2990 /** 2991 * The maximum number of distributions that you want CloudFront to return in the response body. The maximum and default values are both 100. 2992 */ 2993 MaxItems?: string; 2994 /** 2995 * 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. 2996 */ 2997 WebACLId: string; 2998 } 2999 export interface ListDistributionsByWebACLIdResult { 3000 /** 3001 * The DistributionList type. 3002 */ 3003 DistributionList?: DistributionList; 3004 } 3005 export interface ListDistributionsRequest { 3006 /** 3007 * 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). 3008 */ 3009 Marker?: string; 3010 /** 3011 * The maximum number of distributions you want in the response body. 3012 */ 3013 MaxItems?: string; 3014 } 3015 export interface ListDistributionsResult { 3016 /** 3017 * The DistributionList type. 3018 */ 3019 DistributionList?: DistributionList; 3020 } 3021 export interface ListFieldLevelEncryptionConfigsRequest { 3022 /** 3023 * 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). 3024 */ 3025 Marker?: string; 3026 /** 3027 * The maximum number of field-level encryption configurations you want in the response body. 3028 */ 3029 MaxItems?: string; 3030 } 3031 export interface ListFieldLevelEncryptionConfigsResult { 3032 /** 3033 * Returns a list of all field-level encryption configurations that have been created in CloudFront for this account. 3034 */ 3035 FieldLevelEncryptionList?: FieldLevelEncryptionList; 3036 } 3037 export interface ListFieldLevelEncryptionProfilesRequest { 3038 /** 3039 * 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). 3040 */ 3041 Marker?: string; 3042 /** 3043 * The maximum number of field-level encryption profiles you want in the response body. 3044 */ 3045 MaxItems?: string; 3046 } 3047 export interface ListFieldLevelEncryptionProfilesResult { 3048 /** 3049 * Returns a list of the field-level encryption profiles that have been created in CloudFront for this account. 3050 */ 3051 FieldLevelEncryptionProfileList?: FieldLevelEncryptionProfileList; 3052 } 3053 export interface ListFunctionsRequest { 3054 /** 3055 * 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. 3056 */ 3057 Marker?: string; 3058 /** 3059 * The maximum number of functions that you want in the response. 3060 */ 3061 MaxItems?: string; 3062 /** 3063 * An optional filter to return only the functions that are in the specified stage, either DEVELOPMENT or LIVE. 3064 */ 3065 Stage?: FunctionStage; 3066 } 3067 export interface ListFunctionsResult { 3068 /** 3069 * A list of CloudFront functions. 3070 */ 3071 FunctionList?: FunctionList; 3072 } 3073 export interface ListInvalidationsRequest { 3074 /** 3075 * The distribution's ID. 3076 */ 3077 DistributionId: string; 3078 /** 3079 * 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. 3080 */ 3081 Marker?: string; 3082 /** 3083 * The maximum number of invalidation batches that you want in the response body. 3084 */ 3085 MaxItems?: string; 3086 } 3087 export interface ListInvalidationsResult { 3088 /** 3089 * Information about invalidation batches. 3090 */ 3091 InvalidationList?: InvalidationList; 3092 } 3093 export interface ListKeyGroupsRequest { 3094 /** 3095 * 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. 3096 */ 3097 Marker?: string; 3098 /** 3099 * The maximum number of key groups that you want in the response. 3100 */ 3101 MaxItems?: string; 3102 } 3103 export interface ListKeyGroupsResult { 3104 /** 3105 * A list of key groups. 3106 */ 3107 KeyGroupList?: KeyGroupList; 3108 } 3109 export interface ListOriginRequestPoliciesRequest { 3110 /** 3111 * 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 account. 3112 */ 3113 Type?: OriginRequestPolicyType; 3114 /** 3115 * 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. 3116 */ 3117 Marker?: string; 3118 /** 3119 * The maximum number of origin request policies that you want in the response. 3120 */ 3121 MaxItems?: string; 3122 } 3123 export interface ListOriginRequestPoliciesResult { 3124 /** 3125 * A list of origin request policies. 3126 */ 3127 OriginRequestPolicyList?: OriginRequestPolicyList; 3128 } 3129 export interface ListPublicKeysRequest { 3130 /** 3131 * 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). 3132 */ 3133 Marker?: string; 3134 /** 3135 * The maximum number of public keys you want in the response body. 3136 */ 3137 MaxItems?: string; 3138 } 3139 export interface ListPublicKeysResult { 3140 /** 3141 * Returns a list of all public keys that have been added to CloudFront for this account. 3142 */ 3143 PublicKeyList?: PublicKeyList; 3144 } 3145 export interface ListRealtimeLogConfigsRequest { 3146 /** 3147 * The maximum number of real-time log configurations that you want in the response. 3148 */ 3149 MaxItems?: string; 3150 /** 3151 * 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. 3152 */ 3153 Marker?: string; 3154 } 3155 export interface ListRealtimeLogConfigsResult { 3156 /** 3157 * A list of real-time log configurations. 3158 */ 3159 RealtimeLogConfigs?: RealtimeLogConfigs; 3160 } 3161 export interface ListStreamingDistributionsRequest { 3162 /** 3163 * The value that you provided for the Marker request parameter. 3164 */ 3165 Marker?: string; 3166 /** 3167 * The value that you provided for the MaxItems request parameter. 3168 */ 3169 MaxItems?: string; 3170 } 3171 export interface ListStreamingDistributionsResult { 3172 /** 3173 * The StreamingDistributionList type. 3174 */ 3175 StreamingDistributionList?: StreamingDistributionList; 3176 } 3177 export interface ListTagsForResourceRequest { 3178 /** 3179 * An ARN of a CloudFront resource. 3180 */ 3181 Resource: ResourceARN; 3182 } 3183 export interface ListTagsForResourceResult { 3184 /** 3185 * A complex type that contains zero or more Tag elements. 3186 */ 3187 Tags: Tags; 3188 } 3189 export type LocationList = string[]; 3190 export interface LoggingConfig { 3191 /** 3192 * 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. 3193 */ 3194 Enabled: boolean; 3195 /** 3196 * 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. 3197 */ 3198 IncludeCookies: boolean; 3199 /** 3200 * The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com. 3201 */ 3202 Bucket: string; 3203 /** 3204 * 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. 3205 */ 3206 Prefix: string; 3207 } 3208 export type Method = "GET"|"HEAD"|"POST"|"PUT"|"PATCH"|"OPTIONS"|"DELETE"|string; 3209 export type MethodsList = Method[]; 3210 export type MinimumProtocolVersion = "SSLv3"|"TLSv1"|"TLSv1_2016"|"TLSv1.1_2016"|"TLSv1.2_2018"|"TLSv1.2_2019"|"TLSv1.2_2021"|string; 3211 export interface MonitoringSubscription { 3212 /** 3213 * A subscription configuration for additional CloudWatch metrics. 3214 */ 3215 RealtimeMetricsSubscriptionConfig?: RealtimeMetricsSubscriptionConfig; 3216 } 3217 export interface Origin { 3218 /** 3219 * 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. 3220 */ 3221 Id: string; 3222 /** 3223 * The domain name for the origin. For more information, see Origin Domain Name in the Amazon CloudFront Developer Guide. 3224 */ 3225 DomainName: string; 3226 /** 3227 * 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. 3228 */ 3229 OriginPath?: string; 3230 /** 3231 * 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. 3232 */ 3233 CustomHeaders?: CustomHeaders; 3234 /** 3235 * 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. 3236 */ 3237 S3OriginConfig?: S3OriginConfig; 3238 /** 3239 * 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. 3240 */ 3241 CustomOriginConfig?: CustomOriginConfig; 3242 /** 3243 * 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. 3244 */ 3245 ConnectionAttempts?: integer; 3246 /** 3247 * 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. 3248 */ 3249 ConnectionTimeout?: integer; 3250 /** 3251 * 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. 3252 */ 3253 OriginShield?: OriginShield; 3254 } 3255 export interface OriginCustomHeader { 3256 /** 3257 * 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. 3258 */ 3259 HeaderName: string; 3260 /** 3261 * The value for the header that you specified in the HeaderName field. 3262 */ 3263 HeaderValue: string; 3264 } 3265 export type OriginCustomHeadersList = OriginCustomHeader[]; 3266 export interface OriginGroup { 3267 /** 3268 * The origin group's ID. 3269 */ 3270 Id: string; 3271 /** 3272 * A complex type that contains information about the failover criteria for an origin group. 3273 */ 3274 FailoverCriteria: OriginGroupFailoverCriteria; 3275 /** 3276 * A complex type that contains information about the origins in an origin group. 3277 */ 3278 Members: OriginGroupMembers; 3279 } 3280 export interface OriginGroupFailoverCriteria { 3281 /** 3282 * The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin. 3283 */ 3284 StatusCodes: StatusCodes; 3285 } 3286 export type OriginGroupList = OriginGroup[]; 3287 export interface OriginGroupMember { 3288 /** 3289 * The ID for an origin in an origin group. 3290 */ 3291 OriginId: string; 3292 } 3293 export type OriginGroupMemberList = OriginGroupMember[]; 3294 export interface OriginGroupMembers { 3295 /** 3296 * The number of origins in an origin group. 3297 */ 3298 Quantity: integer; 3299 /** 3300 * Items (origins) in an origin group. 3301 */ 3302 Items: OriginGroupMemberList; 3303 } 3304 export interface OriginGroups { 3305 /** 3306 * The number of origin groups. 3307 */ 3308 Quantity: integer; 3309 /** 3310 * The items (origin groups) in a distribution. 3311 */ 3312 Items?: OriginGroupList; 3313 } 3314 export type OriginList = Origin[]; 3315 export type OriginProtocolPolicy = "http-only"|"match-viewer"|"https-only"|string; 3316 export interface OriginRequestPolicy { 3317 /** 3318 * The unique identifier for the origin request policy. 3319 */ 3320 Id: string; 3321 /** 3322 * The date and time when the origin request policy was last modified. 3323 */ 3324 LastModifiedTime: timestamp; 3325 /** 3326 * The origin request policy configuration. 3327 */ 3328 OriginRequestPolicyConfig: OriginRequestPolicyConfig; 3329 } 3330 export interface OriginRequestPolicyConfig { 3331 /** 3332 * A comment to describe the origin request policy. The comment cannot be longer than 128 characters. 3333 */ 3334 Comment?: string; 3335 /** 3336 * A unique name to identify the origin request policy. 3337 */ 3338 Name: string; 3339 /** 3340 * The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront. 3341 */ 3342 HeadersConfig: OriginRequestPolicyHeadersConfig; 3343 /** 3344 * The cookies from viewer requests to include in origin requests. 3345 */ 3346 CookiesConfig: OriginRequestPolicyCookiesConfig; 3347 /** 3348 * The URL query strings from viewer requests to include in origin requests. 3349 */ 3350 QueryStringsConfig: OriginRequestPolicyQueryStringsConfig; 3351 } 3352 export type OriginRequestPolicyCookieBehavior = "none"|"whitelist"|"all"|string; 3353 export interface OriginRequestPolicyCookiesConfig { 3354 /** 3355 * Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are: none – Cookies in viewer requests are not 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 – 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. 3356 */ 3357 CookieBehavior: OriginRequestPolicyCookieBehavior; 3358 Cookies?: CookieNames; 3359 } 3360 export type OriginRequestPolicyHeaderBehavior = "none"|"whitelist"|"allViewer"|"allViewerAndWhitelistCloudFront"|string; 3361 export interface OriginRequestPolicyHeadersConfig { 3362 /** 3363 * Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are: none – HTTP headers are not 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 – 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. 3364 */ 3365 HeaderBehavior: OriginRequestPolicyHeaderBehavior; 3366 Headers?: Headers; 3367 } 3368 export interface OriginRequestPolicyList { 3369 /** 3370 * 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. 3371 */ 3372 NextMarker?: string; 3373 /** 3374 * The maximum number of origin request policies requested. 3375 */ 3376 MaxItems: integer; 3377 /** 3378 * The total number of origin request policies returned in the response. 3379 */ 3380 Quantity: integer; 3381 /** 3382 * Contains the origin request policies in the list. 3383 */ 3384 Items?: OriginRequestPolicySummaryList; 3385 } 3386 export type OriginRequestPolicyQueryStringBehavior = "none"|"whitelist"|"all"|string; 3387 export interface OriginRequestPolicyQueryStringsConfig { 3388 /** 3389 * Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are: none – Query strings in viewer requests are not 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 – 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. 3390 */ 3391 QueryStringBehavior: OriginRequestPolicyQueryStringBehavior; 3392 /** 3393 * Contains a list of the query strings in viewer requests that are included in requests that CloudFront sends to the origin. 3394 */ 3395 QueryStrings?: QueryStringNames; 3396 } 3397 export interface OriginRequestPolicySummary { 3398 /** 3399 * The type of origin request policy, either managed (created by Amazon Web Services) or custom (created in this account). 3400 */ 3401 Type: OriginRequestPolicyType; 3402 /** 3403 * The origin request policy. 3404 */ 3405 OriginRequestPolicy: OriginRequestPolicy; 3406 } 3407 export type OriginRequestPolicySummaryList = OriginRequestPolicySummary[]; 3408 export type OriginRequestPolicyType = "managed"|"custom"|string; 3409 export interface OriginShield { 3410 /** 3411 * 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. 3412 */ 3413 Enabled: boolean; 3414 /** 3415 * The Region for Origin Shield. Specify the 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 Region for Origin Shield. For the list of Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Region for Origin Shield in the Amazon CloudFront Developer Guide. 3416 */ 3417 OriginShieldRegion?: OriginShieldRegion; 3418 } 3419 export type OriginShieldRegion = string; 3420 export interface OriginSslProtocols { 3421 /** 3422 * The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin. 3423 */ 3424 Quantity: integer; 3425 /** 3426 * A list that contains allowed SSL/TLS protocols for this distribution. 3427 */ 3428 Items: SslProtocolsList; 3429 } 3430 export interface Origins { 3431 /** 3432 * The number of origins for this distribution. 3433 */ 3434 Quantity: integer; 3435 /** 3436 * A list of origins. 3437 */ 3438 Items: OriginList; 3439 } 3440 export interface ParametersInCacheKeyAndForwardedToOrigin { 3441 /** 3442 * 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. 3443 */ 3444 EnableAcceptEncodingGzip: boolean; 3445 /** 3446 * 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. 3447 */ 3448 EnableAcceptEncodingBrotli?: boolean; 3449 /** 3450 * An object that determines whether any HTTP headers (and if so, which headers) are included in the cache key and automatically included in requests that CloudFront sends to the origin. 3451 */ 3452 HeadersConfig: CachePolicyHeadersConfig; 3453 /** 3454 * An object that determines whether any cookies in viewer requests (and if so, which cookies) are included in the cache key and automatically included in requests that CloudFront sends to the origin. 3455 */ 3456 CookiesConfig: CachePolicyCookiesConfig; 3457 /** 3458 * 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 automatically included in requests that CloudFront sends to the origin. 3459 */ 3460 QueryStringsConfig: CachePolicyQueryStringsConfig; 3461 } 3462 export type PathList = string[]; 3463 export interface Paths { 3464 /** 3465 * The number of invalidation paths specified for the objects that you want to invalidate. 3466 */ 3467 Quantity: integer; 3468 /** 3469 * A complex type that contains a list of the paths that you want to invalidate. 3470 */ 3471 Items?: PathList; 3472 } 3473 export type PriceClass = "PriceClass_100"|"PriceClass_200"|"PriceClass_All"|string; 3474 export interface PublicKey { 3475 /** 3476 * The identifier of the public key. 3477 */ 3478 Id: string; 3479 /** 3480 * The date and time when the public key was uploaded. 3481 */ 3482 CreatedTime: timestamp; 3483 /** 3484 * Configuration information about a public key that you can use with signed URLs and signed cookies, or with field-level encryption. 3485 */ 3486 PublicKeyConfig: PublicKeyConfig; 3487 } 3488 export interface PublicKeyConfig { 3489 /** 3490 * A string included in the request to help make sure that the request can’t be replayed. 3491 */ 3492 CallerReference: string; 3493 /** 3494 * A name to help identify the public key. 3495 */ 3496 Name: string; 3497 /** 3498 * The public key that you can use with signed URLs and signed cookies, or with field-level encryption. 3499 */ 3500 EncodedKey: string; 3501 /** 3502 * A comment to describe the public key. The comment cannot be longer than 128 characters. 3503 */ 3504 Comment?: string; 3505 } 3506 export type PublicKeyIdList = string[]; 3507 export interface PublicKeyList { 3508 /** 3509 * 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. 3510 */ 3511 NextMarker?: string; 3512 /** 3513 * The maximum number of public keys you want in the response. 3514 */ 3515 MaxItems: integer; 3516 /** 3517 * The number of public keys in the list. 3518 */ 3519 Quantity: integer; 3520 /** 3521 * A list of public keys. 3522 */ 3523 Items?: PublicKeySummaryList; 3524 } 3525 export interface PublicKeySummary { 3526 /** 3527 * The identifier of the public key. 3528 */ 3529 Id: string; 3530 /** 3531 * A name to help identify the public key. 3532 */ 3533 Name: string; 3534 /** 3535 * The date and time when the public key was uploaded. 3536 */ 3537 CreatedTime: timestamp; 3538 /** 3539 * The public key. 3540 */ 3541 EncodedKey: string; 3542 /** 3543 * A comment to describe the public key. The comment cannot be longer than 128 characters. 3544 */ 3545 Comment?: string; 3546 } 3547 export type PublicKeySummaryList = PublicKeySummary[]; 3548 export interface PublishFunctionRequest { 3549 /** 3550 * The name of the function that you are publishing. 3551 */ 3552 Name: string; 3553 /** 3554 * The current version (ETag value) of the function that you are publishing, which you can get using DescribeFunction. 3555 */ 3556 IfMatch: string; 3557 } 3558 export interface PublishFunctionResult { 3559 /** 3560 * Contains configuration information and metadata about a CloudFront function. 3561 */ 3562 FunctionSummary?: FunctionSummary; 3563 } 3564 export interface QueryArgProfile { 3565 /** 3566 * Query argument for field-level encryption query argument-profile mapping. 3567 */ 3568 QueryArg: string; 3569 /** 3570 * ID of profile to use for field-level encryption query argument-profile mapping 3571 */ 3572 ProfileId: string; 3573 } 3574 export interface QueryArgProfileConfig { 3575 /** 3576 * 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. 3577 */ 3578 ForwardWhenQueryArgProfileIsUnknown: boolean; 3579 /** 3580 * Profiles specified for query argument-profile mapping for field-level encryption. 3581 */ 3582 QueryArgProfiles?: QueryArgProfiles; 3583 } 3584 export type QueryArgProfileList = QueryArgProfile[]; 3585 export interface QueryArgProfiles { 3586 /** 3587 * Number of profiles for query argument-profile mapping for field-level encryption. 3588 */ 3589 Quantity: integer; 3590 /** 3591 * Number of items for query argument-profile mapping for field-level encryption. 3592 */ 3593 Items?: QueryArgProfileList; 3594 } 3595 export interface QueryStringCacheKeys { 3596 /** 3597 * The number of whitelisted query string parameters for a cache behavior. 3598 */ 3599 Quantity: integer; 3600 /** 3601 * 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. 3602 */ 3603 Items?: QueryStringCacheKeysList; 3604 } 3605 export type QueryStringCacheKeysList = string[]; 3606 export interface QueryStringNames { 3607 /** 3608 * The number of query string names in the Items list. 3609 */ 3610 Quantity: integer; 3611 /** 3612 * A list of query string names. 3613 */ 3614 Items?: QueryStringNamesList; 3615 } 3616 export type QueryStringNamesList = string[]; 3617 export interface RealtimeLogConfig { 3618 /** 3619 * The Amazon Resource Name (ARN) of this real-time log configuration. 3620 */ 3621 ARN: string; 3622 /** 3623 * The unique name of this real-time log configuration. 3624 */ 3625 Name: string; 3626 /** 3627 * 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. 3628 */ 3629 SamplingRate: long; 3630 /** 3631 * Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration. 3632 */ 3633 EndPoints: EndPointList; 3634 /** 3635 * 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. 3636 */ 3637 Fields: FieldList; 3638 } 3639 export type RealtimeLogConfigList = RealtimeLogConfig[]; 3640 export interface RealtimeLogConfigs { 3641 /** 3642 * The maximum number of real-time log configurations requested. 3643 */ 3644 MaxItems: integer; 3645 /** 3646 * Contains the list of real-time log configurations. 3647 */ 3648 Items?: RealtimeLogConfigList; 3649 /** 3650 * A flag that indicates whether there are more real-time log configurations than are contained in this list. 3651 */ 3652 IsTruncated: boolean; 3653 /** 3654 * This parameter indicates where this list of real-time log configurations begins. This list includes real-time log configurations that occur after the marker. 3655 */ 3656 Marker: string; 3657 /** 3658 * 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. 3659 */ 3660 NextMarker?: string; 3661 } 3662 export interface RealtimeMetricsSubscriptionConfig { 3663 /** 3664 * A flag that indicates whether additional CloudWatch metrics are enabled for a given CloudFront distribution. 3665 */ 3666 RealtimeMetricsSubscriptionStatus: RealtimeMetricsSubscriptionStatus; 3667 } 3668 export type RealtimeMetricsSubscriptionStatus = "Enabled"|"Disabled"|string; 3669 export type ResourceARN = string; 3670 export interface Restrictions { 3671 /** 3672 * A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases. 3673 */ 3674 GeoRestriction: GeoRestriction; 3675 } 3676 export interface S3Origin { 3677 /** 3678 * The DNS name of the Amazon S3 origin. 3679 */ 3680 DomainName: string; 3681 /** 3682 * 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. 3683 */ 3684 OriginAccessIdentity: string; 3685 } 3686 export interface S3OriginConfig { 3687 /** 3688 * 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. 3689 */ 3690 OriginAccessIdentity: string; 3691 } 3692 export type SSLSupportMethod = "sni-only"|"vip"|"static-ip"|string; 3693 export interface _Signer { 3694 /** 3695 * An account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self. 3696 */ 3697 AwsAccountNumber?: string; 3698 /** 3699 * A list of CloudFront key pair identifiers. 3700 */ 3701 KeyPairIds?: KeyPairIds; 3702 } 3703 export type SignerList = _Signer[]; 3704 export type SslProtocol = "SSLv3"|"TLSv1"|"TLSv1.1"|"TLSv1.2"|string; 3705 export type SslProtocolsList = SslProtocol[]; 3706 export type StatusCodeList = integer[]; 3707 export interface StatusCodes { 3708 /** 3709 * The number of status codes. 3710 */ 3711 Quantity: integer; 3712 /** 3713 * The items (status codes) for an origin group. 3714 */ 3715 Items: StatusCodeList; 3716 } 3717 export interface StreamingDistribution { 3718 /** 3719 * The identifier for the RTMP distribution. For example: EGTXBD79EXAMPLE. 3720 */ 3721 Id: string; 3722 /** 3723 * The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your account ID. 3724 */ 3725 ARN: string; 3726 /** 3727 * The current status of the RTMP distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations. 3728 */ 3729 Status: string; 3730 /** 3731 * The date and time that the distribution was last modified. 3732 */ 3733 LastModifiedTime?: timestamp; 3734 /** 3735 * The domain name that corresponds to the streaming distribution, for example, s5c39gqb8ow64r.cloudfront.net. 3736 */ 3737 DomainName: string; 3738 /** 3739 * A complex type that lists the 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 account number of the trusted signer or self if the signer is the 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 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. 3740 */ 3741 ActiveTrustedSigners: ActiveTrustedSigners; 3742 /** 3743 * The current configuration information for the RTMP distribution. 3744 */ 3745 StreamingDistributionConfig: StreamingDistributionConfig; 3746 } 3747 export interface StreamingDistributionConfig { 3748 /** 3749 * 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. 3750 */ 3751 CallerReference: string; 3752 /** 3753 * A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution. 3754 */ 3755 S3Origin: S3Origin; 3756 /** 3757 * A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution. 3758 */ 3759 Aliases?: Aliases; 3760 /** 3761 * Any comments you want to include about the streaming distribution. 3762 */ 3763 Comment: string; 3764 /** 3765 * A complex type that controls whether access logs are written for the streaming distribution. 3766 */ 3767 Logging?: StreamingLoggingConfig; 3768 /** 3769 * A complex type that specifies any 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. 3770 */ 3771 TrustedSigners: TrustedSigners; 3772 /** 3773 * A complex type that contains information about price class for this streaming distribution. 3774 */ 3775 PriceClass?: PriceClass; 3776 /** 3777 * Whether the streaming distribution is enabled to accept user requests for content. 3778 */ 3779 Enabled: boolean; 3780 } 3781 export interface StreamingDistributionConfigWithTags { 3782 /** 3783 * A streaming distribution Configuration. 3784 */ 3785 StreamingDistributionConfig: StreamingDistributionConfig; 3786 /** 3787 * A complex type that contains zero or more Tag elements. 3788 */ 3789 Tags: Tags; 3790 } 3791 export interface StreamingDistributionList { 3792 /** 3793 * The value you provided for the Marker request parameter. 3794 */ 3795 Marker: string; 3796 /** 3797 * 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. 3798 */ 3799 NextMarker?: string; 3800 /** 3801 * The value you provided for the MaxItems request parameter. 3802 */ 3803 MaxItems: integer; 3804 /** 3805 * 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. 3806 */ 3807 IsTruncated: boolean; 3808 /** 3809 * The number of streaming distributions that were created by the current account. 3810 */ 3811 Quantity: integer; 3812 /** 3813 * A complex type that contains one StreamingDistributionSummary element for each distribution that was created by the current account. 3814 */ 3815 Items?: StreamingDistributionSummaryList; 3816 } 3817 export interface StreamingDistributionSummary { 3818 /** 3819 * The identifier for the distribution, for example, EDFDVBD632BHDS5. 3820 */ 3821 Id: string; 3822 /** 3823 * The ARN (Amazon Resource Name) for the streaming distribution. For example: arn:aws:cloudfront::123456789012:streaming-distribution/EDFDVBD632BHDS5, where 123456789012 is your account ID. 3824 */ 3825 ARN: string; 3826 /** 3827 * Indicates the current status of the distribution. When the status is Deployed, the distribution's information is fully propagated throughout the Amazon CloudFront system. 3828 */ 3829 Status: string; 3830 /** 3831 * The date and time the distribution was last modified. 3832 */ 3833 LastModifiedTime: timestamp; 3834 /** 3835 * The domain name corresponding to the distribution, for example, d111111abcdef8.cloudfront.net. 3836 */ 3837 DomainName: string; 3838 /** 3839 * A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution. 3840 */ 3841 S3Origin: S3Origin; 3842 /** 3843 * A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution. 3844 */ 3845 Aliases: Aliases; 3846 /** 3847 * A complex type that specifies the 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. 3848 */ 3849 TrustedSigners: TrustedSigners; 3850 /** 3851 * The comment originally specified when this distribution was created. 3852 */ 3853 Comment: string; 3854 /** 3855 * A complex type that contains information about price class for this streaming distribution. 3856 */ 3857 PriceClass: PriceClass; 3858 /** 3859 * Whether the distribution is enabled to accept end user requests for content. 3860 */ 3861 Enabled: boolean; 3862 } 3863 export type StreamingDistributionSummaryList = StreamingDistributionSummary[]; 3864 export interface StreamingLoggingConfig { 3865 /** 3866 * 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. 3867 */ 3868 Enabled: boolean; 3869 /** 3870 * The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com. 3871 */ 3872 Bucket: string; 3873 /** 3874 * 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. 3875 */ 3876 Prefix: string; 3877 } 3878 export interface Tag { 3879 /** 3880 * 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 _ - . : / = + @. 3881 */ 3882 Key: TagKey; 3883 /** 3884 * 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 _ - . : / = + @. 3885 */ 3886 Value?: TagValue; 3887 } 3888 export type TagKey = string; 3889 export type TagKeyList = TagKey[]; 3890 export interface TagKeys { 3891 /** 3892 * A complex type that contains Tag key elements. 3893 */ 3894 Items?: TagKeyList; 3895 } 3896 export type TagList = Tag[]; 3897 export interface TagResourceRequest { 3898 /** 3899 * An ARN of a CloudFront resource. 3900 */ 3901 Resource: ResourceARN; 3902 /** 3903 * A complex type that contains zero or more Tag elements. 3904 */ 3905 Tags: Tags; 3906 } 3907 export type TagValue = string; 3908 export interface Tags { 3909 /** 3910 * A complex type that contains Tag elements. 3911 */ 3912 Items?: TagList; 3913 } 3914 export interface TestFunctionRequest { 3915 /** 3916 * The name of the function that you are testing. 3917 */ 3918 Name: string; 3919 /** 3920 * The current version (ETag value) of the function that you are testing, which you can get using DescribeFunction. 3921 */ 3922 IfMatch: string; 3923 /** 3924 * The stage of the function that you are testing, either DEVELOPMENT or LIVE. 3925 */ 3926 Stage?: FunctionStage; 3927 /** 3928 * 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. 3929 */ 3930 EventObject: FunctionEventObject; 3931 } 3932 export interface TestFunctionResult { 3933 /** 3934 * An object that represents the result of running the function with the provided event object. 3935 */ 3936 TestResult?: TestResult; 3937 } 3938 export interface TestResult { 3939 /** 3940 * Contains configuration information and metadata about the CloudFront function that was tested. 3941 */ 3942 FunctionSummary?: FunctionSummary; 3943 /** 3944 * 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. 3945 */ 3946 ComputeUtilization?: string; 3947 /** 3948 * Contains the log lines that the function wrote (if any) when running the test. 3949 */ 3950 FunctionExecutionLogs?: FunctionExecutionLogList; 3951 /** 3952 * If the result of testing the function was an error, this field contains the error message. 3953 */ 3954 FunctionErrorMessage?: string; 3955 /** 3956 * 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. 3957 */ 3958 FunctionOutput?: string; 3959 } 3960 export type TrustedKeyGroupIdList = string[]; 3961 export interface TrustedKeyGroups { 3962 /** 3963 * 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. 3964 */ 3965 Enabled: boolean; 3966 /** 3967 * The number of key groups in the list. 3968 */ 3969 Quantity: integer; 3970 /** 3971 * A list of key groups identifiers. 3972 */ 3973 Items?: TrustedKeyGroupIdList; 3974 } 3975 export interface TrustedSigners { 3976 /** 3977 * This field is true if any of the accounts have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false. 3978 */ 3979 Enabled: boolean; 3980 /** 3981 * The number of accounts in the list. 3982 */ 3983 Quantity: integer; 3984 /** 3985 * A list of account identifiers. 3986 */ 3987 Items?: AwsAccountNumberList; 3988 } 3989 export interface UntagResourceRequest { 3990 /** 3991 * An ARN of a CloudFront resource. 3992 */ 3993 Resource: ResourceARN; 3994 /** 3995 * A complex type that contains zero or more Tag key elements. 3996 */ 3997 TagKeys: TagKeys; 3998 } 3999 export interface UpdateCachePolicyRequest { 4000 /** 4001 * A cache policy configuration. 4002 */ 4003 CachePolicyConfig: CachePolicyConfig; 4004 /** 4005 * 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. 4006 */ 4007 Id: string; 4008 /** 4009 * 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. 4010 */ 4011 IfMatch?: string; 4012 } 4013 export interface UpdateCachePolicyResult { 4014 /** 4015 * A cache policy. 4016 */ 4017 CachePolicy?: CachePolicy; 4018 /** 4019 * The current version of the cache policy. 4020 */ 4021 ETag?: string; 4022 } 4023 export interface UpdateCloudFrontOriginAccessIdentityRequest { 4024 /** 4025 * The identity's configuration information. 4026 */ 4027 CloudFrontOriginAccessIdentityConfig: CloudFrontOriginAccessIdentityConfig; 4028 /** 4029 * The identity's id. 4030 */ 4031 Id: string; 4032 /** 4033 * The value of the ETag header that you received when retrieving the identity's configuration. For example: E2QWRUHAPOMQZL. 4034 */ 4035 IfMatch?: string; 4036 } 4037 export interface UpdateCloudFrontOriginAccessIdentityResult { 4038 /** 4039 * The origin access identity's information. 4040 */ 4041 CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity; 4042 /** 4043 * The current version of the configuration. For example: E2QWRUHAPOMQZL. 4044 */ 4045 ETag?: string; 4046 } 4047 export interface UpdateDistributionRequest { 4048 /** 4049 * The distribution's configuration information. 4050 */ 4051 DistributionConfig: DistributionConfig; 4052 /** 4053 * The distribution's id. 4054 */ 4055 Id: string; 4056 /** 4057 * The value of the ETag header that you received when retrieving the distribution's configuration. For example: E2QWRUHAPOMQZL. 4058 */ 4059 IfMatch?: string; 4060 } 4061 export interface UpdateDistributionResult { 4062 /** 4063 * The distribution's information. 4064 */ 4065 Distribution?: Distribution; 4066 /** 4067 * The current version of the configuration. For example: E2QWRUHAPOMQZL. 4068 */ 4069 ETag?: string; 4070 } 4071 export interface UpdateFieldLevelEncryptionConfigRequest { 4072 /** 4073 * Request to update a field-level encryption configuration. 4074 */ 4075 FieldLevelEncryptionConfig: FieldLevelEncryptionConfig; 4076 /** 4077 * The ID of the configuration you want to update. 4078 */ 4079 Id: string; 4080 /** 4081 * The value of the ETag header that you received when retrieving the configuration identity to update. For example: E2QWRUHAPOMQZL. 4082 */ 4083 IfMatch?: string; 4084 } 4085 export interface UpdateFieldLevelEncryptionConfigResult { 4086 /** 4087 * Return the results of updating the configuration. 4088 */ 4089 FieldLevelEncryption?: FieldLevelEncryption; 4090 /** 4091 * The value of the ETag header that you received when updating the configuration. For example: E2QWRUHAPOMQZL. 4092 */ 4093 ETag?: string; 4094 } 4095 export interface UpdateFieldLevelEncryptionProfileRequest { 4096 /** 4097 * Request to update a field-level encryption profile. 4098 */ 4099 FieldLevelEncryptionProfileConfig: FieldLevelEncryptionProfileConfig; 4100 /** 4101 * The ID of the field-level encryption profile request. 4102 */ 4103 Id: string; 4104 /** 4105 * The value of the ETag header that you received when retrieving the profile identity to update. For example: E2QWRUHAPOMQZL. 4106 */ 4107 IfMatch?: string; 4108 } 4109 export interface UpdateFieldLevelEncryptionProfileResult { 4110 /** 4111 * Return the results of updating the profile. 4112 */ 4113 FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile; 4114 /** 4115 * The result of the field-level encryption profile request. 4116 */ 4117 ETag?: string; 4118 } 4119 export interface UpdateFunctionRequest { 4120 /** 4121 * The name of the function that you are updating. 4122 */ 4123 Name: string; 4124 /** 4125 * The current version (ETag value) of the function that you are updating, which you can get using DescribeFunction. 4126 */ 4127 IfMatch: string; 4128 /** 4129 * Configuration information about the function. 4130 */ 4131 FunctionConfig: FunctionConfig; 4132 /** 4133 * The function code. For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide. 4134 */ 4135 FunctionCode: FunctionBlob; 4136 } 4137 export interface UpdateFunctionResult { 4138 /** 4139 * Contains configuration information and metadata about a CloudFront function. 4140 */ 4141 FunctionSummary?: FunctionSummary; 4142 /** 4143 * The version identifier for the current version of the CloudFront function. 4144 */ 4145 ETag?: string; 4146 } 4147 export interface UpdateKeyGroupRequest { 4148 /** 4149 * The key group configuration. 4150 */ 4151 KeyGroupConfig: KeyGroupConfig; 4152 /** 4153 * The identifier of the key group that you are updating. 4154 */ 4155 Id: string; 4156 /** 4157 * The version of the key group that you are updating. The version is the key group’s ETag value. 4158 */ 4159 IfMatch?: string; 4160 } 4161 export interface UpdateKeyGroupResult { 4162 /** 4163 * The key group that was just updated. 4164 */ 4165 KeyGroup?: KeyGroup; 4166 /** 4167 * The identifier for this version of the key group. 4168 */ 4169 ETag?: string; 4170 } 4171 export interface UpdateOriginRequestPolicyRequest { 4172 /** 4173 * An origin request policy configuration. 4174 */ 4175 OriginRequestPolicyConfig: OriginRequestPolicyConfig; 4176 /** 4177 * 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. 4178 */ 4179 Id: string; 4180 /** 4181 * 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. 4182 */ 4183 IfMatch?: string; 4184 } 4185 export interface UpdateOriginRequestPolicyResult { 4186 /** 4187 * An origin request policy. 4188 */ 4189 OriginRequestPolicy?: OriginRequestPolicy; 4190 /** 4191 * The current version of the origin request policy. 4192 */ 4193 ETag?: string; 4194 } 4195 export interface UpdatePublicKeyRequest { 4196 /** 4197 * A public key configuration. 4198 */ 4199 PublicKeyConfig: PublicKeyConfig; 4200 /** 4201 * The identifier of the public key that you are updating. 4202 */ 4203 Id: string; 4204 /** 4205 * The value of the ETag header that you received when retrieving the public key to update. For example: E2QWRUHAPOMQZL. 4206 */ 4207 IfMatch?: string; 4208 } 4209 export interface UpdatePublicKeyResult { 4210 /** 4211 * The public key. 4212 */ 4213 PublicKey?: PublicKey; 4214 /** 4215 * The identifier of the current version of the public key. 4216 */ 4217 ETag?: string; 4218 } 4219 export interface UpdateRealtimeLogConfigRequest { 4220 /** 4221 * Contains information about the Amazon Kinesis data stream where you are sending real-time log data. 4222 */ 4223 EndPoints?: EndPointList; 4224 /** 4225 * 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. 4226 */ 4227 Fields?: FieldList; 4228 /** 4229 * The name for this real-time log configuration. 4230 */ 4231 Name?: string; 4232 /** 4233 * The Amazon Resource Name (ARN) for this real-time log configuration. 4234 */ 4235 ARN?: string; 4236 /** 4237 * 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. 4238 */ 4239 SamplingRate?: long; 4240 } 4241 export interface UpdateRealtimeLogConfigResult { 4242 /** 4243 * A real-time log configuration. 4244 */ 4245 RealtimeLogConfig?: RealtimeLogConfig; 4246 } 4247 export interface UpdateStreamingDistributionRequest { 4248 /** 4249 * The streaming distribution's configuration information. 4250 */ 4251 StreamingDistributionConfig: StreamingDistributionConfig; 4252 /** 4253 * The streaming distribution's id. 4254 */ 4255 Id: string; 4256 /** 4257 * The value of the ETag header that you received when retrieving the streaming distribution's configuration. For example: E2QWRUHAPOMQZL. 4258 */ 4259 IfMatch?: string; 4260 } 4261 export interface UpdateStreamingDistributionResult { 4262 /** 4263 * The streaming distribution's information. 4264 */ 4265 StreamingDistribution?: StreamingDistribution; 4266 /** 4267 * The current version of the configuration. For example: E2QWRUHAPOMQZL. 4268 */ 4269 ETag?: string; 4270 } 4271 export interface ViewerCertificate { 4272 /** 4273 * 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 4274 */ 4275 CloudFrontDefaultCertificate?: boolean; 4276 /** 4277 * 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. 4278 */ 4279 IAMCertificateId?: string; 4280 /** 4281 * 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. 4282 */ 4283 ACMCertificateArn?: string; 4284 /** 4285 * 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. 4286 */ 4287 SSLSupportMethod?: SSLSupportMethod; 4288 /** 4289 * 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. 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. 4290 */ 4291 MinimumProtocolVersion?: MinimumProtocolVersion; 4292 /** 4293 * This field is deprecated. Use one of the following fields instead: ACMCertificateArn IAMCertificateId CloudFrontDefaultCertificate 4294 */ 4295 Certificate?: string; 4296 /** 4297 * This field is deprecated. Use one of the following fields instead: ACMCertificateArn IAMCertificateId CloudFrontDefaultCertificate 4298 */ 4299 CertificateSource?: CertificateSource; 4300 } 4301 export type ViewerProtocolPolicy = "allow-all"|"https-only"|"redirect-to-https"|string; 4302 export type aliasString = string; 4303 export type distributionIdString = string; 4304 export type integer = number; 4305 export type listConflictingAliasesMaxItemsInteger = number; 4306 export type long = number; 4307 export type timestamp = Date; 4308 /** 4309 * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version. 4310 */ 4311 export type apiVersion = "2013-05-12"|"2013-11-11"|"2014-05-31"|"2014-10-21"|"2014-11-06"|"2015-04-17"|"2015-07-27"|"2015-09-17"|"2016-01-13"|"2016-01-28"|"2016-08-01"|"2016-08-20"|"2016-09-07"|"2016-09-29"|"2016-11-25"|"2016-11-25"|"2017-03-25"|"2017-03-25"|"2017-10-30"|"2017-10-30"|"2018-06-18"|"2018-06-18"|"2018-11-05"|"2018-11-05"|"2019-03-26"|"2019-03-26"|"2020-05-31"|"latest"|string; 4312 export interface ClientApiVersions { 4313 /** 4314 * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version. 4315 */ 4316 apiVersion?: apiVersion; 4317 } 4318 export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions; 4319 /** 4320 * Contains interfaces for use with the CloudFront client. 4321 */ 4322 export import Types = CloudFront; 4323 } 4324 export = CloudFront;