@aws-sdk/client-cloudfront 3.312.0 → 3.316.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/CloudFront.js +110 -1484
- package/dist-cjs/protocols/Aws_restXml.js +417 -523
- package/dist-es/CloudFront.js +110 -1484
- package/dist-es/protocols/Aws_restXml.js +108 -214
- package/dist-types/CloudFront.d.ts +118 -793
- package/dist-types/ts3.4/CloudFront.d.ts +4 -1
- package/package.json +6 -6
|
@@ -106,1326 +106,651 @@ import { UpdatePublicKeyCommandInput, UpdatePublicKeyCommandOutput } from "./com
|
|
|
106
106
|
import { UpdateRealtimeLogConfigCommandInput, UpdateRealtimeLogConfigCommandOutput } from "./commands/UpdateRealtimeLogConfigCommand";
|
|
107
107
|
import { UpdateResponseHeadersPolicyCommandInput, UpdateResponseHeadersPolicyCommandOutput } from "./commands/UpdateResponseHeadersPolicyCommand";
|
|
108
108
|
import { UpdateStreamingDistributionCommandInput, UpdateStreamingDistributionCommandOutput } from "./commands/UpdateStreamingDistributionCommand";
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
* <p>This is the <i>Amazon CloudFront API Reference</i>. This guide is for developers
|
|
113
|
-
* who need detailed information about CloudFront API actions, data types, and errors. For
|
|
114
|
-
* detailed information about CloudFront features, see the
|
|
115
|
-
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
116
|
-
*/
|
|
117
|
-
export declare class CloudFront extends CloudFrontClient {
|
|
118
|
-
/**
|
|
119
|
-
* @public
|
|
120
|
-
* <p>Associates an alias (also known as a CNAME or an alternate domain name) with a CloudFront
|
|
121
|
-
* distribution.</p>
|
|
122
|
-
* <p>With this operation you can move an alias that's already in use on a CloudFront distribution
|
|
123
|
-
* to a different distribution in one step. This prevents the downtime that could occur if
|
|
124
|
-
* you first remove the alias from one distribution and then separately add the alias to
|
|
125
|
-
* another distribution.</p>
|
|
126
|
-
* <p>To use this operation to associate an alias with a distribution, you provide the alias
|
|
127
|
-
* and the ID of the target distribution for the alias. For more information, including how
|
|
128
|
-
* to set up the target distribution, prerequisites that you must complete, and other
|
|
129
|
-
* restrictions, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html#alternate-domain-names-move">Moving an alternate domain name to a different
|
|
130
|
-
* distribution</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
109
|
+
export interface CloudFront {
|
|
110
|
+
/**
|
|
111
|
+
* @see {@link AssociateAliasCommand}
|
|
131
112
|
*/
|
|
132
113
|
associateAlias(args: AssociateAliasCommandInput, options?: __HttpHandlerOptions): Promise<AssociateAliasCommandOutput>;
|
|
133
114
|
associateAlias(args: AssociateAliasCommandInput, cb: (err: any, data?: AssociateAliasCommandOutput) => void): void;
|
|
134
115
|
associateAlias(args: AssociateAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAliasCommandOutput) => void): void;
|
|
135
116
|
/**
|
|
136
|
-
* @
|
|
137
|
-
* <p>Creates a staging distribution using the configuration of the provided primary
|
|
138
|
-
* distribution. A staging distribution is a copy of an existing distribution (called the
|
|
139
|
-
* primary distribution) that you can use in a continuous deployment workflow.</p>
|
|
140
|
-
* <p>After you create a staging distribution, you can use <code>UpdateDistribution</code>
|
|
141
|
-
* to modify the staging distribution's configuration. Then you can use
|
|
142
|
-
* <code>CreateContinuousDeploymentPolicy</code> to incrementally move traffic to the
|
|
143
|
-
* staging distribution.</p>
|
|
117
|
+
* @see {@link CopyDistributionCommand}
|
|
144
118
|
*/
|
|
145
119
|
copyDistribution(args: CopyDistributionCommandInput, options?: __HttpHandlerOptions): Promise<CopyDistributionCommandOutput>;
|
|
146
120
|
copyDistribution(args: CopyDistributionCommandInput, cb: (err: any, data?: CopyDistributionCommandOutput) => void): void;
|
|
147
121
|
copyDistribution(args: CopyDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyDistributionCommandOutput) => void): void;
|
|
148
122
|
/**
|
|
149
|
-
* @
|
|
150
|
-
* <p>Creates a cache policy.</p>
|
|
151
|
-
* <p>After you create a cache policy, you can attach it to one or more cache behaviors.
|
|
152
|
-
* When it's attached to a cache behavior, the cache policy determines the
|
|
153
|
-
* following:</p>
|
|
154
|
-
* <ul>
|
|
155
|
-
* <li>
|
|
156
|
-
* <p>The values that CloudFront includes in the <i>cache key</i>. These
|
|
157
|
-
* values can include HTTP headers, cookies, and URL query strings. CloudFront uses the
|
|
158
|
-
* cache key to find an object in its cache that it can return to the
|
|
159
|
-
* viewer.</p>
|
|
160
|
-
* </li>
|
|
161
|
-
* <li>
|
|
162
|
-
* <p>The default, minimum, and maximum time to live (TTL) values that you want
|
|
163
|
-
* objects to stay in the CloudFront cache.</p>
|
|
164
|
-
* </li>
|
|
165
|
-
* </ul>
|
|
166
|
-
* <p>The headers, cookies, and query strings that are included in the cache key are also included
|
|
167
|
-
* in requests that CloudFront sends to the origin. CloudFront sends a request when it can't find an
|
|
168
|
-
* object in its cache that matches the request's cache key. If you want to send values to
|
|
169
|
-
* the origin but <i>not</i> include them in the cache key, use
|
|
170
|
-
* <code>OriginRequestPolicy</code>.</p>
|
|
171
|
-
* <p>For more information about cache policies, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html">Controlling the cache key</a> in the
|
|
172
|
-
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
123
|
+
* @see {@link CreateCachePolicyCommand}
|
|
173
124
|
*/
|
|
174
125
|
createCachePolicy(args: CreateCachePolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateCachePolicyCommandOutput>;
|
|
175
126
|
createCachePolicy(args: CreateCachePolicyCommandInput, cb: (err: any, data?: CreateCachePolicyCommandOutput) => void): void;
|
|
176
127
|
createCachePolicy(args: CreateCachePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCachePolicyCommandOutput) => void): void;
|
|
177
128
|
/**
|
|
178
|
-
* @
|
|
179
|
-
* <p>Creates a new origin access identity. If you're using Amazon S3 for your origin, you can
|
|
180
|
-
* use an origin access identity to require users to access your content using a CloudFront URL
|
|
181
|
-
* instead of the Amazon S3 URL. For more information about how to use origin access identities,
|
|
182
|
-
* see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html">Serving Private
|
|
183
|
-
* Content through CloudFront</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
129
|
+
* @see {@link CreateCloudFrontOriginAccessIdentityCommand}
|
|
184
130
|
*/
|
|
185
131
|
createCloudFrontOriginAccessIdentity(args: CreateCloudFrontOriginAccessIdentityCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudFrontOriginAccessIdentityCommandOutput>;
|
|
186
132
|
createCloudFrontOriginAccessIdentity(args: CreateCloudFrontOriginAccessIdentityCommandInput, cb: (err: any, data?: CreateCloudFrontOriginAccessIdentityCommandOutput) => void): void;
|
|
187
133
|
createCloudFrontOriginAccessIdentity(args: CreateCloudFrontOriginAccessIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudFrontOriginAccessIdentityCommandOutput) => void): void;
|
|
188
134
|
/**
|
|
189
|
-
* @
|
|
190
|
-
* <p>Creates a continuous deployment policy that distributes traffic for a custom domain
|
|
191
|
-
* name to two different CloudFront distributions.</p>
|
|
192
|
-
* <p>To use a continuous deployment policy, first use <code>CopyDistribution</code> to
|
|
193
|
-
* create a staging distribution, then use <code>UpdateDistribution</code> to modify the
|
|
194
|
-
* staging distribution's configuration.</p>
|
|
195
|
-
* <p>After you create and update a staging distribution, you can use a continuous
|
|
196
|
-
* deployment policy to incrementally move traffic to the staging distribution. This
|
|
197
|
-
* workflow enables you to test changes to a distribution's configuration before moving all
|
|
198
|
-
* of your domain's production traffic to the new configuration.</p>
|
|
135
|
+
* @see {@link CreateContinuousDeploymentPolicyCommand}
|
|
199
136
|
*/
|
|
200
137
|
createContinuousDeploymentPolicy(args: CreateContinuousDeploymentPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateContinuousDeploymentPolicyCommandOutput>;
|
|
201
138
|
createContinuousDeploymentPolicy(args: CreateContinuousDeploymentPolicyCommandInput, cb: (err: any, data?: CreateContinuousDeploymentPolicyCommandOutput) => void): void;
|
|
202
139
|
createContinuousDeploymentPolicy(args: CreateContinuousDeploymentPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContinuousDeploymentPolicyCommandOutput) => void): void;
|
|
203
140
|
/**
|
|
204
|
-
* @
|
|
205
|
-
* <p>Creates a CloudFront distribution.</p>
|
|
141
|
+
* @see {@link CreateDistributionCommand}
|
|
206
142
|
*/
|
|
207
143
|
createDistribution(args: CreateDistributionCommandInput, options?: __HttpHandlerOptions): Promise<CreateDistributionCommandOutput>;
|
|
208
144
|
createDistribution(args: CreateDistributionCommandInput, cb: (err: any, data?: CreateDistributionCommandOutput) => void): void;
|
|
209
145
|
createDistribution(args: CreateDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDistributionCommandOutput) => void): void;
|
|
210
146
|
/**
|
|
211
|
-
* @
|
|
212
|
-
* <p>Create a new distribution with tags.</p>
|
|
147
|
+
* @see {@link CreateDistributionWithTagsCommand}
|
|
213
148
|
*/
|
|
214
149
|
createDistributionWithTags(args: CreateDistributionWithTagsCommandInput, options?: __HttpHandlerOptions): Promise<CreateDistributionWithTagsCommandOutput>;
|
|
215
150
|
createDistributionWithTags(args: CreateDistributionWithTagsCommandInput, cb: (err: any, data?: CreateDistributionWithTagsCommandOutput) => void): void;
|
|
216
151
|
createDistributionWithTags(args: CreateDistributionWithTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDistributionWithTagsCommandOutput) => void): void;
|
|
217
152
|
/**
|
|
218
|
-
* @
|
|
219
|
-
* <p>Create a new field-level encryption configuration.</p>
|
|
153
|
+
* @see {@link CreateFieldLevelEncryptionConfigCommand}
|
|
220
154
|
*/
|
|
221
155
|
createFieldLevelEncryptionConfig(args: CreateFieldLevelEncryptionConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateFieldLevelEncryptionConfigCommandOutput>;
|
|
222
156
|
createFieldLevelEncryptionConfig(args: CreateFieldLevelEncryptionConfigCommandInput, cb: (err: any, data?: CreateFieldLevelEncryptionConfigCommandOutput) => void): void;
|
|
223
157
|
createFieldLevelEncryptionConfig(args: CreateFieldLevelEncryptionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFieldLevelEncryptionConfigCommandOutput) => void): void;
|
|
224
158
|
/**
|
|
225
|
-
* @
|
|
226
|
-
* <p>Create a field-level encryption profile.</p>
|
|
159
|
+
* @see {@link CreateFieldLevelEncryptionProfileCommand}
|
|
227
160
|
*/
|
|
228
161
|
createFieldLevelEncryptionProfile(args: CreateFieldLevelEncryptionProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateFieldLevelEncryptionProfileCommandOutput>;
|
|
229
162
|
createFieldLevelEncryptionProfile(args: CreateFieldLevelEncryptionProfileCommandInput, cb: (err: any, data?: CreateFieldLevelEncryptionProfileCommandOutput) => void): void;
|
|
230
163
|
createFieldLevelEncryptionProfile(args: CreateFieldLevelEncryptionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFieldLevelEncryptionProfileCommandOutput) => void): void;
|
|
231
164
|
/**
|
|
232
|
-
* @
|
|
233
|
-
* <p>Creates a CloudFront function.</p>
|
|
234
|
-
* <p>To create a function, you provide the function code and some configuration information
|
|
235
|
-
* about the function. The response contains an Amazon Resource Name (ARN) that uniquely
|
|
236
|
-
* identifies the function.</p>
|
|
237
|
-
* <p>When you create a function, it's in the <code>DEVELOPMENT</code> stage. In this stage,
|
|
238
|
-
* you can test the function with <code>TestFunction</code>, and update it with
|
|
239
|
-
* <code>UpdateFunction</code>.</p>
|
|
240
|
-
* <p>When you're ready to use your function with a CloudFront distribution, use
|
|
241
|
-
* <code>PublishFunction</code> to copy the function from the <code>DEVELOPMENT</code>
|
|
242
|
-
* stage to <code>LIVE</code>. When it's live, you can attach the function to a
|
|
243
|
-
* distribution's cache behavior, using the function's ARN.</p>
|
|
165
|
+
* @see {@link CreateFunctionCommand}
|
|
244
166
|
*/
|
|
245
167
|
createFunction(args: CreateFunctionCommandInput, options?: __HttpHandlerOptions): Promise<CreateFunctionCommandOutput>;
|
|
246
168
|
createFunction(args: CreateFunctionCommandInput, cb: (err: any, data?: CreateFunctionCommandOutput) => void): void;
|
|
247
169
|
createFunction(args: CreateFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFunctionCommandOutput) => void): void;
|
|
248
170
|
/**
|
|
249
|
-
* @
|
|
250
|
-
* <p>Create a new invalidation.</p>
|
|
171
|
+
* @see {@link CreateInvalidationCommand}
|
|
251
172
|
*/
|
|
252
173
|
createInvalidation(args: CreateInvalidationCommandInput, options?: __HttpHandlerOptions): Promise<CreateInvalidationCommandOutput>;
|
|
253
174
|
createInvalidation(args: CreateInvalidationCommandInput, cb: (err: any, data?: CreateInvalidationCommandOutput) => void): void;
|
|
254
175
|
createInvalidation(args: CreateInvalidationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInvalidationCommandOutput) => void): void;
|
|
255
176
|
/**
|
|
256
|
-
* @
|
|
257
|
-
* <p>Creates a key group that you can use with <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html">CloudFront signed URLs and signed cookies</a>.</p>
|
|
258
|
-
* <p>To create a key group, you must specify at least one public key for the key group.
|
|
259
|
-
* After you create a key group, you can reference it from one or more cache behaviors.
|
|
260
|
-
* When you reference a key group in a cache behavior, CloudFront requires signed URLs or signed
|
|
261
|
-
* cookies for all requests that match the cache behavior. The URLs or cookies must be
|
|
262
|
-
* signed with a private key whose corresponding public key is in the key group. The signed
|
|
263
|
-
* URL or cookie contains information about which public key CloudFront should use to verify the
|
|
264
|
-
* signature. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html">Serving private content</a> in the
|
|
265
|
-
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
177
|
+
* @see {@link CreateKeyGroupCommand}
|
|
266
178
|
*/
|
|
267
179
|
createKeyGroup(args: CreateKeyGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateKeyGroupCommandOutput>;
|
|
268
180
|
createKeyGroup(args: CreateKeyGroupCommandInput, cb: (err: any, data?: CreateKeyGroupCommandOutput) => void): void;
|
|
269
181
|
createKeyGroup(args: CreateKeyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKeyGroupCommandOutput) => void): void;
|
|
270
182
|
/**
|
|
271
|
-
* @
|
|
272
|
-
* <p>Enables additional CloudWatch metrics for the specified CloudFront distribution. The
|
|
273
|
-
* additional metrics incur an additional cost.</p>
|
|
274
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/viewing-cloudfront-metrics.html#monitoring-console.distributions-additional">Viewing additional CloudFront distribution metrics</a> in
|
|
275
|
-
* the <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
183
|
+
* @see {@link CreateMonitoringSubscriptionCommand}
|
|
276
184
|
*/
|
|
277
185
|
createMonitoringSubscription(args: CreateMonitoringSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<CreateMonitoringSubscriptionCommandOutput>;
|
|
278
186
|
createMonitoringSubscription(args: CreateMonitoringSubscriptionCommandInput, cb: (err: any, data?: CreateMonitoringSubscriptionCommandOutput) => void): void;
|
|
279
187
|
createMonitoringSubscription(args: CreateMonitoringSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMonitoringSubscriptionCommandOutput) => void): void;
|
|
280
188
|
/**
|
|
281
|
-
* @
|
|
282
|
-
* <p>Creates a new origin access control in CloudFront. After you create an origin access
|
|
283
|
-
* control, you can add it to an origin in a CloudFront distribution so that CloudFront sends
|
|
284
|
-
* authenticated (signed) requests to the origin.</p>
|
|
285
|
-
* <p>This makes it possible to block public access to the origin, allowing viewers (users) to
|
|
286
|
-
* access the origin's content only through CloudFront.</p>
|
|
287
|
-
* <p>For more information about using a CloudFront origin access control, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-origin.html">Restricting access to an Amazon Web Services origin</a> in the
|
|
288
|
-
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
189
|
+
* @see {@link CreateOriginAccessControlCommand}
|
|
289
190
|
*/
|
|
290
191
|
createOriginAccessControl(args: CreateOriginAccessControlCommandInput, options?: __HttpHandlerOptions): Promise<CreateOriginAccessControlCommandOutput>;
|
|
291
192
|
createOriginAccessControl(args: CreateOriginAccessControlCommandInput, cb: (err: any, data?: CreateOriginAccessControlCommandOutput) => void): void;
|
|
292
193
|
createOriginAccessControl(args: CreateOriginAccessControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOriginAccessControlCommandOutput) => void): void;
|
|
293
194
|
/**
|
|
294
|
-
* @
|
|
295
|
-
* <p>Creates an origin request policy.</p>
|
|
296
|
-
* <p>After you create an origin request policy, you can attach it to one or more cache
|
|
297
|
-
* behaviors. When it's attached to a cache behavior, the origin request policy determines
|
|
298
|
-
* the values that CloudFront includes in requests that it sends to the origin. Each request that
|
|
299
|
-
* CloudFront sends to the origin includes the following:</p>
|
|
300
|
-
* <ul>
|
|
301
|
-
* <li>
|
|
302
|
-
* <p>The request body and the URL path (without the domain name) from the viewer
|
|
303
|
-
* request.</p>
|
|
304
|
-
* </li>
|
|
305
|
-
* <li>
|
|
306
|
-
* <p>The headers that CloudFront automatically includes in every origin request,
|
|
307
|
-
* including <code>Host</code>, <code>User-Agent</code>, and
|
|
308
|
-
* <code>X-Amz-Cf-Id</code>.</p>
|
|
309
|
-
* </li>
|
|
310
|
-
* <li>
|
|
311
|
-
* <p>All HTTP headers, cookies, and URL query strings that are specified in the
|
|
312
|
-
* cache policy or the origin request policy. These can include items from the
|
|
313
|
-
* viewer request and, in the case of headers, additional ones that are added by
|
|
314
|
-
* CloudFront.</p>
|
|
315
|
-
* </li>
|
|
316
|
-
* </ul>
|
|
317
|
-
* <p>CloudFront sends a request when it can't find a valid object in its cache that matches the
|
|
318
|
-
* request. If you want to send values to the origin and also include them in the cache
|
|
319
|
-
* key, use <code>CachePolicy</code>.</p>
|
|
320
|
-
* <p>For more information about origin request policies, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html">Controlling origin requests</a> in the
|
|
321
|
-
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
195
|
+
* @see {@link CreateOriginRequestPolicyCommand}
|
|
322
196
|
*/
|
|
323
197
|
createOriginRequestPolicy(args: CreateOriginRequestPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateOriginRequestPolicyCommandOutput>;
|
|
324
198
|
createOriginRequestPolicy(args: CreateOriginRequestPolicyCommandInput, cb: (err: any, data?: CreateOriginRequestPolicyCommandOutput) => void): void;
|
|
325
199
|
createOriginRequestPolicy(args: CreateOriginRequestPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOriginRequestPolicyCommandOutput) => void): void;
|
|
326
200
|
/**
|
|
327
|
-
* @
|
|
328
|
-
* <p>Uploads a public key to CloudFront that you can use with <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html">signed URLs and signed cookies</a>, or with <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html">field-level encryption</a>.</p>
|
|
201
|
+
* @see {@link CreatePublicKeyCommand}
|
|
329
202
|
*/
|
|
330
203
|
createPublicKey(args: CreatePublicKeyCommandInput, options?: __HttpHandlerOptions): Promise<CreatePublicKeyCommandOutput>;
|
|
331
204
|
createPublicKey(args: CreatePublicKeyCommandInput, cb: (err: any, data?: CreatePublicKeyCommandOutput) => void): void;
|
|
332
205
|
createPublicKey(args: CreatePublicKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePublicKeyCommandOutput) => void): void;
|
|
333
206
|
/**
|
|
334
|
-
* @
|
|
335
|
-
* <p>Creates a real-time log configuration.</p>
|
|
336
|
-
* <p>After you create a real-time log configuration, you can attach it to one or more cache
|
|
337
|
-
* behaviors to send real-time log data to the specified Amazon Kinesis data stream.</p>
|
|
338
|
-
* <p>For more information about real-time log configurations, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html">Real-time logs</a> in the
|
|
339
|
-
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
207
|
+
* @see {@link CreateRealtimeLogConfigCommand}
|
|
340
208
|
*/
|
|
341
209
|
createRealtimeLogConfig(args: CreateRealtimeLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateRealtimeLogConfigCommandOutput>;
|
|
342
210
|
createRealtimeLogConfig(args: CreateRealtimeLogConfigCommandInput, cb: (err: any, data?: CreateRealtimeLogConfigCommandOutput) => void): void;
|
|
343
211
|
createRealtimeLogConfig(args: CreateRealtimeLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRealtimeLogConfigCommandOutput) => void): void;
|
|
344
212
|
/**
|
|
345
|
-
* @
|
|
346
|
-
* <p>Creates a response headers policy.</p>
|
|
347
|
-
* <p>A response headers policy contains information about a set of HTTP headers. To create a
|
|
348
|
-
* response headers policy, you provide some metadata about the policy and a set of
|
|
349
|
-
* configurations that specify the headers.</p>
|
|
350
|
-
* <p>After you create a response headers policy, you can use its ID to attach it to one or more
|
|
351
|
-
* cache behaviors in a CloudFront distribution. When it's attached to a cache behavior, the
|
|
352
|
-
* response headers policy affects the HTTP headers that CloudFront includes in HTTP responses to
|
|
353
|
-
* requests that match the cache behavior. CloudFront adds or removes response headers according
|
|
354
|
-
* to the configuration of the response headers policy.</p>
|
|
355
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/modifying-response-headers.html">Adding or removing HTTP headers in CloudFront responses</a> in the
|
|
356
|
-
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
213
|
+
* @see {@link CreateResponseHeadersPolicyCommand}
|
|
357
214
|
*/
|
|
358
215
|
createResponseHeadersPolicy(args: CreateResponseHeadersPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateResponseHeadersPolicyCommandOutput>;
|
|
359
216
|
createResponseHeadersPolicy(args: CreateResponseHeadersPolicyCommandInput, cb: (err: any, data?: CreateResponseHeadersPolicyCommandOutput) => void): void;
|
|
360
217
|
createResponseHeadersPolicy(args: CreateResponseHeadersPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResponseHeadersPolicyCommandOutput) => void): void;
|
|
361
218
|
/**
|
|
362
|
-
* @
|
|
363
|
-
* <p>This API is deprecated. Amazon CloudFront is deprecating real-time messaging protocol (RTMP)
|
|
364
|
-
* distributions on December 31, 2020. For more information, <a href="http://forums.aws.amazon.com/ann.jspa?annID=7356">read the announcement</a> on the Amazon CloudFront discussion
|
|
365
|
-
* forum.</p>
|
|
219
|
+
* @see {@link CreateStreamingDistributionCommand}
|
|
366
220
|
*/
|
|
367
221
|
createStreamingDistribution(args: CreateStreamingDistributionCommandInput, options?: __HttpHandlerOptions): Promise<CreateStreamingDistributionCommandOutput>;
|
|
368
222
|
createStreamingDistribution(args: CreateStreamingDistributionCommandInput, cb: (err: any, data?: CreateStreamingDistributionCommandOutput) => void): void;
|
|
369
223
|
createStreamingDistribution(args: CreateStreamingDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStreamingDistributionCommandOutput) => void): void;
|
|
370
224
|
/**
|
|
371
|
-
* @
|
|
372
|
-
* <p>This API is deprecated. Amazon CloudFront is deprecating real-time messaging protocol (RTMP)
|
|
373
|
-
* distributions on December 31, 2020. For more information, <a href="http://forums.aws.amazon.com/ann.jspa?annID=7356">read the announcement</a> on the Amazon CloudFront discussion
|
|
374
|
-
* forum.</p>
|
|
225
|
+
* @see {@link CreateStreamingDistributionWithTagsCommand}
|
|
375
226
|
*/
|
|
376
227
|
createStreamingDistributionWithTags(args: CreateStreamingDistributionWithTagsCommandInput, options?: __HttpHandlerOptions): Promise<CreateStreamingDistributionWithTagsCommandOutput>;
|
|
377
228
|
createStreamingDistributionWithTags(args: CreateStreamingDistributionWithTagsCommandInput, cb: (err: any, data?: CreateStreamingDistributionWithTagsCommandOutput) => void): void;
|
|
378
229
|
createStreamingDistributionWithTags(args: CreateStreamingDistributionWithTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStreamingDistributionWithTagsCommandOutput) => void): void;
|
|
379
230
|
/**
|
|
380
|
-
* @
|
|
381
|
-
* <p>Deletes a cache policy.</p>
|
|
382
|
-
* <p>You cannot delete a cache policy if it's attached to a cache behavior. First update
|
|
383
|
-
* your distributions to remove the cache policy from all cache behaviors, then delete the
|
|
384
|
-
* cache policy.</p>
|
|
385
|
-
* <p>To delete a cache policy, you must provide the policy's identifier and version. To get
|
|
386
|
-
* these values, you can use <code>ListCachePolicies</code> or
|
|
387
|
-
* <code>GetCachePolicy</code>.</p>
|
|
231
|
+
* @see {@link DeleteCachePolicyCommand}
|
|
388
232
|
*/
|
|
389
233
|
deleteCachePolicy(args: DeleteCachePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCachePolicyCommandOutput>;
|
|
390
234
|
deleteCachePolicy(args: DeleteCachePolicyCommandInput, cb: (err: any, data?: DeleteCachePolicyCommandOutput) => void): void;
|
|
391
235
|
deleteCachePolicy(args: DeleteCachePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCachePolicyCommandOutput) => void): void;
|
|
392
236
|
/**
|
|
393
|
-
* @
|
|
394
|
-
* <p>Delete an origin access identity.</p>
|
|
237
|
+
* @see {@link DeleteCloudFrontOriginAccessIdentityCommand}
|
|
395
238
|
*/
|
|
396
239
|
deleteCloudFrontOriginAccessIdentity(args: DeleteCloudFrontOriginAccessIdentityCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCloudFrontOriginAccessIdentityCommandOutput>;
|
|
397
240
|
deleteCloudFrontOriginAccessIdentity(args: DeleteCloudFrontOriginAccessIdentityCommandInput, cb: (err: any, data?: DeleteCloudFrontOriginAccessIdentityCommandOutput) => void): void;
|
|
398
241
|
deleteCloudFrontOriginAccessIdentity(args: DeleteCloudFrontOriginAccessIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCloudFrontOriginAccessIdentityCommandOutput) => void): void;
|
|
399
242
|
/**
|
|
400
|
-
* @
|
|
401
|
-
* <p>Deletes a continuous deployment policy.</p>
|
|
402
|
-
* <p>You cannot delete a continuous deployment policy that's attached to a primary
|
|
403
|
-
* distribution. First update your distribution to remove the continuous deployment policy,
|
|
404
|
-
* then you can delete the policy.</p>
|
|
243
|
+
* @see {@link DeleteContinuousDeploymentPolicyCommand}
|
|
405
244
|
*/
|
|
406
245
|
deleteContinuousDeploymentPolicy(args: DeleteContinuousDeploymentPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContinuousDeploymentPolicyCommandOutput>;
|
|
407
246
|
deleteContinuousDeploymentPolicy(args: DeleteContinuousDeploymentPolicyCommandInput, cb: (err: any, data?: DeleteContinuousDeploymentPolicyCommandOutput) => void): void;
|
|
408
247
|
deleteContinuousDeploymentPolicy(args: DeleteContinuousDeploymentPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContinuousDeploymentPolicyCommandOutput) => void): void;
|
|
409
248
|
/**
|
|
410
|
-
* @
|
|
411
|
-
* <p>Delete a distribution.</p>
|
|
249
|
+
* @see {@link DeleteDistributionCommand}
|
|
412
250
|
*/
|
|
413
251
|
deleteDistribution(args: DeleteDistributionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDistributionCommandOutput>;
|
|
414
252
|
deleteDistribution(args: DeleteDistributionCommandInput, cb: (err: any, data?: DeleteDistributionCommandOutput) => void): void;
|
|
415
253
|
deleteDistribution(args: DeleteDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDistributionCommandOutput) => void): void;
|
|
416
254
|
/**
|
|
417
|
-
* @
|
|
418
|
-
* <p>Remove a field-level encryption configuration.</p>
|
|
255
|
+
* @see {@link DeleteFieldLevelEncryptionConfigCommand}
|
|
419
256
|
*/
|
|
420
257
|
deleteFieldLevelEncryptionConfig(args: DeleteFieldLevelEncryptionConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFieldLevelEncryptionConfigCommandOutput>;
|
|
421
258
|
deleteFieldLevelEncryptionConfig(args: DeleteFieldLevelEncryptionConfigCommandInput, cb: (err: any, data?: DeleteFieldLevelEncryptionConfigCommandOutput) => void): void;
|
|
422
259
|
deleteFieldLevelEncryptionConfig(args: DeleteFieldLevelEncryptionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFieldLevelEncryptionConfigCommandOutput) => void): void;
|
|
423
260
|
/**
|
|
424
|
-
* @
|
|
425
|
-
* <p>Remove a field-level encryption profile.</p>
|
|
261
|
+
* @see {@link DeleteFieldLevelEncryptionProfileCommand}
|
|
426
262
|
*/
|
|
427
263
|
deleteFieldLevelEncryptionProfile(args: DeleteFieldLevelEncryptionProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFieldLevelEncryptionProfileCommandOutput>;
|
|
428
264
|
deleteFieldLevelEncryptionProfile(args: DeleteFieldLevelEncryptionProfileCommandInput, cb: (err: any, data?: DeleteFieldLevelEncryptionProfileCommandOutput) => void): void;
|
|
429
265
|
deleteFieldLevelEncryptionProfile(args: DeleteFieldLevelEncryptionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFieldLevelEncryptionProfileCommandOutput) => void): void;
|
|
430
266
|
/**
|
|
431
|
-
* @
|
|
432
|
-
* <p>Deletes a CloudFront function.</p>
|
|
433
|
-
* <p>You cannot delete a function if it's associated with a cache behavior. First, update
|
|
434
|
-
* your distributions to remove the function association from all cache behaviors, then
|
|
435
|
-
* delete the function.</p>
|
|
436
|
-
* <p>To delete a function, you must provide the function's name and version
|
|
437
|
-
* (<code>ETag</code> value). To get these values, you can use
|
|
438
|
-
* <code>ListFunctions</code> and <code>DescribeFunction</code>.</p>
|
|
267
|
+
* @see {@link DeleteFunctionCommand}
|
|
439
268
|
*/
|
|
440
269
|
deleteFunction(args: DeleteFunctionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFunctionCommandOutput>;
|
|
441
270
|
deleteFunction(args: DeleteFunctionCommandInput, cb: (err: any, data?: DeleteFunctionCommandOutput) => void): void;
|
|
442
271
|
deleteFunction(args: DeleteFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFunctionCommandOutput) => void): void;
|
|
443
272
|
/**
|
|
444
|
-
* @
|
|
445
|
-
* <p>Deletes a key group.</p>
|
|
446
|
-
* <p>You cannot delete a key group that is referenced in a cache behavior. First update
|
|
447
|
-
* your distributions to remove the key group from all cache behaviors, then delete the key
|
|
448
|
-
* group.</p>
|
|
449
|
-
* <p>To delete a key group, you must provide the key group's identifier and version. To get
|
|
450
|
-
* these values, use <code>ListKeyGroups</code> followed by <code>GetKeyGroup</code> or
|
|
451
|
-
* <code>GetKeyGroupConfig</code>.</p>
|
|
273
|
+
* @see {@link DeleteKeyGroupCommand}
|
|
452
274
|
*/
|
|
453
275
|
deleteKeyGroup(args: DeleteKeyGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteKeyGroupCommandOutput>;
|
|
454
276
|
deleteKeyGroup(args: DeleteKeyGroupCommandInput, cb: (err: any, data?: DeleteKeyGroupCommandOutput) => void): void;
|
|
455
277
|
deleteKeyGroup(args: DeleteKeyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKeyGroupCommandOutput) => void): void;
|
|
456
278
|
/**
|
|
457
|
-
* @
|
|
458
|
-
* <p>Disables additional CloudWatch metrics for the specified CloudFront
|
|
459
|
-
* distribution.</p>
|
|
279
|
+
* @see {@link DeleteMonitoringSubscriptionCommand}
|
|
460
280
|
*/
|
|
461
281
|
deleteMonitoringSubscription(args: DeleteMonitoringSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMonitoringSubscriptionCommandOutput>;
|
|
462
282
|
deleteMonitoringSubscription(args: DeleteMonitoringSubscriptionCommandInput, cb: (err: any, data?: DeleteMonitoringSubscriptionCommandOutput) => void): void;
|
|
463
283
|
deleteMonitoringSubscription(args: DeleteMonitoringSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMonitoringSubscriptionCommandOutput) => void): void;
|
|
464
284
|
/**
|
|
465
|
-
* @
|
|
466
|
-
* <p>Deletes a CloudFront origin access control.</p>
|
|
467
|
-
* <p>You cannot delete an origin access control if it's in use. First, update all
|
|
468
|
-
* distributions to remove the origin access control from all origins, then delete the
|
|
469
|
-
* origin access control.</p>
|
|
285
|
+
* @see {@link DeleteOriginAccessControlCommand}
|
|
470
286
|
*/
|
|
471
287
|
deleteOriginAccessControl(args: DeleteOriginAccessControlCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOriginAccessControlCommandOutput>;
|
|
472
288
|
deleteOriginAccessControl(args: DeleteOriginAccessControlCommandInput, cb: (err: any, data?: DeleteOriginAccessControlCommandOutput) => void): void;
|
|
473
289
|
deleteOriginAccessControl(args: DeleteOriginAccessControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOriginAccessControlCommandOutput) => void): void;
|
|
474
290
|
/**
|
|
475
|
-
* @
|
|
476
|
-
* <p>Deletes an origin request policy.</p>
|
|
477
|
-
* <p>You cannot delete an origin request policy if it's attached to any cache behaviors.
|
|
478
|
-
* First update your distributions to remove the origin request policy from all cache
|
|
479
|
-
* behaviors, then delete the origin request policy.</p>
|
|
480
|
-
* <p>To delete an origin request policy, you must provide the policy's identifier and
|
|
481
|
-
* version. To get the identifier, you can use <code>ListOriginRequestPolicies</code> or
|
|
482
|
-
* <code>GetOriginRequestPolicy</code>.</p>
|
|
291
|
+
* @see {@link DeleteOriginRequestPolicyCommand}
|
|
483
292
|
*/
|
|
484
293
|
deleteOriginRequestPolicy(args: DeleteOriginRequestPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOriginRequestPolicyCommandOutput>;
|
|
485
294
|
deleteOriginRequestPolicy(args: DeleteOriginRequestPolicyCommandInput, cb: (err: any, data?: DeleteOriginRequestPolicyCommandOutput) => void): void;
|
|
486
295
|
deleteOriginRequestPolicy(args: DeleteOriginRequestPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOriginRequestPolicyCommandOutput) => void): void;
|
|
487
296
|
/**
|
|
488
|
-
* @
|
|
489
|
-
* <p>Remove a public key you previously added to CloudFront.</p>
|
|
297
|
+
* @see {@link DeletePublicKeyCommand}
|
|
490
298
|
*/
|
|
491
299
|
deletePublicKey(args: DeletePublicKeyCommandInput, options?: __HttpHandlerOptions): Promise<DeletePublicKeyCommandOutput>;
|
|
492
300
|
deletePublicKey(args: DeletePublicKeyCommandInput, cb: (err: any, data?: DeletePublicKeyCommandOutput) => void): void;
|
|
493
301
|
deletePublicKey(args: DeletePublicKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePublicKeyCommandOutput) => void): void;
|
|
494
302
|
/**
|
|
495
|
-
* @
|
|
496
|
-
* <p>Deletes a real-time log configuration.</p>
|
|
497
|
-
* <p>You cannot delete a real-time log configuration if it's attached to a cache behavior.
|
|
498
|
-
* First update your distributions to remove the real-time log configuration from all cache
|
|
499
|
-
* behaviors, then delete the real-time log configuration.</p>
|
|
500
|
-
* <p>To delete a real-time log configuration, you can provide the configuration's name or
|
|
501
|
-
* its Amazon Resource Name (ARN). You must provide at least one. If you provide both, CloudFront
|
|
502
|
-
* uses the name to identify the real-time log configuration to delete.</p>
|
|
303
|
+
* @see {@link DeleteRealtimeLogConfigCommand}
|
|
503
304
|
*/
|
|
504
305
|
deleteRealtimeLogConfig(args: DeleteRealtimeLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRealtimeLogConfigCommandOutput>;
|
|
505
306
|
deleteRealtimeLogConfig(args: DeleteRealtimeLogConfigCommandInput, cb: (err: any, data?: DeleteRealtimeLogConfigCommandOutput) => void): void;
|
|
506
307
|
deleteRealtimeLogConfig(args: DeleteRealtimeLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRealtimeLogConfigCommandOutput) => void): void;
|
|
507
308
|
/**
|
|
508
|
-
* @
|
|
509
|
-
* <p>Deletes a response headers policy.</p>
|
|
510
|
-
* <p>You cannot delete a response headers policy if it's attached to a cache behavior.
|
|
511
|
-
* First update your distributions to remove the response headers policy from all cache
|
|
512
|
-
* behaviors, then delete the response headers policy.</p>
|
|
513
|
-
* <p>To delete a response headers policy, you must provide the policy's identifier and
|
|
514
|
-
* version. To get these values, you can use <code>ListResponseHeadersPolicies</code> or
|
|
515
|
-
* <code>GetResponseHeadersPolicy</code>.</p>
|
|
309
|
+
* @see {@link DeleteResponseHeadersPolicyCommand}
|
|
516
310
|
*/
|
|
517
311
|
deleteResponseHeadersPolicy(args: DeleteResponseHeadersPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResponseHeadersPolicyCommandOutput>;
|
|
518
312
|
deleteResponseHeadersPolicy(args: DeleteResponseHeadersPolicyCommandInput, cb: (err: any, data?: DeleteResponseHeadersPolicyCommandOutput) => void): void;
|
|
519
313
|
deleteResponseHeadersPolicy(args: DeleteResponseHeadersPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResponseHeadersPolicyCommandOutput) => void): void;
|
|
520
314
|
/**
|
|
521
|
-
* @
|
|
522
|
-
* <p>Delete a streaming distribution. To delete an RTMP distribution using the CloudFront API,
|
|
523
|
-
* perform the following steps.</p>
|
|
524
|
-
* <p>
|
|
525
|
-
* <b>To delete an RTMP distribution using the CloudFront
|
|
526
|
-
* API</b>:</p>
|
|
527
|
-
* <ol>
|
|
528
|
-
* <li>
|
|
529
|
-
* <p>Disable the RTMP distribution.</p>
|
|
530
|
-
* </li>
|
|
531
|
-
* <li>
|
|
532
|
-
* <p>Submit a <code>GET Streaming Distribution Config</code> request to get the
|
|
533
|
-
* current configuration and the <code>Etag</code> header for the distribution.
|
|
534
|
-
* </p>
|
|
535
|
-
* </li>
|
|
536
|
-
* <li>
|
|
537
|
-
* <p>Update the XML document that was returned in the response to your <code>GET
|
|
538
|
-
* Streaming Distribution Config</code> request to change the value of
|
|
539
|
-
* <code>Enabled</code> to <code>false</code>.</p>
|
|
540
|
-
* </li>
|
|
541
|
-
* <li>
|
|
542
|
-
* <p>Submit a <code>PUT Streaming Distribution Config</code> request to update the
|
|
543
|
-
* configuration for your distribution. In the request body, include the XML
|
|
544
|
-
* document that you updated in Step 3. Then set the value of the HTTP
|
|
545
|
-
* <code>If-Match</code> header to the value of the <code>ETag</code> header
|
|
546
|
-
* that CloudFront returned when you submitted the <code>GET Streaming Distribution
|
|
547
|
-
* Config</code> request in Step 2.</p>
|
|
548
|
-
* </li>
|
|
549
|
-
* <li>
|
|
550
|
-
* <p>Review the response to the <code>PUT Streaming Distribution Config</code>
|
|
551
|
-
* request to confirm that the distribution was successfully disabled.</p>
|
|
552
|
-
* </li>
|
|
553
|
-
* <li>
|
|
554
|
-
* <p>Submit a <code>GET Streaming Distribution Config</code> request to confirm
|
|
555
|
-
* that your changes have propagated. When propagation is complete, the value of
|
|
556
|
-
* <code>Status</code> is <code>Deployed</code>.</p>
|
|
557
|
-
* </li>
|
|
558
|
-
* <li>
|
|
559
|
-
* <p>Submit a <code>DELETE Streaming Distribution</code> request. Set the value of
|
|
560
|
-
* the HTTP <code>If-Match</code> header to the value of the <code>ETag</code>
|
|
561
|
-
* header that CloudFront returned when you submitted the <code>GET Streaming
|
|
562
|
-
* Distribution Config</code> request in Step 2.</p>
|
|
563
|
-
* </li>
|
|
564
|
-
* <li>
|
|
565
|
-
* <p>Review the response to your <code>DELETE Streaming Distribution</code> request
|
|
566
|
-
* to confirm that the distribution was successfully deleted.</p>
|
|
567
|
-
* </li>
|
|
568
|
-
* </ol>
|
|
569
|
-
* <p>For information about deleting a distribution using the CloudFront console, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/HowToDeleteDistribution.html">Deleting a
|
|
570
|
-
* Distribution</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
315
|
+
* @see {@link DeleteStreamingDistributionCommand}
|
|
571
316
|
*/
|
|
572
317
|
deleteStreamingDistribution(args: DeleteStreamingDistributionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStreamingDistributionCommandOutput>;
|
|
573
318
|
deleteStreamingDistribution(args: DeleteStreamingDistributionCommandInput, cb: (err: any, data?: DeleteStreamingDistributionCommandOutput) => void): void;
|
|
574
319
|
deleteStreamingDistribution(args: DeleteStreamingDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStreamingDistributionCommandOutput) => void): void;
|
|
575
320
|
/**
|
|
576
|
-
* @
|
|
577
|
-
* <p>Gets configuration information and metadata about a CloudFront function, but not the
|
|
578
|
-
* function's code. To get a function's code, use <code>GetFunction</code>.</p>
|
|
579
|
-
* <p>To get configuration information and metadata about a function, you must provide the
|
|
580
|
-
* function's name and stage. To get these values, you can use
|
|
581
|
-
* <code>ListFunctions</code>.</p>
|
|
321
|
+
* @see {@link DescribeFunctionCommand}
|
|
582
322
|
*/
|
|
583
323
|
describeFunction(args: DescribeFunctionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFunctionCommandOutput>;
|
|
584
324
|
describeFunction(args: DescribeFunctionCommandInput, cb: (err: any, data?: DescribeFunctionCommandOutput) => void): void;
|
|
585
325
|
describeFunction(args: DescribeFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFunctionCommandOutput) => void): void;
|
|
586
326
|
/**
|
|
587
|
-
* @
|
|
588
|
-
* <p>Gets a cache policy, including the following metadata:</p>
|
|
589
|
-
* <ul>
|
|
590
|
-
* <li>
|
|
591
|
-
* <p>The policy's identifier.</p>
|
|
592
|
-
* </li>
|
|
593
|
-
* <li>
|
|
594
|
-
* <p>The date and time when the policy was last modified.</p>
|
|
595
|
-
* </li>
|
|
596
|
-
* </ul>
|
|
597
|
-
* <p>To get a cache policy, you must provide the policy's identifier. If the cache policy
|
|
598
|
-
* is attached to a distribution's cache behavior, you can get the policy's identifier
|
|
599
|
-
* using <code>ListDistributions</code> or <code>GetDistribution</code>. If the cache
|
|
600
|
-
* policy is not attached to a cache behavior, you can get the identifier using
|
|
601
|
-
* <code>ListCachePolicies</code>.</p>
|
|
327
|
+
* @see {@link GetCachePolicyCommand}
|
|
602
328
|
*/
|
|
603
329
|
getCachePolicy(args: GetCachePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetCachePolicyCommandOutput>;
|
|
604
330
|
getCachePolicy(args: GetCachePolicyCommandInput, cb: (err: any, data?: GetCachePolicyCommandOutput) => void): void;
|
|
605
331
|
getCachePolicy(args: GetCachePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCachePolicyCommandOutput) => void): void;
|
|
606
332
|
/**
|
|
607
|
-
* @
|
|
608
|
-
* <p>Gets a cache policy configuration.</p>
|
|
609
|
-
* <p>To get a cache policy configuration, you must provide the policy's identifier. If the
|
|
610
|
-
* cache policy is attached to a distribution's cache behavior, you can get the policy's
|
|
611
|
-
* identifier using <code>ListDistributions</code> or <code>GetDistribution</code>. If the
|
|
612
|
-
* cache policy is not attached to a cache behavior, you can get the identifier using
|
|
613
|
-
* <code>ListCachePolicies</code>.</p>
|
|
333
|
+
* @see {@link GetCachePolicyConfigCommand}
|
|
614
334
|
*/
|
|
615
335
|
getCachePolicyConfig(args: GetCachePolicyConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetCachePolicyConfigCommandOutput>;
|
|
616
336
|
getCachePolicyConfig(args: GetCachePolicyConfigCommandInput, cb: (err: any, data?: GetCachePolicyConfigCommandOutput) => void): void;
|
|
617
337
|
getCachePolicyConfig(args: GetCachePolicyConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCachePolicyConfigCommandOutput) => void): void;
|
|
618
338
|
/**
|
|
619
|
-
* @
|
|
620
|
-
* <p>Get the information about an origin access identity.</p>
|
|
339
|
+
* @see {@link GetCloudFrontOriginAccessIdentityCommand}
|
|
621
340
|
*/
|
|
622
341
|
getCloudFrontOriginAccessIdentity(args: GetCloudFrontOriginAccessIdentityCommandInput, options?: __HttpHandlerOptions): Promise<GetCloudFrontOriginAccessIdentityCommandOutput>;
|
|
623
342
|
getCloudFrontOriginAccessIdentity(args: GetCloudFrontOriginAccessIdentityCommandInput, cb: (err: any, data?: GetCloudFrontOriginAccessIdentityCommandOutput) => void): void;
|
|
624
343
|
getCloudFrontOriginAccessIdentity(args: GetCloudFrontOriginAccessIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCloudFrontOriginAccessIdentityCommandOutput) => void): void;
|
|
625
344
|
/**
|
|
626
|
-
* @
|
|
627
|
-
* <p>Get the configuration information about an origin access identity.</p>
|
|
345
|
+
* @see {@link GetCloudFrontOriginAccessIdentityConfigCommand}
|
|
628
346
|
*/
|
|
629
347
|
getCloudFrontOriginAccessIdentityConfig(args: GetCloudFrontOriginAccessIdentityConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetCloudFrontOriginAccessIdentityConfigCommandOutput>;
|
|
630
348
|
getCloudFrontOriginAccessIdentityConfig(args: GetCloudFrontOriginAccessIdentityConfigCommandInput, cb: (err: any, data?: GetCloudFrontOriginAccessIdentityConfigCommandOutput) => void): void;
|
|
631
349
|
getCloudFrontOriginAccessIdentityConfig(args: GetCloudFrontOriginAccessIdentityConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCloudFrontOriginAccessIdentityConfigCommandOutput) => void): void;
|
|
632
350
|
/**
|
|
633
|
-
* @
|
|
634
|
-
* <p>Gets a continuous deployment policy, including metadata (the policy's identifier and
|
|
635
|
-
* the date and time when the policy was last modified).</p>
|
|
351
|
+
* @see {@link GetContinuousDeploymentPolicyCommand}
|
|
636
352
|
*/
|
|
637
353
|
getContinuousDeploymentPolicy(args: GetContinuousDeploymentPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetContinuousDeploymentPolicyCommandOutput>;
|
|
638
354
|
getContinuousDeploymentPolicy(args: GetContinuousDeploymentPolicyCommandInput, cb: (err: any, data?: GetContinuousDeploymentPolicyCommandOutput) => void): void;
|
|
639
355
|
getContinuousDeploymentPolicy(args: GetContinuousDeploymentPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContinuousDeploymentPolicyCommandOutput) => void): void;
|
|
640
356
|
/**
|
|
641
|
-
* @
|
|
642
|
-
* <p>Gets configuration information about a continuous deployment policy.</p>
|
|
357
|
+
* @see {@link GetContinuousDeploymentPolicyConfigCommand}
|
|
643
358
|
*/
|
|
644
359
|
getContinuousDeploymentPolicyConfig(args: GetContinuousDeploymentPolicyConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetContinuousDeploymentPolicyConfigCommandOutput>;
|
|
645
360
|
getContinuousDeploymentPolicyConfig(args: GetContinuousDeploymentPolicyConfigCommandInput, cb: (err: any, data?: GetContinuousDeploymentPolicyConfigCommandOutput) => void): void;
|
|
646
361
|
getContinuousDeploymentPolicyConfig(args: GetContinuousDeploymentPolicyConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContinuousDeploymentPolicyConfigCommandOutput) => void): void;
|
|
647
362
|
/**
|
|
648
|
-
* @
|
|
649
|
-
* <p>Get the information about a distribution.</p>
|
|
363
|
+
* @see {@link GetDistributionCommand}
|
|
650
364
|
*/
|
|
651
365
|
getDistribution(args: GetDistributionCommandInput, options?: __HttpHandlerOptions): Promise<GetDistributionCommandOutput>;
|
|
652
366
|
getDistribution(args: GetDistributionCommandInput, cb: (err: any, data?: GetDistributionCommandOutput) => void): void;
|
|
653
367
|
getDistribution(args: GetDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDistributionCommandOutput) => void): void;
|
|
654
368
|
/**
|
|
655
|
-
* @
|
|
656
|
-
* <p>Get the configuration information about a distribution.</p>
|
|
369
|
+
* @see {@link GetDistributionConfigCommand}
|
|
657
370
|
*/
|
|
658
371
|
getDistributionConfig(args: GetDistributionConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetDistributionConfigCommandOutput>;
|
|
659
372
|
getDistributionConfig(args: GetDistributionConfigCommandInput, cb: (err: any, data?: GetDistributionConfigCommandOutput) => void): void;
|
|
660
373
|
getDistributionConfig(args: GetDistributionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDistributionConfigCommandOutput) => void): void;
|
|
661
374
|
/**
|
|
662
|
-
* @
|
|
663
|
-
* <p>Get the field-level encryption configuration information.</p>
|
|
375
|
+
* @see {@link GetFieldLevelEncryptionCommand}
|
|
664
376
|
*/
|
|
665
377
|
getFieldLevelEncryption(args: GetFieldLevelEncryptionCommandInput, options?: __HttpHandlerOptions): Promise<GetFieldLevelEncryptionCommandOutput>;
|
|
666
378
|
getFieldLevelEncryption(args: GetFieldLevelEncryptionCommandInput, cb: (err: any, data?: GetFieldLevelEncryptionCommandOutput) => void): void;
|
|
667
379
|
getFieldLevelEncryption(args: GetFieldLevelEncryptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFieldLevelEncryptionCommandOutput) => void): void;
|
|
668
380
|
/**
|
|
669
|
-
* @
|
|
670
|
-
* <p>Get the field-level encryption configuration information.</p>
|
|
381
|
+
* @see {@link GetFieldLevelEncryptionConfigCommand}
|
|
671
382
|
*/
|
|
672
383
|
getFieldLevelEncryptionConfig(args: GetFieldLevelEncryptionConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetFieldLevelEncryptionConfigCommandOutput>;
|
|
673
384
|
getFieldLevelEncryptionConfig(args: GetFieldLevelEncryptionConfigCommandInput, cb: (err: any, data?: GetFieldLevelEncryptionConfigCommandOutput) => void): void;
|
|
674
385
|
getFieldLevelEncryptionConfig(args: GetFieldLevelEncryptionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFieldLevelEncryptionConfigCommandOutput) => void): void;
|
|
675
386
|
/**
|
|
676
|
-
* @
|
|
677
|
-
* <p>Get the field-level encryption profile information.</p>
|
|
387
|
+
* @see {@link GetFieldLevelEncryptionProfileCommand}
|
|
678
388
|
*/
|
|
679
389
|
getFieldLevelEncryptionProfile(args: GetFieldLevelEncryptionProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetFieldLevelEncryptionProfileCommandOutput>;
|
|
680
390
|
getFieldLevelEncryptionProfile(args: GetFieldLevelEncryptionProfileCommandInput, cb: (err: any, data?: GetFieldLevelEncryptionProfileCommandOutput) => void): void;
|
|
681
391
|
getFieldLevelEncryptionProfile(args: GetFieldLevelEncryptionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFieldLevelEncryptionProfileCommandOutput) => void): void;
|
|
682
392
|
/**
|
|
683
|
-
* @
|
|
684
|
-
* <p>Get the field-level encryption profile configuration information.</p>
|
|
393
|
+
* @see {@link GetFieldLevelEncryptionProfileConfigCommand}
|
|
685
394
|
*/
|
|
686
395
|
getFieldLevelEncryptionProfileConfig(args: GetFieldLevelEncryptionProfileConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetFieldLevelEncryptionProfileConfigCommandOutput>;
|
|
687
396
|
getFieldLevelEncryptionProfileConfig(args: GetFieldLevelEncryptionProfileConfigCommandInput, cb: (err: any, data?: GetFieldLevelEncryptionProfileConfigCommandOutput) => void): void;
|
|
688
397
|
getFieldLevelEncryptionProfileConfig(args: GetFieldLevelEncryptionProfileConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFieldLevelEncryptionProfileConfigCommandOutput) => void): void;
|
|
689
398
|
/**
|
|
690
|
-
* @
|
|
691
|
-
* <p>Gets the code of a CloudFront function. To get configuration information and metadata about
|
|
692
|
-
* a function, use <code>DescribeFunction</code>.</p>
|
|
693
|
-
* <p>To get a function's code, you must provide the function's name and stage. To get these
|
|
694
|
-
* values, you can use <code>ListFunctions</code>.</p>
|
|
399
|
+
* @see {@link GetFunctionCommand}
|
|
695
400
|
*/
|
|
696
401
|
getFunction(args: GetFunctionCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionCommandOutput>;
|
|
697
402
|
getFunction(args: GetFunctionCommandInput, cb: (err: any, data?: GetFunctionCommandOutput) => void): void;
|
|
698
403
|
getFunction(args: GetFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionCommandOutput) => void): void;
|
|
699
404
|
/**
|
|
700
|
-
* @
|
|
701
|
-
* <p>Get the information about an invalidation.</p>
|
|
405
|
+
* @see {@link GetInvalidationCommand}
|
|
702
406
|
*/
|
|
703
407
|
getInvalidation(args: GetInvalidationCommandInput, options?: __HttpHandlerOptions): Promise<GetInvalidationCommandOutput>;
|
|
704
408
|
getInvalidation(args: GetInvalidationCommandInput, cb: (err: any, data?: GetInvalidationCommandOutput) => void): void;
|
|
705
409
|
getInvalidation(args: GetInvalidationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInvalidationCommandOutput) => void): void;
|
|
706
410
|
/**
|
|
707
|
-
* @
|
|
708
|
-
* <p>Gets a key group, including the date and time when the key group was last
|
|
709
|
-
* modified.</p>
|
|
710
|
-
* <p>To get a key group, you must provide the key group's identifier. If the key group is
|
|
711
|
-
* referenced in a distribution's cache behavior, you can get the key group's identifier
|
|
712
|
-
* using <code>ListDistributions</code> or <code>GetDistribution</code>. If the key group
|
|
713
|
-
* is not referenced in a cache behavior, you can get the identifier using
|
|
714
|
-
* <code>ListKeyGroups</code>.</p>
|
|
411
|
+
* @see {@link GetKeyGroupCommand}
|
|
715
412
|
*/
|
|
716
413
|
getKeyGroup(args: GetKeyGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetKeyGroupCommandOutput>;
|
|
717
414
|
getKeyGroup(args: GetKeyGroupCommandInput, cb: (err: any, data?: GetKeyGroupCommandOutput) => void): void;
|
|
718
415
|
getKeyGroup(args: GetKeyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetKeyGroupCommandOutput) => void): void;
|
|
719
416
|
/**
|
|
720
|
-
* @
|
|
721
|
-
* <p>Gets a key group configuration.</p>
|
|
722
|
-
* <p>To get a key group configuration, you must provide the key group's identifier. If the
|
|
723
|
-
* key group is referenced in a distribution's cache behavior, you can get the key group's
|
|
724
|
-
* identifier using <code>ListDistributions</code> or <code>GetDistribution</code>. If the
|
|
725
|
-
* key group is not referenced in a cache behavior, you can get the identifier using
|
|
726
|
-
* <code>ListKeyGroups</code>.</p>
|
|
417
|
+
* @see {@link GetKeyGroupConfigCommand}
|
|
727
418
|
*/
|
|
728
419
|
getKeyGroupConfig(args: GetKeyGroupConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetKeyGroupConfigCommandOutput>;
|
|
729
420
|
getKeyGroupConfig(args: GetKeyGroupConfigCommandInput, cb: (err: any, data?: GetKeyGroupConfigCommandOutput) => void): void;
|
|
730
421
|
getKeyGroupConfig(args: GetKeyGroupConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetKeyGroupConfigCommandOutput) => void): void;
|
|
731
422
|
/**
|
|
732
|
-
* @
|
|
733
|
-
* <p>Gets information about whether additional CloudWatch metrics are enabled for the
|
|
734
|
-
* specified CloudFront distribution.</p>
|
|
423
|
+
* @see {@link GetMonitoringSubscriptionCommand}
|
|
735
424
|
*/
|
|
736
425
|
getMonitoringSubscription(args: GetMonitoringSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<GetMonitoringSubscriptionCommandOutput>;
|
|
737
426
|
getMonitoringSubscription(args: GetMonitoringSubscriptionCommandInput, cb: (err: any, data?: GetMonitoringSubscriptionCommandOutput) => void): void;
|
|
738
427
|
getMonitoringSubscription(args: GetMonitoringSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMonitoringSubscriptionCommandOutput) => void): void;
|
|
739
428
|
/**
|
|
740
|
-
* @
|
|
741
|
-
* <p>Gets a CloudFront origin access control, including its unique identifier.</p>
|
|
429
|
+
* @see {@link GetOriginAccessControlCommand}
|
|
742
430
|
*/
|
|
743
431
|
getOriginAccessControl(args: GetOriginAccessControlCommandInput, options?: __HttpHandlerOptions): Promise<GetOriginAccessControlCommandOutput>;
|
|
744
432
|
getOriginAccessControl(args: GetOriginAccessControlCommandInput, cb: (err: any, data?: GetOriginAccessControlCommandOutput) => void): void;
|
|
745
433
|
getOriginAccessControl(args: GetOriginAccessControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOriginAccessControlCommandOutput) => void): void;
|
|
746
434
|
/**
|
|
747
|
-
* @
|
|
748
|
-
* <p>Gets a CloudFront origin access control configuration.</p>
|
|
435
|
+
* @see {@link GetOriginAccessControlConfigCommand}
|
|
749
436
|
*/
|
|
750
437
|
getOriginAccessControlConfig(args: GetOriginAccessControlConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetOriginAccessControlConfigCommandOutput>;
|
|
751
438
|
getOriginAccessControlConfig(args: GetOriginAccessControlConfigCommandInput, cb: (err: any, data?: GetOriginAccessControlConfigCommandOutput) => void): void;
|
|
752
439
|
getOriginAccessControlConfig(args: GetOriginAccessControlConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOriginAccessControlConfigCommandOutput) => void): void;
|
|
753
440
|
/**
|
|
754
|
-
* @
|
|
755
|
-
* <p>Gets an origin request policy, including the following metadata:</p>
|
|
756
|
-
* <ul>
|
|
757
|
-
* <li>
|
|
758
|
-
* <p>The policy's identifier.</p>
|
|
759
|
-
* </li>
|
|
760
|
-
* <li>
|
|
761
|
-
* <p>The date and time when the policy was last modified.</p>
|
|
762
|
-
* </li>
|
|
763
|
-
* </ul>
|
|
764
|
-
* <p>To get an origin request policy, you must provide the policy's identifier. If the
|
|
765
|
-
* origin request policy is attached to a distribution's cache behavior, you can get the
|
|
766
|
-
* policy's identifier using <code>ListDistributions</code> or
|
|
767
|
-
* <code>GetDistribution</code>. If the origin request policy is not attached to a cache
|
|
768
|
-
* behavior, you can get the identifier using
|
|
769
|
-
* <code>ListOriginRequestPolicies</code>.</p>
|
|
441
|
+
* @see {@link GetOriginRequestPolicyCommand}
|
|
770
442
|
*/
|
|
771
443
|
getOriginRequestPolicy(args: GetOriginRequestPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetOriginRequestPolicyCommandOutput>;
|
|
772
444
|
getOriginRequestPolicy(args: GetOriginRequestPolicyCommandInput, cb: (err: any, data?: GetOriginRequestPolicyCommandOutput) => void): void;
|
|
773
445
|
getOriginRequestPolicy(args: GetOriginRequestPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOriginRequestPolicyCommandOutput) => void): void;
|
|
774
446
|
/**
|
|
775
|
-
* @
|
|
776
|
-
* <p>Gets an origin request policy configuration.</p>
|
|
777
|
-
* <p>To get an origin request policy configuration, you must provide the policy's
|
|
778
|
-
* identifier. If the origin request policy is attached to a distribution's cache behavior,
|
|
779
|
-
* you can get the policy's identifier using <code>ListDistributions</code> or
|
|
780
|
-
* <code>GetDistribution</code>. If the origin request policy is not attached to a
|
|
781
|
-
* cache behavior, you can get the identifier using
|
|
782
|
-
* <code>ListOriginRequestPolicies</code>.</p>
|
|
447
|
+
* @see {@link GetOriginRequestPolicyConfigCommand}
|
|
783
448
|
*/
|
|
784
449
|
getOriginRequestPolicyConfig(args: GetOriginRequestPolicyConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetOriginRequestPolicyConfigCommandOutput>;
|
|
785
450
|
getOriginRequestPolicyConfig(args: GetOriginRequestPolicyConfigCommandInput, cb: (err: any, data?: GetOriginRequestPolicyConfigCommandOutput) => void): void;
|
|
786
451
|
getOriginRequestPolicyConfig(args: GetOriginRequestPolicyConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOriginRequestPolicyConfigCommandOutput) => void): void;
|
|
787
452
|
/**
|
|
788
|
-
* @
|
|
789
|
-
* <p>Gets a public key.</p>
|
|
453
|
+
* @see {@link GetPublicKeyCommand}
|
|
790
454
|
*/
|
|
791
455
|
getPublicKey(args: GetPublicKeyCommandInput, options?: __HttpHandlerOptions): Promise<GetPublicKeyCommandOutput>;
|
|
792
456
|
getPublicKey(args: GetPublicKeyCommandInput, cb: (err: any, data?: GetPublicKeyCommandOutput) => void): void;
|
|
793
457
|
getPublicKey(args: GetPublicKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPublicKeyCommandOutput) => void): void;
|
|
794
458
|
/**
|
|
795
|
-
* @
|
|
796
|
-
* <p>Gets a public key configuration.</p>
|
|
459
|
+
* @see {@link GetPublicKeyConfigCommand}
|
|
797
460
|
*/
|
|
798
461
|
getPublicKeyConfig(args: GetPublicKeyConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetPublicKeyConfigCommandOutput>;
|
|
799
462
|
getPublicKeyConfig(args: GetPublicKeyConfigCommandInput, cb: (err: any, data?: GetPublicKeyConfigCommandOutput) => void): void;
|
|
800
463
|
getPublicKeyConfig(args: GetPublicKeyConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPublicKeyConfigCommandOutput) => void): void;
|
|
801
464
|
/**
|
|
802
|
-
* @
|
|
803
|
-
* <p>Gets a real-time log configuration.</p>
|
|
804
|
-
* <p>To get a real-time log configuration, you can provide the configuration's name or its
|
|
805
|
-
* Amazon Resource Name (ARN). You must provide at least one. If you provide both, CloudFront
|
|
806
|
-
* uses the name to identify the real-time log configuration to get.</p>
|
|
465
|
+
* @see {@link GetRealtimeLogConfigCommand}
|
|
807
466
|
*/
|
|
808
467
|
getRealtimeLogConfig(args: GetRealtimeLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetRealtimeLogConfigCommandOutput>;
|
|
809
468
|
getRealtimeLogConfig(args: GetRealtimeLogConfigCommandInput, cb: (err: any, data?: GetRealtimeLogConfigCommandOutput) => void): void;
|
|
810
469
|
getRealtimeLogConfig(args: GetRealtimeLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRealtimeLogConfigCommandOutput) => void): void;
|
|
811
470
|
/**
|
|
812
|
-
* @
|
|
813
|
-
* <p>Gets a response headers policy, including metadata (the policy's identifier and the
|
|
814
|
-
* date and time when the policy was last modified).</p>
|
|
815
|
-
* <p>To get a response headers policy, you must provide the policy's identifier. If the
|
|
816
|
-
* response headers policy is attached to a distribution's cache behavior, you can get the
|
|
817
|
-
* policy's identifier using <code>ListDistributions</code> or
|
|
818
|
-
* <code>GetDistribution</code>. If the response headers policy is not attached to a cache
|
|
819
|
-
* behavior, you can get the identifier using
|
|
820
|
-
* <code>ListResponseHeadersPolicies</code>.</p>
|
|
471
|
+
* @see {@link GetResponseHeadersPolicyCommand}
|
|
821
472
|
*/
|
|
822
473
|
getResponseHeadersPolicy(args: GetResponseHeadersPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResponseHeadersPolicyCommandOutput>;
|
|
823
474
|
getResponseHeadersPolicy(args: GetResponseHeadersPolicyCommandInput, cb: (err: any, data?: GetResponseHeadersPolicyCommandOutput) => void): void;
|
|
824
475
|
getResponseHeadersPolicy(args: GetResponseHeadersPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResponseHeadersPolicyCommandOutput) => void): void;
|
|
825
476
|
/**
|
|
826
|
-
* @
|
|
827
|
-
* <p>Gets a response headers policy configuration.</p>
|
|
828
|
-
* <p>To get a response headers policy configuration, you must provide the policy's
|
|
829
|
-
* identifier. If the response headers policy is attached to a distribution's cache
|
|
830
|
-
* behavior, you can get the policy's identifier using <code>ListDistributions</code> or
|
|
831
|
-
* <code>GetDistribution</code>. If the response headers policy is not attached to a
|
|
832
|
-
* cache behavior, you can get the identifier using
|
|
833
|
-
* <code>ListResponseHeadersPolicies</code>.</p>
|
|
477
|
+
* @see {@link GetResponseHeadersPolicyConfigCommand}
|
|
834
478
|
*/
|
|
835
479
|
getResponseHeadersPolicyConfig(args: GetResponseHeadersPolicyConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetResponseHeadersPolicyConfigCommandOutput>;
|
|
836
480
|
getResponseHeadersPolicyConfig(args: GetResponseHeadersPolicyConfigCommandInput, cb: (err: any, data?: GetResponseHeadersPolicyConfigCommandOutput) => void): void;
|
|
837
481
|
getResponseHeadersPolicyConfig(args: GetResponseHeadersPolicyConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResponseHeadersPolicyConfigCommandOutput) => void): void;
|
|
838
482
|
/**
|
|
839
|
-
* @
|
|
840
|
-
* <p>Gets information about a specified RTMP distribution, including the distribution
|
|
841
|
-
* configuration.</p>
|
|
483
|
+
* @see {@link GetStreamingDistributionCommand}
|
|
842
484
|
*/
|
|
843
485
|
getStreamingDistribution(args: GetStreamingDistributionCommandInput, options?: __HttpHandlerOptions): Promise<GetStreamingDistributionCommandOutput>;
|
|
844
486
|
getStreamingDistribution(args: GetStreamingDistributionCommandInput, cb: (err: any, data?: GetStreamingDistributionCommandOutput) => void): void;
|
|
845
487
|
getStreamingDistribution(args: GetStreamingDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStreamingDistributionCommandOutput) => void): void;
|
|
846
488
|
/**
|
|
847
|
-
* @
|
|
848
|
-
* <p>Get the configuration information about a streaming distribution.</p>
|
|
489
|
+
* @see {@link GetStreamingDistributionConfigCommand}
|
|
849
490
|
*/
|
|
850
491
|
getStreamingDistributionConfig(args: GetStreamingDistributionConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetStreamingDistributionConfigCommandOutput>;
|
|
851
492
|
getStreamingDistributionConfig(args: GetStreamingDistributionConfigCommandInput, cb: (err: any, data?: GetStreamingDistributionConfigCommandOutput) => void): void;
|
|
852
493
|
getStreamingDistributionConfig(args: GetStreamingDistributionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStreamingDistributionConfigCommandOutput) => void): void;
|
|
853
494
|
/**
|
|
854
|
-
* @
|
|
855
|
-
* <p>Gets a list of cache policies.</p>
|
|
856
|
-
* <p>You can optionally apply a filter to return only the managed policies created by
|
|
857
|
-
* Amazon Web Services, or only the custom policies created in your Amazon Web Services account.</p>
|
|
858
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
859
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
860
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
861
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
862
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
495
|
+
* @see {@link ListCachePoliciesCommand}
|
|
863
496
|
*/
|
|
864
497
|
listCachePolicies(args: ListCachePoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListCachePoliciesCommandOutput>;
|
|
865
498
|
listCachePolicies(args: ListCachePoliciesCommandInput, cb: (err: any, data?: ListCachePoliciesCommandOutput) => void): void;
|
|
866
499
|
listCachePolicies(args: ListCachePoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCachePoliciesCommandOutput) => void): void;
|
|
867
500
|
/**
|
|
868
|
-
* @
|
|
869
|
-
* <p>Lists origin access identities.</p>
|
|
501
|
+
* @see {@link ListCloudFrontOriginAccessIdentitiesCommand}
|
|
870
502
|
*/
|
|
871
503
|
listCloudFrontOriginAccessIdentities(args: ListCloudFrontOriginAccessIdentitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListCloudFrontOriginAccessIdentitiesCommandOutput>;
|
|
872
504
|
listCloudFrontOriginAccessIdentities(args: ListCloudFrontOriginAccessIdentitiesCommandInput, cb: (err: any, data?: ListCloudFrontOriginAccessIdentitiesCommandOutput) => void): void;
|
|
873
505
|
listCloudFrontOriginAccessIdentities(args: ListCloudFrontOriginAccessIdentitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCloudFrontOriginAccessIdentitiesCommandOutput) => void): void;
|
|
874
506
|
/**
|
|
875
|
-
* @
|
|
876
|
-
* <p>Gets a list of aliases (also called CNAMEs or alternate domain names) that conflict or
|
|
877
|
-
* overlap with the provided alias, and the associated CloudFront distributions and Amazon Web Services
|
|
878
|
-
* accounts for each conflicting alias. In the returned list, the distribution and account
|
|
879
|
-
* IDs are partially hidden, which allows you to identify the distributions and accounts
|
|
880
|
-
* that you own, but helps to protect the information of ones that you don't own.</p>
|
|
881
|
-
* <p>Use this operation to find aliases that are in use in CloudFront that conflict or overlap
|
|
882
|
-
* with the provided alias. For example, if you provide <code>www.example.com</code> as
|
|
883
|
-
* input, the returned list can include <code>www.example.com</code> and the overlapping
|
|
884
|
-
* wildcard alternate domain name (<code>*.example.com</code>), if they exist. If you
|
|
885
|
-
* provide <code>*.example.com</code> as input, the returned list can include
|
|
886
|
-
* <code>*.example.com</code> and any alternate domain names covered by that wildcard
|
|
887
|
-
* (for example, <code>www.example.com</code>, <code>test.example.com</code>,
|
|
888
|
-
* <code>dev.example.com</code>, and so on), if they exist.</p>
|
|
889
|
-
* <p>To list conflicting aliases, you provide the alias to search and the ID of a
|
|
890
|
-
* distribution in your account that has an attached SSL/TLS certificate that includes the
|
|
891
|
-
* provided alias. For more information, including how to set up the distribution and
|
|
892
|
-
* certificate, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html#alternate-domain-names-move">Moving an alternate domain name to a different
|
|
893
|
-
* distribution</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
894
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
895
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
896
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
897
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
898
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
507
|
+
* @see {@link ListConflictingAliasesCommand}
|
|
899
508
|
*/
|
|
900
509
|
listConflictingAliases(args: ListConflictingAliasesCommandInput, options?: __HttpHandlerOptions): Promise<ListConflictingAliasesCommandOutput>;
|
|
901
510
|
listConflictingAliases(args: ListConflictingAliasesCommandInput, cb: (err: any, data?: ListConflictingAliasesCommandOutput) => void): void;
|
|
902
511
|
listConflictingAliases(args: ListConflictingAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConflictingAliasesCommandOutput) => void): void;
|
|
903
512
|
/**
|
|
904
|
-
* @
|
|
905
|
-
* <p>Gets a list of the continuous deployment policies in your Amazon Web Services account.</p>
|
|
906
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
907
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
908
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
909
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
910
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
513
|
+
* @see {@link ListContinuousDeploymentPoliciesCommand}
|
|
911
514
|
*/
|
|
912
515
|
listContinuousDeploymentPolicies(args: ListContinuousDeploymentPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListContinuousDeploymentPoliciesCommandOutput>;
|
|
913
516
|
listContinuousDeploymentPolicies(args: ListContinuousDeploymentPoliciesCommandInput, cb: (err: any, data?: ListContinuousDeploymentPoliciesCommandOutput) => void): void;
|
|
914
517
|
listContinuousDeploymentPolicies(args: ListContinuousDeploymentPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContinuousDeploymentPoliciesCommandOutput) => void): void;
|
|
915
518
|
/**
|
|
916
|
-
* @
|
|
917
|
-
* <p>List CloudFront distributions.</p>
|
|
519
|
+
* @see {@link ListDistributionsCommand}
|
|
918
520
|
*/
|
|
919
521
|
listDistributions(args: ListDistributionsCommandInput, options?: __HttpHandlerOptions): Promise<ListDistributionsCommandOutput>;
|
|
920
522
|
listDistributions(args: ListDistributionsCommandInput, cb: (err: any, data?: ListDistributionsCommandOutput) => void): void;
|
|
921
523
|
listDistributions(args: ListDistributionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDistributionsCommandOutput) => void): void;
|
|
922
524
|
/**
|
|
923
|
-
* @
|
|
924
|
-
* <p>Gets a list of distribution IDs for distributions that have a cache behavior that's
|
|
925
|
-
* associated with the specified cache policy.</p>
|
|
926
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
927
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
928
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
929
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
930
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
525
|
+
* @see {@link ListDistributionsByCachePolicyIdCommand}
|
|
931
526
|
*/
|
|
932
527
|
listDistributionsByCachePolicyId(args: ListDistributionsByCachePolicyIdCommandInput, options?: __HttpHandlerOptions): Promise<ListDistributionsByCachePolicyIdCommandOutput>;
|
|
933
528
|
listDistributionsByCachePolicyId(args: ListDistributionsByCachePolicyIdCommandInput, cb: (err: any, data?: ListDistributionsByCachePolicyIdCommandOutput) => void): void;
|
|
934
529
|
listDistributionsByCachePolicyId(args: ListDistributionsByCachePolicyIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDistributionsByCachePolicyIdCommandOutput) => void): void;
|
|
935
530
|
/**
|
|
936
|
-
* @
|
|
937
|
-
* <p>Gets a list of distribution IDs for distributions that have a cache behavior that
|
|
938
|
-
* references the specified key group.</p>
|
|
939
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
940
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
941
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
942
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
943
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
531
|
+
* @see {@link ListDistributionsByKeyGroupCommand}
|
|
944
532
|
*/
|
|
945
533
|
listDistributionsByKeyGroup(args: ListDistributionsByKeyGroupCommandInput, options?: __HttpHandlerOptions): Promise<ListDistributionsByKeyGroupCommandOutput>;
|
|
946
534
|
listDistributionsByKeyGroup(args: ListDistributionsByKeyGroupCommandInput, cb: (err: any, data?: ListDistributionsByKeyGroupCommandOutput) => void): void;
|
|
947
535
|
listDistributionsByKeyGroup(args: ListDistributionsByKeyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDistributionsByKeyGroupCommandOutput) => void): void;
|
|
948
536
|
/**
|
|
949
|
-
* @
|
|
950
|
-
* <p>Gets a list of distribution IDs for distributions that have a cache behavior that's
|
|
951
|
-
* associated with the specified origin request policy.</p>
|
|
952
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
953
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
954
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
955
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
956
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
537
|
+
* @see {@link ListDistributionsByOriginRequestPolicyIdCommand}
|
|
957
538
|
*/
|
|
958
539
|
listDistributionsByOriginRequestPolicyId(args: ListDistributionsByOriginRequestPolicyIdCommandInput, options?: __HttpHandlerOptions): Promise<ListDistributionsByOriginRequestPolicyIdCommandOutput>;
|
|
959
540
|
listDistributionsByOriginRequestPolicyId(args: ListDistributionsByOriginRequestPolicyIdCommandInput, cb: (err: any, data?: ListDistributionsByOriginRequestPolicyIdCommandOutput) => void): void;
|
|
960
541
|
listDistributionsByOriginRequestPolicyId(args: ListDistributionsByOriginRequestPolicyIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDistributionsByOriginRequestPolicyIdCommandOutput) => void): void;
|
|
961
542
|
/**
|
|
962
|
-
* @
|
|
963
|
-
* <p>Gets a list of distributions that have a cache behavior that's associated with the
|
|
964
|
-
* specified real-time log configuration.</p>
|
|
965
|
-
* <p>You can specify the real-time log configuration by its name or its Amazon Resource
|
|
966
|
-
* Name (ARN). You must provide at least one. If you provide both, CloudFront uses the name to
|
|
967
|
-
* identify the real-time log configuration to list distributions for.</p>
|
|
968
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
969
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
970
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
971
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
972
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
543
|
+
* @see {@link ListDistributionsByRealtimeLogConfigCommand}
|
|
973
544
|
*/
|
|
974
545
|
listDistributionsByRealtimeLogConfig(args: ListDistributionsByRealtimeLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<ListDistributionsByRealtimeLogConfigCommandOutput>;
|
|
975
546
|
listDistributionsByRealtimeLogConfig(args: ListDistributionsByRealtimeLogConfigCommandInput, cb: (err: any, data?: ListDistributionsByRealtimeLogConfigCommandOutput) => void): void;
|
|
976
547
|
listDistributionsByRealtimeLogConfig(args: ListDistributionsByRealtimeLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDistributionsByRealtimeLogConfigCommandOutput) => void): void;
|
|
977
548
|
/**
|
|
978
|
-
* @
|
|
979
|
-
* <p>Gets a list of distribution IDs for distributions that have a cache behavior that's
|
|
980
|
-
* associated with the specified response headers policy.</p>
|
|
981
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
982
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
983
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
984
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
985
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
549
|
+
* @see {@link ListDistributionsByResponseHeadersPolicyIdCommand}
|
|
986
550
|
*/
|
|
987
551
|
listDistributionsByResponseHeadersPolicyId(args: ListDistributionsByResponseHeadersPolicyIdCommandInput, options?: __HttpHandlerOptions): Promise<ListDistributionsByResponseHeadersPolicyIdCommandOutput>;
|
|
988
552
|
listDistributionsByResponseHeadersPolicyId(args: ListDistributionsByResponseHeadersPolicyIdCommandInput, cb: (err: any, data?: ListDistributionsByResponseHeadersPolicyIdCommandOutput) => void): void;
|
|
989
553
|
listDistributionsByResponseHeadersPolicyId(args: ListDistributionsByResponseHeadersPolicyIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDistributionsByResponseHeadersPolicyIdCommandOutput) => void): void;
|
|
990
554
|
/**
|
|
991
|
-
* @
|
|
992
|
-
* <p>List the distributions that are associated with a specified WAF web ACL.</p>
|
|
555
|
+
* @see {@link ListDistributionsByWebACLIdCommand}
|
|
993
556
|
*/
|
|
994
557
|
listDistributionsByWebACLId(args: ListDistributionsByWebACLIdCommandInput, options?: __HttpHandlerOptions): Promise<ListDistributionsByWebACLIdCommandOutput>;
|
|
995
558
|
listDistributionsByWebACLId(args: ListDistributionsByWebACLIdCommandInput, cb: (err: any, data?: ListDistributionsByWebACLIdCommandOutput) => void): void;
|
|
996
559
|
listDistributionsByWebACLId(args: ListDistributionsByWebACLIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDistributionsByWebACLIdCommandOutput) => void): void;
|
|
997
560
|
/**
|
|
998
|
-
* @
|
|
999
|
-
* <p>List all field-level encryption configurations that have been created in CloudFront for this
|
|
1000
|
-
* account.</p>
|
|
561
|
+
* @see {@link ListFieldLevelEncryptionConfigsCommand}
|
|
1001
562
|
*/
|
|
1002
563
|
listFieldLevelEncryptionConfigs(args: ListFieldLevelEncryptionConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListFieldLevelEncryptionConfigsCommandOutput>;
|
|
1003
564
|
listFieldLevelEncryptionConfigs(args: ListFieldLevelEncryptionConfigsCommandInput, cb: (err: any, data?: ListFieldLevelEncryptionConfigsCommandOutput) => void): void;
|
|
1004
565
|
listFieldLevelEncryptionConfigs(args: ListFieldLevelEncryptionConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFieldLevelEncryptionConfigsCommandOutput) => void): void;
|
|
1005
566
|
/**
|
|
1006
|
-
* @
|
|
1007
|
-
* <p>Request a list of field-level encryption profiles that have been created in CloudFront for
|
|
1008
|
-
* this account.</p>
|
|
567
|
+
* @see {@link ListFieldLevelEncryptionProfilesCommand}
|
|
1009
568
|
*/
|
|
1010
569
|
listFieldLevelEncryptionProfiles(args: ListFieldLevelEncryptionProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListFieldLevelEncryptionProfilesCommandOutput>;
|
|
1011
570
|
listFieldLevelEncryptionProfiles(args: ListFieldLevelEncryptionProfilesCommandInput, cb: (err: any, data?: ListFieldLevelEncryptionProfilesCommandOutput) => void): void;
|
|
1012
571
|
listFieldLevelEncryptionProfiles(args: ListFieldLevelEncryptionProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFieldLevelEncryptionProfilesCommandOutput) => void): void;
|
|
1013
572
|
/**
|
|
1014
|
-
* @
|
|
1015
|
-
* <p>Gets a list of all CloudFront functions in your Amazon Web Services account.</p>
|
|
1016
|
-
* <p>You can optionally apply a filter to return only the functions that are in the
|
|
1017
|
-
* specified stage, either <code>DEVELOPMENT</code> or <code>LIVE</code>.</p>
|
|
1018
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
1019
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
1020
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
1021
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
1022
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
573
|
+
* @see {@link ListFunctionsCommand}
|
|
1023
574
|
*/
|
|
1024
575
|
listFunctions(args: ListFunctionsCommandInput, options?: __HttpHandlerOptions): Promise<ListFunctionsCommandOutput>;
|
|
1025
576
|
listFunctions(args: ListFunctionsCommandInput, cb: (err: any, data?: ListFunctionsCommandOutput) => void): void;
|
|
1026
577
|
listFunctions(args: ListFunctionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionsCommandOutput) => void): void;
|
|
1027
578
|
/**
|
|
1028
|
-
* @
|
|
1029
|
-
* <p>Lists invalidation batches.</p>
|
|
579
|
+
* @see {@link ListInvalidationsCommand}
|
|
1030
580
|
*/
|
|
1031
581
|
listInvalidations(args: ListInvalidationsCommandInput, options?: __HttpHandlerOptions): Promise<ListInvalidationsCommandOutput>;
|
|
1032
582
|
listInvalidations(args: ListInvalidationsCommandInput, cb: (err: any, data?: ListInvalidationsCommandOutput) => void): void;
|
|
1033
583
|
listInvalidations(args: ListInvalidationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInvalidationsCommandOutput) => void): void;
|
|
1034
584
|
/**
|
|
1035
|
-
* @
|
|
1036
|
-
* <p>Gets a list of key groups.</p>
|
|
1037
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
1038
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
1039
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
1040
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
1041
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
585
|
+
* @see {@link ListKeyGroupsCommand}
|
|
1042
586
|
*/
|
|
1043
587
|
listKeyGroups(args: ListKeyGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListKeyGroupsCommandOutput>;
|
|
1044
588
|
listKeyGroups(args: ListKeyGroupsCommandInput, cb: (err: any, data?: ListKeyGroupsCommandOutput) => void): void;
|
|
1045
589
|
listKeyGroups(args: ListKeyGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKeyGroupsCommandOutput) => void): void;
|
|
1046
590
|
/**
|
|
1047
|
-
* @
|
|
1048
|
-
* <p>Gets the list of CloudFront origin access controls in this Amazon Web Services account.</p>
|
|
1049
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
1050
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
1051
|
-
* default maximum, the response is paginated. To get the next page of items, send another
|
|
1052
|
-
* request that specifies the <code>NextMarker</code> value from the current response as
|
|
1053
|
-
* the <code>Marker</code> value in the next request.</p>
|
|
591
|
+
* @see {@link ListOriginAccessControlsCommand}
|
|
1054
592
|
*/
|
|
1055
593
|
listOriginAccessControls(args: ListOriginAccessControlsCommandInput, options?: __HttpHandlerOptions): Promise<ListOriginAccessControlsCommandOutput>;
|
|
1056
594
|
listOriginAccessControls(args: ListOriginAccessControlsCommandInput, cb: (err: any, data?: ListOriginAccessControlsCommandOutput) => void): void;
|
|
1057
595
|
listOriginAccessControls(args: ListOriginAccessControlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOriginAccessControlsCommandOutput) => void): void;
|
|
1058
596
|
/**
|
|
1059
|
-
* @
|
|
1060
|
-
* <p>Gets a list of origin request policies.</p>
|
|
1061
|
-
* <p>You can optionally apply a filter to return only the managed policies created by
|
|
1062
|
-
* Amazon Web Services, or only the custom policies created in your Amazon Web Services account.</p>
|
|
1063
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
1064
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
1065
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
1066
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
1067
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
597
|
+
* @see {@link ListOriginRequestPoliciesCommand}
|
|
1068
598
|
*/
|
|
1069
599
|
listOriginRequestPolicies(args: ListOriginRequestPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListOriginRequestPoliciesCommandOutput>;
|
|
1070
600
|
listOriginRequestPolicies(args: ListOriginRequestPoliciesCommandInput, cb: (err: any, data?: ListOriginRequestPoliciesCommandOutput) => void): void;
|
|
1071
601
|
listOriginRequestPolicies(args: ListOriginRequestPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOriginRequestPoliciesCommandOutput) => void): void;
|
|
1072
602
|
/**
|
|
1073
|
-
* @
|
|
1074
|
-
* <p>List all public keys that have been added to CloudFront for this account.</p>
|
|
603
|
+
* @see {@link ListPublicKeysCommand}
|
|
1075
604
|
*/
|
|
1076
605
|
listPublicKeys(args: ListPublicKeysCommandInput, options?: __HttpHandlerOptions): Promise<ListPublicKeysCommandOutput>;
|
|
1077
606
|
listPublicKeys(args: ListPublicKeysCommandInput, cb: (err: any, data?: ListPublicKeysCommandOutput) => void): void;
|
|
1078
607
|
listPublicKeys(args: ListPublicKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPublicKeysCommandOutput) => void): void;
|
|
1079
608
|
/**
|
|
1080
|
-
* @
|
|
1081
|
-
* <p>Gets a list of real-time log configurations.</p>
|
|
1082
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
1083
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
1084
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
1085
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
1086
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
609
|
+
* @see {@link ListRealtimeLogConfigsCommand}
|
|
1087
610
|
*/
|
|
1088
611
|
listRealtimeLogConfigs(args: ListRealtimeLogConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListRealtimeLogConfigsCommandOutput>;
|
|
1089
612
|
listRealtimeLogConfigs(args: ListRealtimeLogConfigsCommandInput, cb: (err: any, data?: ListRealtimeLogConfigsCommandOutput) => void): void;
|
|
1090
613
|
listRealtimeLogConfigs(args: ListRealtimeLogConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRealtimeLogConfigsCommandOutput) => void): void;
|
|
1091
614
|
/**
|
|
1092
|
-
* @
|
|
1093
|
-
* <p>Gets a list of response headers policies.</p>
|
|
1094
|
-
* <p>You can optionally apply a filter to get only the managed policies created by Amazon Web Services,
|
|
1095
|
-
* or only the custom policies created in your Amazon Web Services account.</p>
|
|
1096
|
-
* <p>You can optionally specify the maximum number of items to receive in the response. If
|
|
1097
|
-
* the total number of items in the list exceeds the maximum that you specify, or the
|
|
1098
|
-
* default maximum, the response is paginated. To get the next page of items, send a
|
|
1099
|
-
* subsequent request that specifies the <code>NextMarker</code> value from the current
|
|
1100
|
-
* response as the <code>Marker</code> value in the subsequent request.</p>
|
|
615
|
+
* @see {@link ListResponseHeadersPoliciesCommand}
|
|
1101
616
|
*/
|
|
1102
617
|
listResponseHeadersPolicies(args: ListResponseHeadersPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListResponseHeadersPoliciesCommandOutput>;
|
|
1103
618
|
listResponseHeadersPolicies(args: ListResponseHeadersPoliciesCommandInput, cb: (err: any, data?: ListResponseHeadersPoliciesCommandOutput) => void): void;
|
|
1104
619
|
listResponseHeadersPolicies(args: ListResponseHeadersPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResponseHeadersPoliciesCommandOutput) => void): void;
|
|
1105
620
|
/**
|
|
1106
|
-
* @
|
|
1107
|
-
* <p>List streaming distributions.</p>
|
|
621
|
+
* @see {@link ListStreamingDistributionsCommand}
|
|
1108
622
|
*/
|
|
1109
623
|
listStreamingDistributions(args: ListStreamingDistributionsCommandInput, options?: __HttpHandlerOptions): Promise<ListStreamingDistributionsCommandOutput>;
|
|
1110
624
|
listStreamingDistributions(args: ListStreamingDistributionsCommandInput, cb: (err: any, data?: ListStreamingDistributionsCommandOutput) => void): void;
|
|
1111
625
|
listStreamingDistributions(args: ListStreamingDistributionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamingDistributionsCommandOutput) => void): void;
|
|
1112
626
|
/**
|
|
1113
|
-
* @
|
|
1114
|
-
* <p>List tags for a CloudFront resource.</p>
|
|
627
|
+
* @see {@link ListTagsForResourceCommand}
|
|
1115
628
|
*/
|
|
1116
629
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
1117
630
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
1118
631
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
1119
632
|
/**
|
|
1120
|
-
* @
|
|
1121
|
-
* <p>Publishes a CloudFront function by copying the function code from the
|
|
1122
|
-
* <code>DEVELOPMENT</code> stage to <code>LIVE</code>. This automatically updates all
|
|
1123
|
-
* cache behaviors that are using this function to use the newly published copy in the
|
|
1124
|
-
* <code>LIVE</code> stage.</p>
|
|
1125
|
-
* <p>When a function is published to the <code>LIVE</code> stage, you can attach the
|
|
1126
|
-
* function to a distribution's cache behavior, using the function's Amazon Resource Name
|
|
1127
|
-
* (ARN).</p>
|
|
1128
|
-
* <p>To publish a function, you must provide the function's name and version
|
|
1129
|
-
* (<code>ETag</code> value). To get these values, you can use
|
|
1130
|
-
* <code>ListFunctions</code> and <code>DescribeFunction</code>.</p>
|
|
633
|
+
* @see {@link PublishFunctionCommand}
|
|
1131
634
|
*/
|
|
1132
635
|
publishFunction(args: PublishFunctionCommandInput, options?: __HttpHandlerOptions): Promise<PublishFunctionCommandOutput>;
|
|
1133
636
|
publishFunction(args: PublishFunctionCommandInput, cb: (err: any, data?: PublishFunctionCommandOutput) => void): void;
|
|
1134
637
|
publishFunction(args: PublishFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PublishFunctionCommandOutput) => void): void;
|
|
1135
638
|
/**
|
|
1136
|
-
* @
|
|
1137
|
-
* <p>Add tags to a CloudFront resource.</p>
|
|
639
|
+
* @see {@link TagResourceCommand}
|
|
1138
640
|
*/
|
|
1139
641
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
1140
642
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
1141
643
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
1142
644
|
/**
|
|
1143
|
-
* @
|
|
1144
|
-
* <p>Tests a CloudFront function.</p>
|
|
1145
|
-
* <p>To test a function, you provide an <i>event object</i> that represents
|
|
1146
|
-
* an HTTP request or response that your CloudFront distribution could receive in production.
|
|
1147
|
-
* CloudFront runs the function, passing it the event object that you provided, and returns the
|
|
1148
|
-
* function's result (the modified event object) in the response. The response also
|
|
1149
|
-
* contains function logs and error messages, if any exist. For more information about
|
|
1150
|
-
* testing functions, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/managing-functions.html#test-function">Testing functions</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
1151
|
-
* <p>To test a function, you provide the function's name and version (<code>ETag</code>
|
|
1152
|
-
* value) along with the event object. To get the function's name and version, you can use
|
|
1153
|
-
* <code>ListFunctions</code> and <code>DescribeFunction</code>.</p>
|
|
645
|
+
* @see {@link TestFunctionCommand}
|
|
1154
646
|
*/
|
|
1155
647
|
testFunction(args: TestFunctionCommandInput, options?: __HttpHandlerOptions): Promise<TestFunctionCommandOutput>;
|
|
1156
648
|
testFunction(args: TestFunctionCommandInput, cb: (err: any, data?: TestFunctionCommandOutput) => void): void;
|
|
1157
649
|
testFunction(args: TestFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestFunctionCommandOutput) => void): void;
|
|
1158
650
|
/**
|
|
1159
|
-
* @
|
|
1160
|
-
* <p>Remove tags from a CloudFront resource.</p>
|
|
651
|
+
* @see {@link UntagResourceCommand}
|
|
1161
652
|
*/
|
|
1162
653
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
1163
654
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
1164
655
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
1165
656
|
/**
|
|
1166
|
-
* @
|
|
1167
|
-
* <p>Updates a cache policy configuration.</p>
|
|
1168
|
-
* <p>When you update a cache policy configuration, all the fields are updated with the
|
|
1169
|
-
* values provided in the request. You cannot update some fields independent of others. To
|
|
1170
|
-
* update a cache policy configuration:</p>
|
|
1171
|
-
* <ol>
|
|
1172
|
-
* <li>
|
|
1173
|
-
* <p>Use <code>GetCachePolicyConfig</code> to get the current configuration.</p>
|
|
1174
|
-
* </li>
|
|
1175
|
-
* <li>
|
|
1176
|
-
* <p>Locally modify the fields in the cache policy configuration that you want to
|
|
1177
|
-
* update.</p>
|
|
1178
|
-
* </li>
|
|
1179
|
-
* <li>
|
|
1180
|
-
* <p>Call <code>UpdateCachePolicy</code> by providing the entire cache policy
|
|
1181
|
-
* configuration, including the fields that you modified and those that you
|
|
1182
|
-
* didn't.</p>
|
|
1183
|
-
* </li>
|
|
1184
|
-
* </ol>
|
|
657
|
+
* @see {@link UpdateCachePolicyCommand}
|
|
1185
658
|
*/
|
|
1186
659
|
updateCachePolicy(args: UpdateCachePolicyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCachePolicyCommandOutput>;
|
|
1187
660
|
updateCachePolicy(args: UpdateCachePolicyCommandInput, cb: (err: any, data?: UpdateCachePolicyCommandOutput) => void): void;
|
|
1188
661
|
updateCachePolicy(args: UpdateCachePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCachePolicyCommandOutput) => void): void;
|
|
1189
662
|
/**
|
|
1190
|
-
* @
|
|
1191
|
-
* <p>Update an origin access identity.</p>
|
|
663
|
+
* @see {@link UpdateCloudFrontOriginAccessIdentityCommand}
|
|
1192
664
|
*/
|
|
1193
665
|
updateCloudFrontOriginAccessIdentity(args: UpdateCloudFrontOriginAccessIdentityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCloudFrontOriginAccessIdentityCommandOutput>;
|
|
1194
666
|
updateCloudFrontOriginAccessIdentity(args: UpdateCloudFrontOriginAccessIdentityCommandInput, cb: (err: any, data?: UpdateCloudFrontOriginAccessIdentityCommandOutput) => void): void;
|
|
1195
667
|
updateCloudFrontOriginAccessIdentity(args: UpdateCloudFrontOriginAccessIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCloudFrontOriginAccessIdentityCommandOutput) => void): void;
|
|
1196
668
|
/**
|
|
1197
|
-
* @
|
|
1198
|
-
* <p>Updates a continuous deployment policy. You can update a continuous deployment policy
|
|
1199
|
-
* to enable or disable it, to change the percentage of traffic that it sends to the
|
|
1200
|
-
* staging distribution, or to change the staging distribution that it sends traffic
|
|
1201
|
-
* to.</p>
|
|
1202
|
-
* <p>When you update a continuous deployment policy configuration, all the fields are
|
|
1203
|
-
* updated with the values that are provided in the request. You cannot update some fields
|
|
1204
|
-
* independent of others. To update a continuous deployment policy configuration:</p>
|
|
1205
|
-
* <ol>
|
|
1206
|
-
* <li>
|
|
1207
|
-
* <p>Use <code>GetContinuousDeploymentPolicyConfig</code> to get the current
|
|
1208
|
-
* configuration.</p>
|
|
1209
|
-
* </li>
|
|
1210
|
-
* <li>
|
|
1211
|
-
* <p>Locally modify the fields in the continuous deployment policy configuration
|
|
1212
|
-
* that you want to update.</p>
|
|
1213
|
-
* </li>
|
|
1214
|
-
* <li>
|
|
1215
|
-
* <p>Use <code>UpdateContinuousDeploymentPolicy</code>, providing the entire
|
|
1216
|
-
* continuous deployment policy configuration, including the fields that you
|
|
1217
|
-
* modified and those that you didn't.</p>
|
|
1218
|
-
* </li>
|
|
1219
|
-
* </ol>
|
|
669
|
+
* @see {@link UpdateContinuousDeploymentPolicyCommand}
|
|
1220
670
|
*/
|
|
1221
671
|
updateContinuousDeploymentPolicy(args: UpdateContinuousDeploymentPolicyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContinuousDeploymentPolicyCommandOutput>;
|
|
1222
672
|
updateContinuousDeploymentPolicy(args: UpdateContinuousDeploymentPolicyCommandInput, cb: (err: any, data?: UpdateContinuousDeploymentPolicyCommandOutput) => void): void;
|
|
1223
673
|
updateContinuousDeploymentPolicy(args: UpdateContinuousDeploymentPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContinuousDeploymentPolicyCommandOutput) => void): void;
|
|
1224
674
|
/**
|
|
1225
|
-
* @
|
|
1226
|
-
* <p>Updates the configuration for a CloudFront distribution.</p>
|
|
1227
|
-
* <p>The update process includes getting the current distribution configuration, updating
|
|
1228
|
-
* it to make your changes, and then submitting an <code>UpdateDistribution</code> request
|
|
1229
|
-
* to make the updates.</p>
|
|
1230
|
-
* <p>
|
|
1231
|
-
* <b>To update a web distribution using the CloudFront
|
|
1232
|
-
* API</b>
|
|
1233
|
-
* </p>
|
|
1234
|
-
* <ol>
|
|
1235
|
-
* <li>
|
|
1236
|
-
* <p>Use <code>GetDistributionConfig</code> to get the current configuration,
|
|
1237
|
-
* including the version identifier (<code>ETag</code>).</p>
|
|
1238
|
-
* </li>
|
|
1239
|
-
* <li>
|
|
1240
|
-
* <p>Update the distribution configuration that was returned in the response. Note
|
|
1241
|
-
* the following important requirements and restrictions:</p>
|
|
1242
|
-
* <ul>
|
|
1243
|
-
* <li>
|
|
1244
|
-
* <p>You must rename the <code>ETag</code> field to <code>IfMatch</code>,
|
|
1245
|
-
* leaving the value unchanged. (Set the value of <code>IfMatch</code> to
|
|
1246
|
-
* the value of <code>ETag</code>, then remove the <code>ETag</code>
|
|
1247
|
-
* field.)</p>
|
|
1248
|
-
* </li>
|
|
1249
|
-
* <li>
|
|
1250
|
-
* <p>You can't change the value of <code>CallerReference</code>.</p>
|
|
1251
|
-
* </li>
|
|
1252
|
-
* </ul>
|
|
1253
|
-
* </li>
|
|
1254
|
-
* <li>
|
|
1255
|
-
* <p>Submit an <code>UpdateDistribution</code> request, providing the distribution
|
|
1256
|
-
* configuration. The new configuration replaces the existing configuration. The
|
|
1257
|
-
* values that you specify in an <code>UpdateDistribution</code> request are not
|
|
1258
|
-
* merged into your existing configuration. Make sure to include all fields: the
|
|
1259
|
-
* ones that you modified and also the ones that you didn't.</p>
|
|
1260
|
-
* </li>
|
|
1261
|
-
* </ol>
|
|
675
|
+
* @see {@link UpdateDistributionCommand}
|
|
1262
676
|
*/
|
|
1263
677
|
updateDistribution(args: UpdateDistributionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDistributionCommandOutput>;
|
|
1264
678
|
updateDistribution(args: UpdateDistributionCommandInput, cb: (err: any, data?: UpdateDistributionCommandOutput) => void): void;
|
|
1265
679
|
updateDistribution(args: UpdateDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDistributionCommandOutput) => void): void;
|
|
1266
680
|
/**
|
|
1267
|
-
* @
|
|
1268
|
-
* <p>Copies the staging distribution's configuration to its corresponding primary
|
|
1269
|
-
* distribution. The primary distribution retains its <code>Aliases</code> (also known as
|
|
1270
|
-
* alternate domain names or CNAMEs) and <code>ContinuousDeploymentPolicyId</code> value,
|
|
1271
|
-
* but otherwise its configuration is overwritten to match the staging distribution.</p>
|
|
1272
|
-
* <p>You can use this operation in a continuous deployment workflow after you have tested
|
|
1273
|
-
* configuration changes on the staging distribution. After using a continuous deployment
|
|
1274
|
-
* policy to move a portion of your domain name's traffic to the staging distribution and
|
|
1275
|
-
* verifying that it works as intended, you can use this operation to copy the staging
|
|
1276
|
-
* distribution's configuration to the primary distribution. This action will disable the
|
|
1277
|
-
* continuous deployment policy and move your domain's traffic back to the primary distribution.</p>
|
|
681
|
+
* @see {@link UpdateDistributionWithStagingConfigCommand}
|
|
1278
682
|
*/
|
|
1279
683
|
updateDistributionWithStagingConfig(args: UpdateDistributionWithStagingConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDistributionWithStagingConfigCommandOutput>;
|
|
1280
684
|
updateDistributionWithStagingConfig(args: UpdateDistributionWithStagingConfigCommandInput, cb: (err: any, data?: UpdateDistributionWithStagingConfigCommandOutput) => void): void;
|
|
1281
685
|
updateDistributionWithStagingConfig(args: UpdateDistributionWithStagingConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDistributionWithStagingConfigCommandOutput) => void): void;
|
|
1282
686
|
/**
|
|
1283
|
-
* @
|
|
1284
|
-
* <p>Update a field-level encryption configuration.</p>
|
|
687
|
+
* @see {@link UpdateFieldLevelEncryptionConfigCommand}
|
|
1285
688
|
*/
|
|
1286
689
|
updateFieldLevelEncryptionConfig(args: UpdateFieldLevelEncryptionConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFieldLevelEncryptionConfigCommandOutput>;
|
|
1287
690
|
updateFieldLevelEncryptionConfig(args: UpdateFieldLevelEncryptionConfigCommandInput, cb: (err: any, data?: UpdateFieldLevelEncryptionConfigCommandOutput) => void): void;
|
|
1288
691
|
updateFieldLevelEncryptionConfig(args: UpdateFieldLevelEncryptionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFieldLevelEncryptionConfigCommandOutput) => void): void;
|
|
1289
692
|
/**
|
|
1290
|
-
* @
|
|
1291
|
-
* <p>Update a field-level encryption profile.</p>
|
|
693
|
+
* @see {@link UpdateFieldLevelEncryptionProfileCommand}
|
|
1292
694
|
*/
|
|
1293
695
|
updateFieldLevelEncryptionProfile(args: UpdateFieldLevelEncryptionProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFieldLevelEncryptionProfileCommandOutput>;
|
|
1294
696
|
updateFieldLevelEncryptionProfile(args: UpdateFieldLevelEncryptionProfileCommandInput, cb: (err: any, data?: UpdateFieldLevelEncryptionProfileCommandOutput) => void): void;
|
|
1295
697
|
updateFieldLevelEncryptionProfile(args: UpdateFieldLevelEncryptionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFieldLevelEncryptionProfileCommandOutput) => void): void;
|
|
1296
698
|
/**
|
|
1297
|
-
* @
|
|
1298
|
-
* <p>Updates a CloudFront function.</p>
|
|
1299
|
-
* <p>You can update a function's code or the comment that describes the function. You
|
|
1300
|
-
* cannot update a function's name.</p>
|
|
1301
|
-
* <p>To update a function, you provide the function's name and version (<code>ETag</code>
|
|
1302
|
-
* value) along with the updated function code. To get the name and version, you can use
|
|
1303
|
-
* <code>ListFunctions</code> and <code>DescribeFunction</code>.</p>
|
|
699
|
+
* @see {@link UpdateFunctionCommand}
|
|
1304
700
|
*/
|
|
1305
701
|
updateFunction(args: UpdateFunctionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFunctionCommandOutput>;
|
|
1306
702
|
updateFunction(args: UpdateFunctionCommandInput, cb: (err: any, data?: UpdateFunctionCommandOutput) => void): void;
|
|
1307
703
|
updateFunction(args: UpdateFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFunctionCommandOutput) => void): void;
|
|
1308
704
|
/**
|
|
1309
|
-
* @
|
|
1310
|
-
* <p>Updates a key group.</p>
|
|
1311
|
-
* <p>When you update a key group, all the fields are updated with the values provided in
|
|
1312
|
-
* the request. You cannot update some fields independent of others. To update a key
|
|
1313
|
-
* group:</p>
|
|
1314
|
-
* <ol>
|
|
1315
|
-
* <li>
|
|
1316
|
-
* <p>Get the current key group with <code>GetKeyGroup</code> or
|
|
1317
|
-
* <code>GetKeyGroupConfig</code>.</p>
|
|
1318
|
-
* </li>
|
|
1319
|
-
* <li>
|
|
1320
|
-
* <p>Locally modify the fields in the key group that you want to update. For
|
|
1321
|
-
* example, add or remove public key IDs.</p>
|
|
1322
|
-
* </li>
|
|
1323
|
-
* <li>
|
|
1324
|
-
* <p>Call <code>UpdateKeyGroup</code> with the entire key group object, including
|
|
1325
|
-
* the fields that you modified and those that you didn't.</p>
|
|
1326
|
-
* </li>
|
|
1327
|
-
* </ol>
|
|
705
|
+
* @see {@link UpdateKeyGroupCommand}
|
|
1328
706
|
*/
|
|
1329
707
|
updateKeyGroup(args: UpdateKeyGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateKeyGroupCommandOutput>;
|
|
1330
708
|
updateKeyGroup(args: UpdateKeyGroupCommandInput, cb: (err: any, data?: UpdateKeyGroupCommandOutput) => void): void;
|
|
1331
709
|
updateKeyGroup(args: UpdateKeyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateKeyGroupCommandOutput) => void): void;
|
|
1332
710
|
/**
|
|
1333
|
-
* @
|
|
1334
|
-
* <p>Updates a CloudFront origin access control.</p>
|
|
711
|
+
* @see {@link UpdateOriginAccessControlCommand}
|
|
1335
712
|
*/
|
|
1336
713
|
updateOriginAccessControl(args: UpdateOriginAccessControlCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOriginAccessControlCommandOutput>;
|
|
1337
714
|
updateOriginAccessControl(args: UpdateOriginAccessControlCommandInput, cb: (err: any, data?: UpdateOriginAccessControlCommandOutput) => void): void;
|
|
1338
715
|
updateOriginAccessControl(args: UpdateOriginAccessControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOriginAccessControlCommandOutput) => void): void;
|
|
1339
716
|
/**
|
|
1340
|
-
* @
|
|
1341
|
-
* <p>Updates an origin request policy configuration.</p>
|
|
1342
|
-
* <p>When you update an origin request policy configuration, all the fields are updated
|
|
1343
|
-
* with the values provided in the request. You cannot update some fields independent of
|
|
1344
|
-
* others. To update an origin request policy configuration:</p>
|
|
1345
|
-
* <ol>
|
|
1346
|
-
* <li>
|
|
1347
|
-
* <p>Use <code>GetOriginRequestPolicyConfig</code> to get the current
|
|
1348
|
-
* configuration.</p>
|
|
1349
|
-
* </li>
|
|
1350
|
-
* <li>
|
|
1351
|
-
* <p>Locally modify the fields in the origin request policy configuration that you
|
|
1352
|
-
* want to update.</p>
|
|
1353
|
-
* </li>
|
|
1354
|
-
* <li>
|
|
1355
|
-
* <p>Call <code>UpdateOriginRequestPolicy</code> by providing the entire origin
|
|
1356
|
-
* request policy configuration, including the fields that you modified and those
|
|
1357
|
-
* that you didn't.</p>
|
|
1358
|
-
* </li>
|
|
1359
|
-
* </ol>
|
|
717
|
+
* @see {@link UpdateOriginRequestPolicyCommand}
|
|
1360
718
|
*/
|
|
1361
719
|
updateOriginRequestPolicy(args: UpdateOriginRequestPolicyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOriginRequestPolicyCommandOutput>;
|
|
1362
720
|
updateOriginRequestPolicy(args: UpdateOriginRequestPolicyCommandInput, cb: (err: any, data?: UpdateOriginRequestPolicyCommandOutput) => void): void;
|
|
1363
721
|
updateOriginRequestPolicy(args: UpdateOriginRequestPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOriginRequestPolicyCommandOutput) => void): void;
|
|
1364
722
|
/**
|
|
1365
|
-
* @
|
|
1366
|
-
* <p>Update public key information. Note that the only value you can change is the
|
|
1367
|
-
* comment.</p>
|
|
723
|
+
* @see {@link UpdatePublicKeyCommand}
|
|
1368
724
|
*/
|
|
1369
725
|
updatePublicKey(args: UpdatePublicKeyCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePublicKeyCommandOutput>;
|
|
1370
726
|
updatePublicKey(args: UpdatePublicKeyCommandInput, cb: (err: any, data?: UpdatePublicKeyCommandOutput) => void): void;
|
|
1371
727
|
updatePublicKey(args: UpdatePublicKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePublicKeyCommandOutput) => void): void;
|
|
1372
728
|
/**
|
|
1373
|
-
* @
|
|
1374
|
-
* <p>Updates a real-time log configuration.</p>
|
|
1375
|
-
* <p>When you update a real-time log configuration, all the parameters are updated with the
|
|
1376
|
-
* values provided in the request. You cannot update some parameters independent of others.
|
|
1377
|
-
* To update a real-time log configuration:</p>
|
|
1378
|
-
* <ol>
|
|
1379
|
-
* <li>
|
|
1380
|
-
* <p>Call <code>GetRealtimeLogConfig</code> to get the current real-time log
|
|
1381
|
-
* configuration.</p>
|
|
1382
|
-
* </li>
|
|
1383
|
-
* <li>
|
|
1384
|
-
* <p>Locally modify the parameters in the real-time log configuration that you want
|
|
1385
|
-
* to update.</p>
|
|
1386
|
-
* </li>
|
|
1387
|
-
* <li>
|
|
1388
|
-
* <p>Call this API (<code>UpdateRealtimeLogConfig</code>) by providing the entire
|
|
1389
|
-
* real-time log configuration, including the parameters that you modified and
|
|
1390
|
-
* those that you didn't.</p>
|
|
1391
|
-
* </li>
|
|
1392
|
-
* </ol>
|
|
1393
|
-
* <p>You cannot update a real-time log configuration's <code>Name</code> or
|
|
1394
|
-
* <code>ARN</code>.</p>
|
|
729
|
+
* @see {@link UpdateRealtimeLogConfigCommand}
|
|
1395
730
|
*/
|
|
1396
731
|
updateRealtimeLogConfig(args: UpdateRealtimeLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRealtimeLogConfigCommandOutput>;
|
|
1397
732
|
updateRealtimeLogConfig(args: UpdateRealtimeLogConfigCommandInput, cb: (err: any, data?: UpdateRealtimeLogConfigCommandOutput) => void): void;
|
|
1398
733
|
updateRealtimeLogConfig(args: UpdateRealtimeLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRealtimeLogConfigCommandOutput) => void): void;
|
|
1399
734
|
/**
|
|
1400
|
-
* @
|
|
1401
|
-
* <p>Updates a response headers policy.</p>
|
|
1402
|
-
* <p>When you update a response headers policy, the entire policy is replaced. You cannot
|
|
1403
|
-
* update some policy fields independent of others. To update a response headers policy
|
|
1404
|
-
* configuration:</p>
|
|
1405
|
-
* <ol>
|
|
1406
|
-
* <li>
|
|
1407
|
-
* <p>Use <code>GetResponseHeadersPolicyConfig</code> to get the current policy's
|
|
1408
|
-
* configuration.</p>
|
|
1409
|
-
* </li>
|
|
1410
|
-
* <li>
|
|
1411
|
-
* <p>Modify the fields in the response headers policy configuration that you want
|
|
1412
|
-
* to update.</p>
|
|
1413
|
-
* </li>
|
|
1414
|
-
* <li>
|
|
1415
|
-
* <p>Call <code>UpdateResponseHeadersPolicy</code>, providing the entire response
|
|
1416
|
-
* headers policy configuration, including the fields that you modified and those
|
|
1417
|
-
* that you didn't.</p>
|
|
1418
|
-
* </li>
|
|
1419
|
-
* </ol>
|
|
735
|
+
* @see {@link UpdateResponseHeadersPolicyCommand}
|
|
1420
736
|
*/
|
|
1421
737
|
updateResponseHeadersPolicy(args: UpdateResponseHeadersPolicyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResponseHeadersPolicyCommandOutput>;
|
|
1422
738
|
updateResponseHeadersPolicy(args: UpdateResponseHeadersPolicyCommandInput, cb: (err: any, data?: UpdateResponseHeadersPolicyCommandOutput) => void): void;
|
|
1423
739
|
updateResponseHeadersPolicy(args: UpdateResponseHeadersPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResponseHeadersPolicyCommandOutput) => void): void;
|
|
1424
740
|
/**
|
|
1425
|
-
* @
|
|
1426
|
-
* <p>Update a streaming distribution.</p>
|
|
741
|
+
* @see {@link UpdateStreamingDistributionCommand}
|
|
1427
742
|
*/
|
|
1428
743
|
updateStreamingDistribution(args: UpdateStreamingDistributionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStreamingDistributionCommandOutput>;
|
|
1429
744
|
updateStreamingDistribution(args: UpdateStreamingDistributionCommandInput, cb: (err: any, data?: UpdateStreamingDistributionCommandOutput) => void): void;
|
|
1430
745
|
updateStreamingDistribution(args: UpdateStreamingDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStreamingDistributionCommandOutput) => void): void;
|
|
1431
746
|
}
|
|
747
|
+
/**
|
|
748
|
+
* @public
|
|
749
|
+
* <fullname>Amazon CloudFront</fullname>
|
|
750
|
+
* <p>This is the <i>Amazon CloudFront API Reference</i>. This guide is for developers
|
|
751
|
+
* who need detailed information about CloudFront API actions, data types, and errors. For
|
|
752
|
+
* detailed information about CloudFront features, see the
|
|
753
|
+
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
754
|
+
*/
|
|
755
|
+
export declare class CloudFront extends CloudFrontClient implements CloudFront {
|
|
756
|
+
}
|