@aws-sdk/client-cloudfront 3.213.0 → 3.214.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.
Files changed (69) hide show
  1. package/dist-cjs/CloudFront.js +105 -0
  2. package/dist-cjs/commands/CopyDistributionCommand.js +46 -0
  3. package/dist-cjs/commands/CreateContinuousDeploymentPolicyCommand.js +46 -0
  4. package/dist-cjs/commands/CreateStreamingDistributionCommand.js +3 -3
  5. package/dist-cjs/commands/CreateStreamingDistributionWithTagsCommand.js +3 -3
  6. package/dist-cjs/commands/DeleteCachePolicyCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteContinuousDeploymentPolicyCommand.js +46 -0
  8. package/dist-cjs/commands/GetContinuousDeploymentPolicyCommand.js +46 -0
  9. package/dist-cjs/commands/GetContinuousDeploymentPolicyConfigCommand.js +46 -0
  10. package/dist-cjs/commands/ListContinuousDeploymentPoliciesCommand.js +46 -0
  11. package/dist-cjs/commands/UpdateContinuousDeploymentPolicyCommand.js +46 -0
  12. package/dist-cjs/commands/index.js +7 -0
  13. package/dist-cjs/endpoint/ruleset.js +11 -11
  14. package/dist-cjs/models/models_0.js +405 -297
  15. package/dist-cjs/models/models_1.js +146 -4
  16. package/dist-cjs/protocols/Aws_restXml.js +895 -16
  17. package/dist-es/CloudFront.js +105 -0
  18. package/dist-es/commands/CopyDistributionCommand.js +42 -0
  19. package/dist-es/commands/CreateContinuousDeploymentPolicyCommand.js +42 -0
  20. package/dist-es/commands/CreateStreamingDistributionCommand.js +1 -1
  21. package/dist-es/commands/CreateStreamingDistributionWithTagsCommand.js +1 -1
  22. package/dist-es/commands/DeleteCachePolicyCommand.js +1 -1
  23. package/dist-es/commands/DeleteContinuousDeploymentPolicyCommand.js +42 -0
  24. package/dist-es/commands/GetContinuousDeploymentPolicyCommand.js +42 -0
  25. package/dist-es/commands/GetContinuousDeploymentPolicyConfigCommand.js +42 -0
  26. package/dist-es/commands/ListContinuousDeploymentPoliciesCommand.js +42 -0
  27. package/dist-es/commands/UpdateContinuousDeploymentPolicyCommand.js +42 -0
  28. package/dist-es/commands/index.js +7 -0
  29. package/dist-es/endpoint/ruleset.js +11 -11
  30. package/dist-es/models/models_0.js +366 -257
  31. package/dist-es/models/models_1.js +117 -0
  32. package/dist-es/protocols/Aws_restXml.js +876 -12
  33. package/dist-types/CloudFront.d.ts +114 -76
  34. package/dist-types/CloudFrontClient.d.ts +9 -2
  35. package/dist-types/commands/CopyDistributionCommand.d.ts +43 -0
  36. package/dist-types/commands/CreateContinuousDeploymentPolicyCommand.d.ts +46 -0
  37. package/dist-types/commands/CreateDistributionCommand.d.ts +1 -13
  38. package/dist-types/commands/CreateStreamingDistributionCommand.d.ts +1 -1
  39. package/dist-types/commands/CreateStreamingDistributionWithTagsCommand.d.ts +1 -1
  40. package/dist-types/commands/DeleteCachePolicyCommand.d.ts +1 -1
  41. package/dist-types/commands/DeleteContinuousDeploymentPolicyCommand.d.ts +40 -0
  42. package/dist-types/commands/GetContinuousDeploymentPolicyCommand.d.ts +38 -0
  43. package/dist-types/commands/GetContinuousDeploymentPolicyConfigCommand.d.ts +37 -0
  44. package/dist-types/commands/ListContinuousDeploymentPoliciesCommand.d.ts +42 -0
  45. package/dist-types/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +57 -0
  46. package/dist-types/commands/UpdateDistributionCommand.d.ts +20 -63
  47. package/dist-types/commands/index.d.ts +7 -0
  48. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  49. package/dist-types/models/models_0.d.ts +824 -784
  50. package/dist-types/models/models_1.d.ts +458 -2
  51. package/dist-types/protocols/Aws_restXml.d.ts +21 -0
  52. package/dist-types/ts3.4/CloudFront.d.ts +125 -0
  53. package/dist-types/ts3.4/CloudFrontClient.d.ts +42 -0
  54. package/dist-types/ts3.4/commands/CopyDistributionCommand.d.ts +37 -0
  55. package/dist-types/ts3.4/commands/CreateContinuousDeploymentPolicyCommand.d.ts +41 -0
  56. package/dist-types/ts3.4/commands/CreateStreamingDistributionCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/CreateStreamingDistributionWithTagsCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/DeleteCachePolicyCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/DeleteContinuousDeploymentPolicyCommand.d.ts +37 -0
  60. package/dist-types/ts3.4/commands/GetContinuousDeploymentPolicyCommand.d.ts +41 -0
  61. package/dist-types/ts3.4/commands/GetContinuousDeploymentPolicyConfigCommand.d.ts +41 -0
  62. package/dist-types/ts3.4/commands/ListContinuousDeploymentPoliciesCommand.d.ts +41 -0
  63. package/dist-types/ts3.4/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +41 -0
  64. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  65. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  66. package/dist-types/ts3.4/models/models_0.d.ts +376 -338
  67. package/dist-types/ts3.4/models/models_1.d.ts +196 -4
  68. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +84 -0
  69. package/package.json +1 -1
@@ -1,6 +1,259 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { CloudFrontServiceException as __BaseException } from "./CloudFrontServiceException";
3
- import { Aliases, AliasICPRecordal, CacheBehaviors, CachePolicy, CachePolicyConfig, CachePolicyList, CachePolicyType, CloudFrontOriginAccessIdentity, CloudFrontOriginAccessIdentityConfig, ContentTypeProfileConfig, CustomErrorResponses, DefaultCacheBehavior, Distribution, DistributionConfig, EncryptionEntities, EndPoint, FieldLevelEncryption, FieldLevelEncryptionConfig, FieldLevelEncryptionProfile, FieldLevelEncryptionProfileConfig, FunctionConfig, FunctionStage, FunctionSummary, HttpVersion, Invalidation, KeyGroup, KeyGroupConfig, MonitoringSubscription, OriginAccessControl, OriginAccessControlConfig, OriginAccessControlOriginTypes, OriginAccessControlSigningBehaviors, OriginAccessControlSigningProtocols, OriginGroups, OriginRequestPolicy, OriginRequestPolicyConfig, Origins, PriceClass, PublicKey, PublicKeyConfig, QueryArgProfileConfig, RealtimeLogConfig, ResponseHeadersPolicy, ResponseHeadersPolicyConfig, Restrictions, S3Origin, StreamingDistribution, StreamingDistributionConfig, Tags, TrustedSigners, ViewerCertificate } from "./models_0";
3
+ import { ActiveTrustedSigners, Aliases, AliasICPRecordal, CacheBehaviors, CachePolicy, CachePolicyConfig, CachePolicyList, CachePolicyType, CloudFrontOriginAccessIdentity, CloudFrontOriginAccessIdentityConfig, ContentTypeProfileConfig, ContinuousDeploymentPolicy, ContinuousDeploymentPolicyConfig, CustomErrorResponses, DefaultCacheBehavior, Distribution, DistributionConfig, EncryptionEntities, EndPoint, FieldLevelEncryption, FieldLevelEncryptionConfig, FieldLevelEncryptionProfile, FieldLevelEncryptionProfileConfig, FunctionConfig, FunctionStage, FunctionSummary, HttpVersion, Invalidation, KeyGroup, KeyGroupConfig, MonitoringSubscription, OriginAccessControl, OriginAccessControlConfig, OriginAccessControlOriginTypes, OriginAccessControlSigningBehaviors, OriginAccessControlSigningProtocols, OriginGroups, OriginRequestPolicy, OriginRequestPolicyConfig, Origins, PriceClass, PublicKey, PublicKeyConfig, QueryArgProfileConfig, RealtimeLogConfig, ResponseHeadersPolicy, ResponseHeadersPolicyConfig, Restrictions, StreamingLoggingConfig, Tags, TrustedSigners, ViewerCertificate } from "./models_0";
4
+ /**
5
+ * <p>A complex type that contains information about the Amazon S3 bucket from which you want
6
+ * CloudFront to get your media files for distribution.</p>
7
+ */
8
+ export interface S3Origin {
9
+ /**
10
+ * <p>The DNS name of the Amazon S3 origin. </p>
11
+ */
12
+ DomainName: string | undefined;
13
+ /**
14
+ * <p>The CloudFront origin access identity to associate with the distribution. Use an origin
15
+ * access identity to configure the distribution so that end users can only access objects in an
16
+ * Amazon S3 bucket through CloudFront.</p>
17
+ * <p>If you want end users to be able to access objects using either the CloudFront URL or the
18
+ * Amazon S3 URL, specify an empty <code>OriginAccessIdentity</code> element.</p>
19
+ * <p>To delete the origin access identity from an existing distribution, update the
20
+ * distribution configuration and include an empty <code>OriginAccessIdentity</code>
21
+ * element.</p>
22
+ * <p>To replace the origin access identity, update the distribution configuration and
23
+ * specify the new origin access identity.</p>
24
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html">Using an Origin Access
25
+ * Identity to Restrict Access to Your Amazon S3 Content</a> in the <i>
26
+ * Amazon CloudFront Developer Guide</i>.</p>
27
+ */
28
+ OriginAccessIdentity: string | undefined;
29
+ }
30
+ /**
31
+ * <p>The RTMP distribution's configuration information.</p>
32
+ */
33
+ export interface StreamingDistributionConfig {
34
+ /**
35
+ * <p>A unique value (for example, a date-time stamp) that ensures that the request can't be
36
+ * replayed.</p>
37
+ * <p>If the value of <code>CallerReference</code> is new (regardless of the content of the
38
+ * <code>StreamingDistributionConfig</code> object), CloudFront creates a new distribution.</p>
39
+ * <p>If <code>CallerReference</code> is a value that you already sent in a previous request to
40
+ * create a distribution, CloudFront returns a <code>DistributionAlreadyExists</code> error.</p>
41
+ */
42
+ CallerReference: string | undefined;
43
+ /**
44
+ * <p>A complex type that contains information about the Amazon S3 bucket from which you want
45
+ * CloudFront to get your media files for distribution. </p>
46
+ */
47
+ S3Origin: S3Origin | undefined;
48
+ /**
49
+ * <p>A complex type that contains information about CNAMEs (alternate domain names), if any,
50
+ * for this streaming distribution. </p>
51
+ */
52
+ Aliases?: Aliases;
53
+ /**
54
+ * <p>Any comments you want to include about the streaming distribution. </p>
55
+ */
56
+ Comment: string | undefined;
57
+ /**
58
+ * <p>A complex type that controls whether access logs are written for the streaming
59
+ * distribution. </p>
60
+ */
61
+ Logging?: StreamingLoggingConfig;
62
+ /**
63
+ * <p>A complex type that specifies any Amazon Web Services accounts that you want to permit to create signed
64
+ * URLs for private content. If you want the distribution to use signed URLs, include this
65
+ * element; if you want the distribution to use public URLs, remove this element. For more
66
+ * information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html">Serving Private Content through
67
+ * CloudFront</a> in the <i>Amazon CloudFront Developer Guide</i>. </p>
68
+ */
69
+ TrustedSigners: TrustedSigners | undefined;
70
+ /**
71
+ * <p>A complex type that contains information about price class for this streaming
72
+ * distribution. </p>
73
+ */
74
+ PriceClass?: PriceClass | string;
75
+ /**
76
+ * <p>Whether the streaming distribution is enabled to accept user requests for
77
+ * content.</p>
78
+ */
79
+ Enabled: boolean | undefined;
80
+ }
81
+ /**
82
+ * <p>The request to create a new streaming distribution.</p>
83
+ */
84
+ export interface CreateStreamingDistributionRequest {
85
+ /**
86
+ * <p>The streaming distribution's configuration information.</p>
87
+ */
88
+ StreamingDistributionConfig: StreamingDistributionConfig | undefined;
89
+ }
90
+ /**
91
+ * <p>A streaming distribution tells CloudFront where you want RTMP content to be delivered from, and the details about how to
92
+ * track and manage content delivery.</p>
93
+ */
94
+ export interface StreamingDistribution {
95
+ /**
96
+ * <p>The identifier for the RTMP distribution. For example:
97
+ * <code>EGTXBD79EXAMPLE</code>.</p>
98
+ */
99
+ Id: string | undefined;
100
+ /**
101
+ * <p>The ARN (Amazon Resource Name) for the distribution. For example:
102
+ * <code>arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5</code>, where
103
+ * <code>123456789012</code> is your Amazon Web Services account ID.</p>
104
+ */
105
+ ARN: string | undefined;
106
+ /**
107
+ * <p>The current status of the RTMP distribution. When the status is <code>Deployed</code>,
108
+ * the distribution's information is propagated to all CloudFront edge locations.</p>
109
+ */
110
+ Status: string | undefined;
111
+ /**
112
+ * <p>The date and time that the distribution was last modified. </p>
113
+ */
114
+ LastModifiedTime?: Date;
115
+ /**
116
+ * <p>The domain name that corresponds to the streaming distribution, for example, <code>s5c39gqb8ow64r.cloudfront.net</code>. </p>
117
+ */
118
+ DomainName: string | undefined;
119
+ /**
120
+ * <p>A complex type that lists the Amazon Web Services accounts, if any, that you included in the
121
+ * <code>TrustedSigners</code> complex type for this distribution. These are the accounts that
122
+ * you want to allow to create signed URLs for private content.</p>
123
+ * <p>The <code>Signer</code> complex type lists the Amazon Web Services account number of the trusted
124
+ * signer or <code>self</code> if the signer is the Amazon Web Services account that created the distribution.
125
+ * The <code>Signer</code> element also includes the IDs of any active CloudFront key pairs that are
126
+ * associated with the trusted signer's Amazon Web Services account. If no <code>KeyPairId</code> element
127
+ * appears for a <code>Signer</code>, that signer can't create signed URLs.</p>
128
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html">Serving Private
129
+ * Content through CloudFront</a> in the <i>Amazon CloudFront Developer Guide</i>. </p>
130
+ */
131
+ ActiveTrustedSigners: ActiveTrustedSigners | undefined;
132
+ /**
133
+ * <p>The current configuration information for the RTMP distribution.</p>
134
+ */
135
+ StreamingDistributionConfig: StreamingDistributionConfig | undefined;
136
+ }
137
+ /**
138
+ * <p>The returned result of the corresponding request.</p>
139
+ */
140
+ export interface CreateStreamingDistributionResult {
141
+ /**
142
+ * <p>The streaming distribution's information.</p>
143
+ */
144
+ StreamingDistribution?: StreamingDistribution;
145
+ /**
146
+ * <p>The fully qualified URI of the new streaming distribution resource just created.</p>
147
+ */
148
+ Location?: string;
149
+ /**
150
+ * <p>The current version of the streaming distribution created.</p>
151
+ */
152
+ ETag?: string;
153
+ }
154
+ /**
155
+ * <p>The caller reference you attempted to create the streaming distribution with
156
+ * is associated with another distribution</p>
157
+ */
158
+ export declare class StreamingDistributionAlreadyExists extends __BaseException {
159
+ readonly name: "StreamingDistributionAlreadyExists";
160
+ readonly $fault: "client";
161
+ Message?: string;
162
+ /**
163
+ * @internal
164
+ */
165
+ constructor(opts: __ExceptionOptionType<StreamingDistributionAlreadyExists, __BaseException>);
166
+ }
167
+ /**
168
+ * <p>Your request contains more CNAMEs than are allowed per distribution.</p>
169
+ */
170
+ export declare class TooManyStreamingDistributionCNAMEs extends __BaseException {
171
+ readonly name: "TooManyStreamingDistributionCNAMEs";
172
+ readonly $fault: "client";
173
+ Message?: string;
174
+ /**
175
+ * @internal
176
+ */
177
+ constructor(opts: __ExceptionOptionType<TooManyStreamingDistributionCNAMEs, __BaseException>);
178
+ }
179
+ /**
180
+ * <p>Processing your request would cause you to exceed the maximum number of streaming distributions allowed.</p>
181
+ */
182
+ export declare class TooManyStreamingDistributions extends __BaseException {
183
+ readonly name: "TooManyStreamingDistributions";
184
+ readonly $fault: "client";
185
+ Message?: string;
186
+ /**
187
+ * @internal
188
+ */
189
+ constructor(opts: __ExceptionOptionType<TooManyStreamingDistributions, __BaseException>);
190
+ }
191
+ /**
192
+ * <p>A streaming distribution Configuration and a list of tags to be associated with the
193
+ * streaming distribution.</p>
194
+ */
195
+ export interface StreamingDistributionConfigWithTags {
196
+ /**
197
+ * <p>A streaming distribution Configuration.</p>
198
+ */
199
+ StreamingDistributionConfig: StreamingDistributionConfig | undefined;
200
+ /**
201
+ * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
202
+ */
203
+ Tags: Tags | undefined;
204
+ }
205
+ /**
206
+ * <p>The request to create a new streaming distribution with tags.</p>
207
+ */
208
+ export interface CreateStreamingDistributionWithTagsRequest {
209
+ /**
210
+ * <p> The streaming distribution's configuration information. </p>
211
+ */
212
+ StreamingDistributionConfigWithTags: StreamingDistributionConfigWithTags | undefined;
213
+ }
214
+ /**
215
+ * <p>The returned result of the corresponding request. </p>
216
+ */
217
+ export interface CreateStreamingDistributionWithTagsResult {
218
+ /**
219
+ * <p>The streaming distribution's information. </p>
220
+ */
221
+ StreamingDistribution?: StreamingDistribution;
222
+ /**
223
+ * <p>The fully qualified URI of the new streaming distribution resource just created.</p>
224
+ */
225
+ Location?: string;
226
+ /**
227
+ * <p>The current version of the distribution created.</p>
228
+ */
229
+ ETag?: string;
230
+ }
231
+ export interface DeleteCachePolicyRequest {
232
+ /**
233
+ * <p>The unique identifier for the cache policy that you are deleting. To get the
234
+ * identifier, you can use <code>ListCachePolicies</code>.</p>
235
+ */
236
+ Id: string | undefined;
237
+ /**
238
+ * <p>The version of the cache policy that you are deleting. The version is the cache
239
+ * policy’s <code>ETag</code> value, which you can get using
240
+ * <code>ListCachePolicies</code>, <code>GetCachePolicy</code>, or
241
+ * <code>GetCachePolicyConfig</code>.</p>
242
+ */
243
+ IfMatch?: string;
244
+ }
245
+ /**
246
+ * <p>You cannot delete a managed policy.</p>
247
+ */
248
+ export declare class IllegalDelete extends __BaseException {
249
+ readonly name: "IllegalDelete";
250
+ readonly $fault: "client";
251
+ Message?: string;
252
+ /**
253
+ * @internal
254
+ */
255
+ constructor(opts: __ExceptionOptionType<IllegalDelete, __BaseException>);
256
+ }
4
257
  /**
5
258
  * <p>The Origin Access Identity specified is already in use.</p>
6
259
  */
@@ -39,6 +292,17 @@ export declare class NoSuchCloudFrontOriginAccessIdentity extends __BaseExceptio
39
292
  */
40
293
  constructor(opts: __ExceptionOptionType<NoSuchCloudFrontOriginAccessIdentity, __BaseException>);
41
294
  }
295
+ export interface DeleteContinuousDeploymentPolicyRequest {
296
+ /**
297
+ * <p>The identifier of the continuous deployment policy that you are deleting.</p>
298
+ */
299
+ Id: string | undefined;
300
+ /**
301
+ * <p>The current version (<code>ETag</code> value) of the continuous deployment policy that
302
+ * you are deleting.</p>
303
+ */
304
+ IfMatch?: string;
305
+ }
42
306
  /**
43
307
  * <p>This action deletes a web distribution. To delete a web distribution using the CloudFront
44
308
  * API, perform the following steps.</p>
@@ -534,6 +798,39 @@ export interface GetCloudFrontOriginAccessIdentityConfigResult {
534
798
  */
535
799
  ETag?: string;
536
800
  }
801
+ export interface GetContinuousDeploymentPolicyRequest {
802
+ /**
803
+ * <p>The identifier of the continuous deployment policy that you are getting.</p>
804
+ */
805
+ Id: string | undefined;
806
+ }
807
+ export interface GetContinuousDeploymentPolicyResult {
808
+ /**
809
+ * <p>A continuous deployment policy.</p>
810
+ */
811
+ ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
812
+ /**
813
+ * <p>The version identifier for the current version of the continuous deployment policy.</p>
814
+ */
815
+ ETag?: string;
816
+ }
817
+ export interface GetContinuousDeploymentPolicyConfigRequest {
818
+ /**
819
+ * <p>The identifier of the continuous deployment policy whose configuration you are
820
+ * getting.</p>
821
+ */
822
+ Id: string | undefined;
823
+ }
824
+ export interface GetContinuousDeploymentPolicyConfigResult {
825
+ /**
826
+ * <p>Contains the configuration for a continuous deployment policy.</p>
827
+ */
828
+ ContinuousDeploymentPolicyConfig?: ContinuousDeploymentPolicyConfig;
829
+ /**
830
+ * <p>The version identifier for the current version of the continuous deployment policy.</p>
831
+ */
832
+ ETag?: string;
833
+ }
537
834
  /**
538
835
  * <p>The request to get a distribution's information.</p>
539
836
  */
@@ -1159,6 +1456,57 @@ export interface ListConflictingAliasesResult {
1159
1456
  */
1160
1457
  ConflictingAliasesList?: ConflictingAliasesList;
1161
1458
  }
1459
+ export interface ListContinuousDeploymentPoliciesRequest {
1460
+ /**
1461
+ * <p>Use this field when paginating results to indicate where to begin in your list of
1462
+ * continuous deployment policies. The response includes policies in the list that occur
1463
+ * after the marker. To get the next page of the list, set this field’s value to the value
1464
+ * of <code>NextMarker</code> from the current page’s response.</p>
1465
+ */
1466
+ Marker?: string;
1467
+ /**
1468
+ * <p>The maximum number of continuous deployment policies that you want returned in the
1469
+ * response.</p>
1470
+ */
1471
+ MaxItems?: number;
1472
+ }
1473
+ /**
1474
+ * <p>A summary of the information about your continuous deployment policies.</p>
1475
+ */
1476
+ export interface ContinuousDeploymentPolicySummary {
1477
+ /**
1478
+ * <p>The continuous deployment policy.</p>
1479
+ */
1480
+ ContinuousDeploymentPolicy: ContinuousDeploymentPolicy | undefined;
1481
+ }
1482
+ /**
1483
+ * <p>Contains a list of continuous deployment policies.</p>
1484
+ */
1485
+ export interface ContinuousDeploymentPolicyList {
1486
+ /**
1487
+ * <p>Indicates the next page of continuous deployment policies. To get the next page of the list,
1488
+ * use this value in the <code>Marker</code> field of your request.</p>
1489
+ */
1490
+ NextMarker?: string;
1491
+ /**
1492
+ * <p>The maximum number of continuous deployment policies that were specified in your request.</p>
1493
+ */
1494
+ MaxItems: number | undefined;
1495
+ /**
1496
+ * <p>The total number of continuous deployment policies in your Amazon Web Services account, regardless of the <code>MaxItems</code> value.</p>
1497
+ */
1498
+ Quantity: number | undefined;
1499
+ /**
1500
+ * <p>A list of continuous deployment policy items.</p>
1501
+ */
1502
+ Items?: ContinuousDeploymentPolicySummary[];
1503
+ }
1504
+ export interface ListContinuousDeploymentPoliciesResult {
1505
+ /**
1506
+ * <p>A list of continuous deployment policies.</p>
1507
+ */
1508
+ ContinuousDeploymentPolicyList?: ContinuousDeploymentPolicyList;
1509
+ }
1162
1510
  /**
1163
1511
  * <p>The request to list your distributions. </p>
1164
1512
  */
@@ -1941,7 +2289,10 @@ export interface ListOriginAccessControlsResult {
1941
2289
  */
1942
2290
  OriginAccessControlList?: OriginAccessControlList;
1943
2291
  }
1944
- export declare type OriginRequestPolicyType = "custom" | "managed";
2292
+ export declare enum OriginRequestPolicyType {
2293
+ custom = "custom",
2294
+ managed = "managed"
2295
+ }
1945
2296
  export interface ListOriginRequestPoliciesRequest {
1946
2297
  /**
1947
2298
  * <p>A filter to return only the specified kinds of origin request policies. Valid values
@@ -2531,6 +2882,31 @@ export interface UpdateCloudFrontOriginAccessIdentityResult {
2531
2882
  */
2532
2883
  ETag?: string;
2533
2884
  }
2885
+ export interface UpdateContinuousDeploymentPolicyRequest {
2886
+ /**
2887
+ * <p>The continuous deployment policy configuration.</p>
2888
+ */
2889
+ ContinuousDeploymentPolicyConfig: ContinuousDeploymentPolicyConfig | undefined;
2890
+ /**
2891
+ * <p>The identifier of the continuous deployment policy that you are updating.</p>
2892
+ */
2893
+ Id: string | undefined;
2894
+ /**
2895
+ * <p>The current version (<code>ETag</code> value) of the continuous deployment policy that you
2896
+ * are updating.</p>
2897
+ */
2898
+ IfMatch?: string;
2899
+ }
2900
+ export interface UpdateContinuousDeploymentPolicyResult {
2901
+ /**
2902
+ * <p>A continuous deployment policy.</p>
2903
+ */
2904
+ ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
2905
+ /**
2906
+ * <p>The version identifier for the current version of the continuous deployment policy.</p>
2907
+ */
2908
+ ETag?: string;
2909
+ }
2534
2910
  /**
2535
2911
  * <p>The request to update a distribution.</p>
2536
2912
  */
@@ -2838,10 +3214,50 @@ export interface UpdateStreamingDistributionResult {
2838
3214
  */
2839
3215
  ETag?: string;
2840
3216
  }
3217
+ /**
3218
+ * @internal
3219
+ */
3220
+ export declare const S3OriginFilterSensitiveLog: (obj: S3Origin) => any;
3221
+ /**
3222
+ * @internal
3223
+ */
3224
+ export declare const StreamingDistributionConfigFilterSensitiveLog: (obj: StreamingDistributionConfig) => any;
3225
+ /**
3226
+ * @internal
3227
+ */
3228
+ export declare const CreateStreamingDistributionRequestFilterSensitiveLog: (obj: CreateStreamingDistributionRequest) => any;
3229
+ /**
3230
+ * @internal
3231
+ */
3232
+ export declare const StreamingDistributionFilterSensitiveLog: (obj: StreamingDistribution) => any;
3233
+ /**
3234
+ * @internal
3235
+ */
3236
+ export declare const CreateStreamingDistributionResultFilterSensitiveLog: (obj: CreateStreamingDistributionResult) => any;
3237
+ /**
3238
+ * @internal
3239
+ */
3240
+ export declare const StreamingDistributionConfigWithTagsFilterSensitiveLog: (obj: StreamingDistributionConfigWithTags) => any;
3241
+ /**
3242
+ * @internal
3243
+ */
3244
+ export declare const CreateStreamingDistributionWithTagsRequestFilterSensitiveLog: (obj: CreateStreamingDistributionWithTagsRequest) => any;
3245
+ /**
3246
+ * @internal
3247
+ */
3248
+ export declare const CreateStreamingDistributionWithTagsResultFilterSensitiveLog: (obj: CreateStreamingDistributionWithTagsResult) => any;
3249
+ /**
3250
+ * @internal
3251
+ */
3252
+ export declare const DeleteCachePolicyRequestFilterSensitiveLog: (obj: DeleteCachePolicyRequest) => any;
2841
3253
  /**
2842
3254
  * @internal
2843
3255
  */
2844
3256
  export declare const DeleteCloudFrontOriginAccessIdentityRequestFilterSensitiveLog: (obj: DeleteCloudFrontOriginAccessIdentityRequest) => any;
3257
+ /**
3258
+ * @internal
3259
+ */
3260
+ export declare const DeleteContinuousDeploymentPolicyRequestFilterSensitiveLog: (obj: DeleteContinuousDeploymentPolicyRequest) => any;
2845
3261
  /**
2846
3262
  * @internal
2847
3263
  */
@@ -2934,6 +3350,22 @@ export declare const GetCloudFrontOriginAccessIdentityConfigRequestFilterSensiti
2934
3350
  * @internal
2935
3351
  */
2936
3352
  export declare const GetCloudFrontOriginAccessIdentityConfigResultFilterSensitiveLog: (obj: GetCloudFrontOriginAccessIdentityConfigResult) => any;
3353
+ /**
3354
+ * @internal
3355
+ */
3356
+ export declare const GetContinuousDeploymentPolicyRequestFilterSensitiveLog: (obj: GetContinuousDeploymentPolicyRequest) => any;
3357
+ /**
3358
+ * @internal
3359
+ */
3360
+ export declare const GetContinuousDeploymentPolicyResultFilterSensitiveLog: (obj: GetContinuousDeploymentPolicyResult) => any;
3361
+ /**
3362
+ * @internal
3363
+ */
3364
+ export declare const GetContinuousDeploymentPolicyConfigRequestFilterSensitiveLog: (obj: GetContinuousDeploymentPolicyConfigRequest) => any;
3365
+ /**
3366
+ * @internal
3367
+ */
3368
+ export declare const GetContinuousDeploymentPolicyConfigResultFilterSensitiveLog: (obj: GetContinuousDeploymentPolicyConfigResult) => any;
2937
3369
  /**
2938
3370
  * @internal
2939
3371
  */
@@ -3150,6 +3582,22 @@ export declare const ConflictingAliasesListFilterSensitiveLog: (obj: Conflicting
3150
3582
  * @internal
3151
3583
  */
3152
3584
  export declare const ListConflictingAliasesResultFilterSensitiveLog: (obj: ListConflictingAliasesResult) => any;
3585
+ /**
3586
+ * @internal
3587
+ */
3588
+ export declare const ListContinuousDeploymentPoliciesRequestFilterSensitiveLog: (obj: ListContinuousDeploymentPoliciesRequest) => any;
3589
+ /**
3590
+ * @internal
3591
+ */
3592
+ export declare const ContinuousDeploymentPolicySummaryFilterSensitiveLog: (obj: ContinuousDeploymentPolicySummary) => any;
3593
+ /**
3594
+ * @internal
3595
+ */
3596
+ export declare const ContinuousDeploymentPolicyListFilterSensitiveLog: (obj: ContinuousDeploymentPolicyList) => any;
3597
+ /**
3598
+ * @internal
3599
+ */
3600
+ export declare const ListContinuousDeploymentPoliciesResultFilterSensitiveLog: (obj: ListContinuousDeploymentPoliciesResult) => any;
3153
3601
  /**
3154
3602
  * @internal
3155
3603
  */
@@ -3442,6 +3890,14 @@ export declare const UpdateCloudFrontOriginAccessIdentityRequestFilterSensitiveL
3442
3890
  * @internal
3443
3891
  */
3444
3892
  export declare const UpdateCloudFrontOriginAccessIdentityResultFilterSensitiveLog: (obj: UpdateCloudFrontOriginAccessIdentityResult) => any;
3893
+ /**
3894
+ * @internal
3895
+ */
3896
+ export declare const UpdateContinuousDeploymentPolicyRequestFilterSensitiveLog: (obj: UpdateContinuousDeploymentPolicyRequest) => any;
3897
+ /**
3898
+ * @internal
3899
+ */
3900
+ export declare const UpdateContinuousDeploymentPolicyResultFilterSensitiveLog: (obj: UpdateContinuousDeploymentPolicyResult) => any;
3445
3901
  /**
3446
3902
  * @internal
3447
3903
  */