aws-sdk-core 2.11.107 → 2.11.108

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0e9624e8020f41b16abf3984906c101257433a5d
4
- data.tar.gz: 87a8b33af0240c6a68fe53d17adf9ee5a158891b
3
+ metadata.gz: 9147dee2d76cdbe17fdc6dc3abe2fabbaaa7b447
4
+ data.tar.gz: 424a7d334ad9603c06bca44697a0ec85917d5bb5
5
5
  SHA512:
6
- metadata.gz: 99b636374e96e26b82f1afcf7374a557023a84a33d5ad358c94f1a0a23e68c40219ca3bf7da722468368c4478e5e0f7526ec1f61fcd23e24d427185df33b96c8
7
- data.tar.gz: be03ce99e60b173e0934fa0e9d407d93c15c8ce886bbf654a7f645211c7883426db30bfe55676bf337b88b57fec833d3bac3eff79e64ec6848afad3cca12abef
6
+ metadata.gz: 0f8426ee7dee7df2806e4ab1e75170f9acd427ea2b9835e51e237ef416d06a43e97226c55b92021ad190dfc86b71e3dbf3839bb10e3674119e5a9a031a8b13ed
7
+ data.tar.gz: 79b8d8d35a2b1ce7769b7112d846cee15e54b6bcfc8b84d336618d424f2464fc1dec69b62a4d95ef94757169a8fc18d9a882558f7ec34c3478faa2e3eca706c1
@@ -5,6 +5,7 @@
5
5
  "endpointPrefix":"autoscaling",
6
6
  "protocol":"query",
7
7
  "serviceFullName":"Auto Scaling",
8
+ "serviceId":"Auto Scaling",
8
9
  "signatureVersion":"v4",
9
10
  "uid":"autoscaling-2011-01-01",
10
11
  "xmlNamespace":"http://autoscaling.amazonaws.com/doc/2011-01-01/"
@@ -54,6 +55,38 @@
54
55
  {"shape":"ServiceLinkedRoleFailure"}
55
56
  ]
56
57
  },
58
+ "BatchDeleteScheduledAction":{
59
+ "name":"BatchDeleteScheduledAction",
60
+ "http":{
61
+ "method":"POST",
62
+ "requestUri":"/"
63
+ },
64
+ "input":{"shape":"BatchDeleteScheduledActionType"},
65
+ "output":{
66
+ "shape":"BatchDeleteScheduledActionAnswer",
67
+ "resultWrapper":"BatchDeleteScheduledActionResult"
68
+ },
69
+ "errors":[
70
+ {"shape":"ResourceContentionFault"}
71
+ ]
72
+ },
73
+ "BatchPutScheduledUpdateGroupAction":{
74
+ "name":"BatchPutScheduledUpdateGroupAction",
75
+ "http":{
76
+ "method":"POST",
77
+ "requestUri":"/"
78
+ },
79
+ "input":{"shape":"BatchPutScheduledUpdateGroupActionType"},
80
+ "output":{
81
+ "shape":"BatchPutScheduledUpdateGroupActionAnswer",
82
+ "resultWrapper":"BatchPutScheduledUpdateGroupActionResult"
83
+ },
84
+ "errors":[
85
+ {"shape":"AlreadyExistsFault"},
86
+ {"shape":"LimitExceededFault"},
87
+ {"shape":"ResourceContentionFault"}
88
+ ]
89
+ },
57
90
  "CompleteLifecycleAction":{
58
91
  "name":"CompleteLifecycleAction",
59
92
  "http":{
@@ -976,6 +1009,40 @@
976
1009
  "member":{"shape":"XmlStringMaxLen255"},
977
1010
  "min":1
978
1011
  },
1012
+ "BatchDeleteScheduledActionAnswer":{
1013
+ "type":"structure",
1014
+ "members":{
1015
+ "FailedScheduledActions":{"shape":"FailedScheduledUpdateGroupActionRequests"}
1016
+ }
1017
+ },
1018
+ "BatchDeleteScheduledActionType":{
1019
+ "type":"structure",
1020
+ "required":[
1021
+ "AutoScalingGroupName",
1022
+ "ScheduledActionNames"
1023
+ ],
1024
+ "members":{
1025
+ "AutoScalingGroupName":{"shape":"ResourceName"},
1026
+ "ScheduledActionNames":{"shape":"ScheduledActionNames"}
1027
+ }
1028
+ },
1029
+ "BatchPutScheduledUpdateGroupActionAnswer":{
1030
+ "type":"structure",
1031
+ "members":{
1032
+ "FailedScheduledUpdateGroupActions":{"shape":"FailedScheduledUpdateGroupActionRequests"}
1033
+ }
1034
+ },
1035
+ "BatchPutScheduledUpdateGroupActionType":{
1036
+ "type":"structure",
1037
+ "required":[
1038
+ "AutoScalingGroupName",
1039
+ "ScheduledUpdateGroupActions"
1040
+ ],
1041
+ "members":{
1042
+ "AutoScalingGroupName":{"shape":"ResourceName"},
1043
+ "ScheduledUpdateGroupActions":{"shape":"ScheduledUpdateGroupActionRequests"}
1044
+ }
1045
+ },
979
1046
  "BlockDeviceEbsDeleteOnTermination":{"type":"boolean"},
980
1047
  "BlockDeviceEbsEncrypted":{"type":"boolean"},
981
1048
  "BlockDeviceEbsIops":{
@@ -1455,6 +1522,19 @@
1455
1522
  "AutoScalingGroupName":{"shape":"ResourceName"}
1456
1523
  }
1457
1524
  },
1525
+ "FailedScheduledUpdateGroupActionRequest":{
1526
+ "type":"structure",
1527
+ "required":["ScheduledActionName"],
1528
+ "members":{
1529
+ "ScheduledActionName":{"shape":"XmlStringMaxLen255"},
1530
+ "ErrorCode":{"shape":"XmlStringMaxLen64"},
1531
+ "ErrorMessage":{"shape":"XmlString"}
1532
+ }
1533
+ },
1534
+ "FailedScheduledUpdateGroupActionRequests":{
1535
+ "type":"list",
1536
+ "member":{"shape":"FailedScheduledUpdateGroupActionRequest"}
1537
+ },
1458
1538
  "Filter":{
1459
1539
  "type":"structure",
1460
1540
  "members":{
@@ -2055,6 +2135,23 @@
2055
2135
  "DesiredCapacity":{"shape":"AutoScalingGroupDesiredCapacity"}
2056
2136
  }
2057
2137
  },
2138
+ "ScheduledUpdateGroupActionRequest":{
2139
+ "type":"structure",
2140
+ "required":["ScheduledActionName"],
2141
+ "members":{
2142
+ "ScheduledActionName":{"shape":"XmlStringMaxLen255"},
2143
+ "StartTime":{"shape":"TimestampType"},
2144
+ "EndTime":{"shape":"TimestampType"},
2145
+ "Recurrence":{"shape":"XmlStringMaxLen255"},
2146
+ "MinSize":{"shape":"AutoScalingGroupMinSize"},
2147
+ "MaxSize":{"shape":"AutoScalingGroupMaxSize"},
2148
+ "DesiredCapacity":{"shape":"AutoScalingGroupDesiredCapacity"}
2149
+ }
2150
+ },
2151
+ "ScheduledUpdateGroupActionRequests":{
2152
+ "type":"list",
2153
+ "member":{"shape":"ScheduledUpdateGroupActionRequest"}
2154
+ },
2058
2155
  "ScheduledUpdateGroupActions":{
2059
2156
  "type":"list",
2060
2157
  "member":{"shape":"ScheduledUpdateGroupAction"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "DescribeScalingProcessTypes",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ },
10
+ {
11
+ "operationName": "CreateLaunchConfiguration",
12
+ "input": {
13
+ "LaunchConfigurationName": "hello, world",
14
+ "ImageId": "ami-12345678",
15
+ "InstanceType": "m1.small"
16
+ },
17
+ "errorExpectedFromService": true
18
+ }
19
+ ]
20
+ }
@@ -0,0 +1,3907 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2018-06-18",
5
+ "endpointPrefix":"cloudfront",
6
+ "globalEndpoint":"cloudfront.amazonaws.com",
7
+ "protocol":"rest-xml",
8
+ "serviceAbbreviation":"CloudFront",
9
+ "serviceFullName":"Amazon CloudFront",
10
+ "serviceId":"CloudFront",
11
+ "signatureVersion":"v4",
12
+ "uid":"cloudfront-2018-06-18"
13
+ },
14
+ "operations":{
15
+ "CreateCloudFrontOriginAccessIdentity":{
16
+ "name":"CreateCloudFrontOriginAccessIdentity2018_06_18",
17
+ "http":{
18
+ "method":"POST",
19
+ "requestUri":"/2018-06-18/origin-access-identity/cloudfront",
20
+ "responseCode":201
21
+ },
22
+ "input":{"shape":"CreateCloudFrontOriginAccessIdentityRequest"},
23
+ "output":{"shape":"CreateCloudFrontOriginAccessIdentityResult"},
24
+ "errors":[
25
+ {"shape":"CloudFrontOriginAccessIdentityAlreadyExists"},
26
+ {"shape":"MissingBody"},
27
+ {"shape":"TooManyCloudFrontOriginAccessIdentities"},
28
+ {"shape":"InvalidArgument"},
29
+ {"shape":"InconsistentQuantities"}
30
+ ]
31
+ },
32
+ "CreateDistribution":{
33
+ "name":"CreateDistribution2018_06_18",
34
+ "http":{
35
+ "method":"POST",
36
+ "requestUri":"/2018-06-18/distribution",
37
+ "responseCode":201
38
+ },
39
+ "input":{"shape":"CreateDistributionRequest"},
40
+ "output":{"shape":"CreateDistributionResult"},
41
+ "errors":[
42
+ {"shape":"CNAMEAlreadyExists"},
43
+ {"shape":"DistributionAlreadyExists"},
44
+ {"shape":"InvalidOrigin"},
45
+ {"shape":"InvalidOriginAccessIdentity"},
46
+ {"shape":"AccessDenied"},
47
+ {"shape":"TooManyTrustedSigners"},
48
+ {"shape":"TrustedSignerDoesNotExist"},
49
+ {"shape":"InvalidViewerCertificate"},
50
+ {"shape":"InvalidMinimumProtocolVersion"},
51
+ {"shape":"MissingBody"},
52
+ {"shape":"TooManyDistributionCNAMEs"},
53
+ {"shape":"TooManyDistributions"},
54
+ {"shape":"InvalidDefaultRootObject"},
55
+ {"shape":"InvalidRelativePath"},
56
+ {"shape":"InvalidErrorCode"},
57
+ {"shape":"InvalidResponseCode"},
58
+ {"shape":"InvalidArgument"},
59
+ {"shape":"InvalidRequiredProtocol"},
60
+ {"shape":"NoSuchOrigin"},
61
+ {"shape":"TooManyOrigins"},
62
+ {"shape":"TooManyCacheBehaviors"},
63
+ {"shape":"TooManyCookieNamesInWhiteList"},
64
+ {"shape":"InvalidForwardCookies"},
65
+ {"shape":"TooManyHeadersInForwardedValues"},
66
+ {"shape":"InvalidHeadersForS3Origin"},
67
+ {"shape":"InconsistentQuantities"},
68
+ {"shape":"TooManyCertificates"},
69
+ {"shape":"InvalidLocationCode"},
70
+ {"shape":"InvalidGeoRestrictionParameter"},
71
+ {"shape":"InvalidProtocolSettings"},
72
+ {"shape":"InvalidTTLOrder"},
73
+ {"shape":"InvalidWebACLId"},
74
+ {"shape":"TooManyOriginCustomHeaders"},
75
+ {"shape":"TooManyQueryStringParameters"},
76
+ {"shape":"InvalidQueryStringParameters"},
77
+ {"shape":"TooManyDistributionsWithLambdaAssociations"},
78
+ {"shape":"TooManyLambdaFunctionAssociations"},
79
+ {"shape":"InvalidLambdaFunctionAssociation"},
80
+ {"shape":"InvalidOriginReadTimeout"},
81
+ {"shape":"InvalidOriginKeepaliveTimeout"},
82
+ {"shape":"NoSuchFieldLevelEncryptionConfig"},
83
+ {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
84
+ {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
85
+ ]
86
+ },
87
+ "CreateDistributionWithTags":{
88
+ "name":"CreateDistributionWithTags2018_06_18",
89
+ "http":{
90
+ "method":"POST",
91
+ "requestUri":"/2018-06-18/distribution?WithTags",
92
+ "responseCode":201
93
+ },
94
+ "input":{"shape":"CreateDistributionWithTagsRequest"},
95
+ "output":{"shape":"CreateDistributionWithTagsResult"},
96
+ "errors":[
97
+ {"shape":"CNAMEAlreadyExists"},
98
+ {"shape":"DistributionAlreadyExists"},
99
+ {"shape":"InvalidOrigin"},
100
+ {"shape":"InvalidOriginAccessIdentity"},
101
+ {"shape":"AccessDenied"},
102
+ {"shape":"TooManyTrustedSigners"},
103
+ {"shape":"TrustedSignerDoesNotExist"},
104
+ {"shape":"InvalidViewerCertificate"},
105
+ {"shape":"InvalidMinimumProtocolVersion"},
106
+ {"shape":"MissingBody"},
107
+ {"shape":"TooManyDistributionCNAMEs"},
108
+ {"shape":"TooManyDistributions"},
109
+ {"shape":"InvalidDefaultRootObject"},
110
+ {"shape":"InvalidRelativePath"},
111
+ {"shape":"InvalidErrorCode"},
112
+ {"shape":"InvalidResponseCode"},
113
+ {"shape":"InvalidArgument"},
114
+ {"shape":"InvalidRequiredProtocol"},
115
+ {"shape":"NoSuchOrigin"},
116
+ {"shape":"TooManyOrigins"},
117
+ {"shape":"TooManyCacheBehaviors"},
118
+ {"shape":"TooManyCookieNamesInWhiteList"},
119
+ {"shape":"InvalidForwardCookies"},
120
+ {"shape":"TooManyHeadersInForwardedValues"},
121
+ {"shape":"InvalidHeadersForS3Origin"},
122
+ {"shape":"InconsistentQuantities"},
123
+ {"shape":"TooManyCertificates"},
124
+ {"shape":"InvalidLocationCode"},
125
+ {"shape":"InvalidGeoRestrictionParameter"},
126
+ {"shape":"InvalidProtocolSettings"},
127
+ {"shape":"InvalidTTLOrder"},
128
+ {"shape":"InvalidWebACLId"},
129
+ {"shape":"TooManyOriginCustomHeaders"},
130
+ {"shape":"InvalidTagging"},
131
+ {"shape":"TooManyQueryStringParameters"},
132
+ {"shape":"InvalidQueryStringParameters"},
133
+ {"shape":"TooManyDistributionsWithLambdaAssociations"},
134
+ {"shape":"TooManyLambdaFunctionAssociations"},
135
+ {"shape":"InvalidLambdaFunctionAssociation"},
136
+ {"shape":"InvalidOriginReadTimeout"},
137
+ {"shape":"InvalidOriginKeepaliveTimeout"},
138
+ {"shape":"NoSuchFieldLevelEncryptionConfig"},
139
+ {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
140
+ {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
141
+ ]
142
+ },
143
+ "CreateFieldLevelEncryptionConfig":{
144
+ "name":"CreateFieldLevelEncryptionConfig2018_06_18",
145
+ "http":{
146
+ "method":"POST",
147
+ "requestUri":"/2018-06-18/field-level-encryption",
148
+ "responseCode":201
149
+ },
150
+ "input":{"shape":"CreateFieldLevelEncryptionConfigRequest"},
151
+ "output":{"shape":"CreateFieldLevelEncryptionConfigResult"},
152
+ "errors":[
153
+ {"shape":"InconsistentQuantities"},
154
+ {"shape":"InvalidArgument"},
155
+ {"shape":"NoSuchFieldLevelEncryptionProfile"},
156
+ {"shape":"FieldLevelEncryptionConfigAlreadyExists"},
157
+ {"shape":"TooManyFieldLevelEncryptionConfigs"},
158
+ {"shape":"TooManyFieldLevelEncryptionQueryArgProfiles"},
159
+ {"shape":"TooManyFieldLevelEncryptionContentTypeProfiles"},
160
+ {"shape":"QueryArgProfileEmpty"}
161
+ ]
162
+ },
163
+ "CreateFieldLevelEncryptionProfile":{
164
+ "name":"CreateFieldLevelEncryptionProfile2018_06_18",
165
+ "http":{
166
+ "method":"POST",
167
+ "requestUri":"/2018-06-18/field-level-encryption-profile",
168
+ "responseCode":201
169
+ },
170
+ "input":{"shape":"CreateFieldLevelEncryptionProfileRequest"},
171
+ "output":{"shape":"CreateFieldLevelEncryptionProfileResult"},
172
+ "errors":[
173
+ {"shape":"InconsistentQuantities"},
174
+ {"shape":"InvalidArgument"},
175
+ {"shape":"NoSuchPublicKey"},
176
+ {"shape":"FieldLevelEncryptionProfileAlreadyExists"},
177
+ {"shape":"FieldLevelEncryptionProfileSizeExceeded"},
178
+ {"shape":"TooManyFieldLevelEncryptionProfiles"},
179
+ {"shape":"TooManyFieldLevelEncryptionEncryptionEntities"},
180
+ {"shape":"TooManyFieldLevelEncryptionFieldPatterns"}
181
+ ]
182
+ },
183
+ "CreateInvalidation":{
184
+ "name":"CreateInvalidation2018_06_18",
185
+ "http":{
186
+ "method":"POST",
187
+ "requestUri":"/2018-06-18/distribution/{DistributionId}/invalidation",
188
+ "responseCode":201
189
+ },
190
+ "input":{"shape":"CreateInvalidationRequest"},
191
+ "output":{"shape":"CreateInvalidationResult"},
192
+ "errors":[
193
+ {"shape":"AccessDenied"},
194
+ {"shape":"MissingBody"},
195
+ {"shape":"InvalidArgument"},
196
+ {"shape":"NoSuchDistribution"},
197
+ {"shape":"BatchTooLarge"},
198
+ {"shape":"TooManyInvalidationsInProgress"},
199
+ {"shape":"InconsistentQuantities"}
200
+ ]
201
+ },
202
+ "CreatePublicKey":{
203
+ "name":"CreatePublicKey2018_06_18",
204
+ "http":{
205
+ "method":"POST",
206
+ "requestUri":"/2018-06-18/public-key",
207
+ "responseCode":201
208
+ },
209
+ "input":{"shape":"CreatePublicKeyRequest"},
210
+ "output":{"shape":"CreatePublicKeyResult"},
211
+ "errors":[
212
+ {"shape":"PublicKeyAlreadyExists"},
213
+ {"shape":"InvalidArgument"},
214
+ {"shape":"TooManyPublicKeys"}
215
+ ]
216
+ },
217
+ "CreateStreamingDistribution":{
218
+ "name":"CreateStreamingDistribution2018_06_18",
219
+ "http":{
220
+ "method":"POST",
221
+ "requestUri":"/2018-06-18/streaming-distribution",
222
+ "responseCode":201
223
+ },
224
+ "input":{"shape":"CreateStreamingDistributionRequest"},
225
+ "output":{"shape":"CreateStreamingDistributionResult"},
226
+ "errors":[
227
+ {"shape":"CNAMEAlreadyExists"},
228
+ {"shape":"StreamingDistributionAlreadyExists"},
229
+ {"shape":"InvalidOrigin"},
230
+ {"shape":"InvalidOriginAccessIdentity"},
231
+ {"shape":"AccessDenied"},
232
+ {"shape":"TooManyTrustedSigners"},
233
+ {"shape":"TrustedSignerDoesNotExist"},
234
+ {"shape":"MissingBody"},
235
+ {"shape":"TooManyStreamingDistributionCNAMEs"},
236
+ {"shape":"TooManyStreamingDistributions"},
237
+ {"shape":"InvalidArgument"},
238
+ {"shape":"InconsistentQuantities"}
239
+ ]
240
+ },
241
+ "CreateStreamingDistributionWithTags":{
242
+ "name":"CreateStreamingDistributionWithTags2018_06_18",
243
+ "http":{
244
+ "method":"POST",
245
+ "requestUri":"/2018-06-18/streaming-distribution?WithTags",
246
+ "responseCode":201
247
+ },
248
+ "input":{"shape":"CreateStreamingDistributionWithTagsRequest"},
249
+ "output":{"shape":"CreateStreamingDistributionWithTagsResult"},
250
+ "errors":[
251
+ {"shape":"CNAMEAlreadyExists"},
252
+ {"shape":"StreamingDistributionAlreadyExists"},
253
+ {"shape":"InvalidOrigin"},
254
+ {"shape":"InvalidOriginAccessIdentity"},
255
+ {"shape":"AccessDenied"},
256
+ {"shape":"TooManyTrustedSigners"},
257
+ {"shape":"TrustedSignerDoesNotExist"},
258
+ {"shape":"MissingBody"},
259
+ {"shape":"TooManyStreamingDistributionCNAMEs"},
260
+ {"shape":"TooManyStreamingDistributions"},
261
+ {"shape":"InvalidArgument"},
262
+ {"shape":"InconsistentQuantities"},
263
+ {"shape":"InvalidTagging"}
264
+ ]
265
+ },
266
+ "DeleteCloudFrontOriginAccessIdentity":{
267
+ "name":"DeleteCloudFrontOriginAccessIdentity2018_06_18",
268
+ "http":{
269
+ "method":"DELETE",
270
+ "requestUri":"/2018-06-18/origin-access-identity/cloudfront/{Id}",
271
+ "responseCode":204
272
+ },
273
+ "input":{"shape":"DeleteCloudFrontOriginAccessIdentityRequest"},
274
+ "errors":[
275
+ {"shape":"AccessDenied"},
276
+ {"shape":"InvalidIfMatchVersion"},
277
+ {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
278
+ {"shape":"PreconditionFailed"},
279
+ {"shape":"CloudFrontOriginAccessIdentityInUse"}
280
+ ]
281
+ },
282
+ "DeleteDistribution":{
283
+ "name":"DeleteDistribution2018_06_18",
284
+ "http":{
285
+ "method":"DELETE",
286
+ "requestUri":"/2018-06-18/distribution/{Id}",
287
+ "responseCode":204
288
+ },
289
+ "input":{"shape":"DeleteDistributionRequest"},
290
+ "errors":[
291
+ {"shape":"AccessDenied"},
292
+ {"shape":"DistributionNotDisabled"},
293
+ {"shape":"InvalidIfMatchVersion"},
294
+ {"shape":"NoSuchDistribution"},
295
+ {"shape":"PreconditionFailed"}
296
+ ]
297
+ },
298
+ "DeleteFieldLevelEncryptionConfig":{
299
+ "name":"DeleteFieldLevelEncryptionConfig2018_06_18",
300
+ "http":{
301
+ "method":"DELETE",
302
+ "requestUri":"/2018-06-18/field-level-encryption/{Id}",
303
+ "responseCode":204
304
+ },
305
+ "input":{"shape":"DeleteFieldLevelEncryptionConfigRequest"},
306
+ "errors":[
307
+ {"shape":"AccessDenied"},
308
+ {"shape":"InvalidIfMatchVersion"},
309
+ {"shape":"NoSuchFieldLevelEncryptionConfig"},
310
+ {"shape":"PreconditionFailed"},
311
+ {"shape":"FieldLevelEncryptionConfigInUse"}
312
+ ]
313
+ },
314
+ "DeleteFieldLevelEncryptionProfile":{
315
+ "name":"DeleteFieldLevelEncryptionProfile2018_06_18",
316
+ "http":{
317
+ "method":"DELETE",
318
+ "requestUri":"/2018-06-18/field-level-encryption-profile/{Id}",
319
+ "responseCode":204
320
+ },
321
+ "input":{"shape":"DeleteFieldLevelEncryptionProfileRequest"},
322
+ "errors":[
323
+ {"shape":"AccessDenied"},
324
+ {"shape":"InvalidIfMatchVersion"},
325
+ {"shape":"NoSuchFieldLevelEncryptionProfile"},
326
+ {"shape":"PreconditionFailed"},
327
+ {"shape":"FieldLevelEncryptionProfileInUse"}
328
+ ]
329
+ },
330
+ "DeletePublicKey":{
331
+ "name":"DeletePublicKey2018_06_18",
332
+ "http":{
333
+ "method":"DELETE",
334
+ "requestUri":"/2018-06-18/public-key/{Id}",
335
+ "responseCode":204
336
+ },
337
+ "input":{"shape":"DeletePublicKeyRequest"},
338
+ "errors":[
339
+ {"shape":"AccessDenied"},
340
+ {"shape":"PublicKeyInUse"},
341
+ {"shape":"InvalidIfMatchVersion"},
342
+ {"shape":"NoSuchPublicKey"},
343
+ {"shape":"PreconditionFailed"}
344
+ ]
345
+ },
346
+ "DeleteStreamingDistribution":{
347
+ "name":"DeleteStreamingDistribution2018_06_18",
348
+ "http":{
349
+ "method":"DELETE",
350
+ "requestUri":"/2018-06-18/streaming-distribution/{Id}",
351
+ "responseCode":204
352
+ },
353
+ "input":{"shape":"DeleteStreamingDistributionRequest"},
354
+ "errors":[
355
+ {"shape":"AccessDenied"},
356
+ {"shape":"StreamingDistributionNotDisabled"},
357
+ {"shape":"InvalidIfMatchVersion"},
358
+ {"shape":"NoSuchStreamingDistribution"},
359
+ {"shape":"PreconditionFailed"}
360
+ ]
361
+ },
362
+ "GetCloudFrontOriginAccessIdentity":{
363
+ "name":"GetCloudFrontOriginAccessIdentity2018_06_18",
364
+ "http":{
365
+ "method":"GET",
366
+ "requestUri":"/2018-06-18/origin-access-identity/cloudfront/{Id}"
367
+ },
368
+ "input":{"shape":"GetCloudFrontOriginAccessIdentityRequest"},
369
+ "output":{"shape":"GetCloudFrontOriginAccessIdentityResult"},
370
+ "errors":[
371
+ {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
372
+ {"shape":"AccessDenied"}
373
+ ]
374
+ },
375
+ "GetCloudFrontOriginAccessIdentityConfig":{
376
+ "name":"GetCloudFrontOriginAccessIdentityConfig2018_06_18",
377
+ "http":{
378
+ "method":"GET",
379
+ "requestUri":"/2018-06-18/origin-access-identity/cloudfront/{Id}/config"
380
+ },
381
+ "input":{"shape":"GetCloudFrontOriginAccessIdentityConfigRequest"},
382
+ "output":{"shape":"GetCloudFrontOriginAccessIdentityConfigResult"},
383
+ "errors":[
384
+ {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
385
+ {"shape":"AccessDenied"}
386
+ ]
387
+ },
388
+ "GetDistribution":{
389
+ "name":"GetDistribution2018_06_18",
390
+ "http":{
391
+ "method":"GET",
392
+ "requestUri":"/2018-06-18/distribution/{Id}"
393
+ },
394
+ "input":{"shape":"GetDistributionRequest"},
395
+ "output":{"shape":"GetDistributionResult"},
396
+ "errors":[
397
+ {"shape":"NoSuchDistribution"},
398
+ {"shape":"AccessDenied"}
399
+ ]
400
+ },
401
+ "GetDistributionConfig":{
402
+ "name":"GetDistributionConfig2018_06_18",
403
+ "http":{
404
+ "method":"GET",
405
+ "requestUri":"/2018-06-18/distribution/{Id}/config"
406
+ },
407
+ "input":{"shape":"GetDistributionConfigRequest"},
408
+ "output":{"shape":"GetDistributionConfigResult"},
409
+ "errors":[
410
+ {"shape":"NoSuchDistribution"},
411
+ {"shape":"AccessDenied"}
412
+ ]
413
+ },
414
+ "GetFieldLevelEncryption":{
415
+ "name":"GetFieldLevelEncryption2018_06_18",
416
+ "http":{
417
+ "method":"GET",
418
+ "requestUri":"/2018-06-18/field-level-encryption/{Id}"
419
+ },
420
+ "input":{"shape":"GetFieldLevelEncryptionRequest"},
421
+ "output":{"shape":"GetFieldLevelEncryptionResult"},
422
+ "errors":[
423
+ {"shape":"AccessDenied"},
424
+ {"shape":"NoSuchFieldLevelEncryptionConfig"}
425
+ ]
426
+ },
427
+ "GetFieldLevelEncryptionConfig":{
428
+ "name":"GetFieldLevelEncryptionConfig2018_06_18",
429
+ "http":{
430
+ "method":"GET",
431
+ "requestUri":"/2018-06-18/field-level-encryption/{Id}/config"
432
+ },
433
+ "input":{"shape":"GetFieldLevelEncryptionConfigRequest"},
434
+ "output":{"shape":"GetFieldLevelEncryptionConfigResult"},
435
+ "errors":[
436
+ {"shape":"AccessDenied"},
437
+ {"shape":"NoSuchFieldLevelEncryptionConfig"}
438
+ ]
439
+ },
440
+ "GetFieldLevelEncryptionProfile":{
441
+ "name":"GetFieldLevelEncryptionProfile2018_06_18",
442
+ "http":{
443
+ "method":"GET",
444
+ "requestUri":"/2018-06-18/field-level-encryption-profile/{Id}"
445
+ },
446
+ "input":{"shape":"GetFieldLevelEncryptionProfileRequest"},
447
+ "output":{"shape":"GetFieldLevelEncryptionProfileResult"},
448
+ "errors":[
449
+ {"shape":"AccessDenied"},
450
+ {"shape":"NoSuchFieldLevelEncryptionProfile"}
451
+ ]
452
+ },
453
+ "GetFieldLevelEncryptionProfileConfig":{
454
+ "name":"GetFieldLevelEncryptionProfileConfig2018_06_18",
455
+ "http":{
456
+ "method":"GET",
457
+ "requestUri":"/2018-06-18/field-level-encryption-profile/{Id}/config"
458
+ },
459
+ "input":{"shape":"GetFieldLevelEncryptionProfileConfigRequest"},
460
+ "output":{"shape":"GetFieldLevelEncryptionProfileConfigResult"},
461
+ "errors":[
462
+ {"shape":"AccessDenied"},
463
+ {"shape":"NoSuchFieldLevelEncryptionProfile"}
464
+ ]
465
+ },
466
+ "GetInvalidation":{
467
+ "name":"GetInvalidation2018_06_18",
468
+ "http":{
469
+ "method":"GET",
470
+ "requestUri":"/2018-06-18/distribution/{DistributionId}/invalidation/{Id}"
471
+ },
472
+ "input":{"shape":"GetInvalidationRequest"},
473
+ "output":{"shape":"GetInvalidationResult"},
474
+ "errors":[
475
+ {"shape":"NoSuchInvalidation"},
476
+ {"shape":"NoSuchDistribution"},
477
+ {"shape":"AccessDenied"}
478
+ ]
479
+ },
480
+ "GetPublicKey":{
481
+ "name":"GetPublicKey2018_06_18",
482
+ "http":{
483
+ "method":"GET",
484
+ "requestUri":"/2018-06-18/public-key/{Id}"
485
+ },
486
+ "input":{"shape":"GetPublicKeyRequest"},
487
+ "output":{"shape":"GetPublicKeyResult"},
488
+ "errors":[
489
+ {"shape":"AccessDenied"},
490
+ {"shape":"NoSuchPublicKey"}
491
+ ]
492
+ },
493
+ "GetPublicKeyConfig":{
494
+ "name":"GetPublicKeyConfig2018_06_18",
495
+ "http":{
496
+ "method":"GET",
497
+ "requestUri":"/2018-06-18/public-key/{Id}/config"
498
+ },
499
+ "input":{"shape":"GetPublicKeyConfigRequest"},
500
+ "output":{"shape":"GetPublicKeyConfigResult"},
501
+ "errors":[
502
+ {"shape":"AccessDenied"},
503
+ {"shape":"NoSuchPublicKey"}
504
+ ]
505
+ },
506
+ "GetStreamingDistribution":{
507
+ "name":"GetStreamingDistribution2018_06_18",
508
+ "http":{
509
+ "method":"GET",
510
+ "requestUri":"/2018-06-18/streaming-distribution/{Id}"
511
+ },
512
+ "input":{"shape":"GetStreamingDistributionRequest"},
513
+ "output":{"shape":"GetStreamingDistributionResult"},
514
+ "errors":[
515
+ {"shape":"NoSuchStreamingDistribution"},
516
+ {"shape":"AccessDenied"}
517
+ ]
518
+ },
519
+ "GetStreamingDistributionConfig":{
520
+ "name":"GetStreamingDistributionConfig2018_06_18",
521
+ "http":{
522
+ "method":"GET",
523
+ "requestUri":"/2018-06-18/streaming-distribution/{Id}/config"
524
+ },
525
+ "input":{"shape":"GetStreamingDistributionConfigRequest"},
526
+ "output":{"shape":"GetStreamingDistributionConfigResult"},
527
+ "errors":[
528
+ {"shape":"NoSuchStreamingDistribution"},
529
+ {"shape":"AccessDenied"}
530
+ ]
531
+ },
532
+ "ListCloudFrontOriginAccessIdentities":{
533
+ "name":"ListCloudFrontOriginAccessIdentities2018_06_18",
534
+ "http":{
535
+ "method":"GET",
536
+ "requestUri":"/2018-06-18/origin-access-identity/cloudfront"
537
+ },
538
+ "input":{"shape":"ListCloudFrontOriginAccessIdentitiesRequest"},
539
+ "output":{"shape":"ListCloudFrontOriginAccessIdentitiesResult"},
540
+ "errors":[
541
+ {"shape":"InvalidArgument"}
542
+ ]
543
+ },
544
+ "ListDistributions":{
545
+ "name":"ListDistributions2018_06_18",
546
+ "http":{
547
+ "method":"GET",
548
+ "requestUri":"/2018-06-18/distribution"
549
+ },
550
+ "input":{"shape":"ListDistributionsRequest"},
551
+ "output":{"shape":"ListDistributionsResult"},
552
+ "errors":[
553
+ {"shape":"InvalidArgument"}
554
+ ]
555
+ },
556
+ "ListDistributionsByWebACLId":{
557
+ "name":"ListDistributionsByWebACLId2018_06_18",
558
+ "http":{
559
+ "method":"GET",
560
+ "requestUri":"/2018-06-18/distributionsByWebACLId/{WebACLId}"
561
+ },
562
+ "input":{"shape":"ListDistributionsByWebACLIdRequest"},
563
+ "output":{"shape":"ListDistributionsByWebACLIdResult"},
564
+ "errors":[
565
+ {"shape":"InvalidArgument"},
566
+ {"shape":"InvalidWebACLId"}
567
+ ]
568
+ },
569
+ "ListFieldLevelEncryptionConfigs":{
570
+ "name":"ListFieldLevelEncryptionConfigs2018_06_18",
571
+ "http":{
572
+ "method":"GET",
573
+ "requestUri":"/2018-06-18/field-level-encryption"
574
+ },
575
+ "input":{"shape":"ListFieldLevelEncryptionConfigsRequest"},
576
+ "output":{"shape":"ListFieldLevelEncryptionConfigsResult"},
577
+ "errors":[
578
+ {"shape":"InvalidArgument"}
579
+ ]
580
+ },
581
+ "ListFieldLevelEncryptionProfiles":{
582
+ "name":"ListFieldLevelEncryptionProfiles2018_06_18",
583
+ "http":{
584
+ "method":"GET",
585
+ "requestUri":"/2018-06-18/field-level-encryption-profile"
586
+ },
587
+ "input":{"shape":"ListFieldLevelEncryptionProfilesRequest"},
588
+ "output":{"shape":"ListFieldLevelEncryptionProfilesResult"},
589
+ "errors":[
590
+ {"shape":"InvalidArgument"}
591
+ ]
592
+ },
593
+ "ListInvalidations":{
594
+ "name":"ListInvalidations2018_06_18",
595
+ "http":{
596
+ "method":"GET",
597
+ "requestUri":"/2018-06-18/distribution/{DistributionId}/invalidation"
598
+ },
599
+ "input":{"shape":"ListInvalidationsRequest"},
600
+ "output":{"shape":"ListInvalidationsResult"},
601
+ "errors":[
602
+ {"shape":"InvalidArgument"},
603
+ {"shape":"NoSuchDistribution"},
604
+ {"shape":"AccessDenied"}
605
+ ]
606
+ },
607
+ "ListPublicKeys":{
608
+ "name":"ListPublicKeys2018_06_18",
609
+ "http":{
610
+ "method":"GET",
611
+ "requestUri":"/2018-06-18/public-key"
612
+ },
613
+ "input":{"shape":"ListPublicKeysRequest"},
614
+ "output":{"shape":"ListPublicKeysResult"},
615
+ "errors":[
616
+ {"shape":"InvalidArgument"}
617
+ ]
618
+ },
619
+ "ListStreamingDistributions":{
620
+ "name":"ListStreamingDistributions2018_06_18",
621
+ "http":{
622
+ "method":"GET",
623
+ "requestUri":"/2018-06-18/streaming-distribution"
624
+ },
625
+ "input":{"shape":"ListStreamingDistributionsRequest"},
626
+ "output":{"shape":"ListStreamingDistributionsResult"},
627
+ "errors":[
628
+ {"shape":"InvalidArgument"}
629
+ ]
630
+ },
631
+ "ListTagsForResource":{
632
+ "name":"ListTagsForResource2018_06_18",
633
+ "http":{
634
+ "method":"GET",
635
+ "requestUri":"/2018-06-18/tagging"
636
+ },
637
+ "input":{"shape":"ListTagsForResourceRequest"},
638
+ "output":{"shape":"ListTagsForResourceResult"},
639
+ "errors":[
640
+ {"shape":"AccessDenied"},
641
+ {"shape":"InvalidArgument"},
642
+ {"shape":"InvalidTagging"},
643
+ {"shape":"NoSuchResource"}
644
+ ]
645
+ },
646
+ "TagResource":{
647
+ "name":"TagResource2018_06_18",
648
+ "http":{
649
+ "method":"POST",
650
+ "requestUri":"/2018-06-18/tagging?Operation=Tag",
651
+ "responseCode":204
652
+ },
653
+ "input":{"shape":"TagResourceRequest"},
654
+ "errors":[
655
+ {"shape":"AccessDenied"},
656
+ {"shape":"InvalidArgument"},
657
+ {"shape":"InvalidTagging"},
658
+ {"shape":"NoSuchResource"}
659
+ ]
660
+ },
661
+ "UntagResource":{
662
+ "name":"UntagResource2018_06_18",
663
+ "http":{
664
+ "method":"POST",
665
+ "requestUri":"/2018-06-18/tagging?Operation=Untag",
666
+ "responseCode":204
667
+ },
668
+ "input":{"shape":"UntagResourceRequest"},
669
+ "errors":[
670
+ {"shape":"AccessDenied"},
671
+ {"shape":"InvalidArgument"},
672
+ {"shape":"InvalidTagging"},
673
+ {"shape":"NoSuchResource"}
674
+ ]
675
+ },
676
+ "UpdateCloudFrontOriginAccessIdentity":{
677
+ "name":"UpdateCloudFrontOriginAccessIdentity2018_06_18",
678
+ "http":{
679
+ "method":"PUT",
680
+ "requestUri":"/2018-06-18/origin-access-identity/cloudfront/{Id}/config"
681
+ },
682
+ "input":{"shape":"UpdateCloudFrontOriginAccessIdentityRequest"},
683
+ "output":{"shape":"UpdateCloudFrontOriginAccessIdentityResult"},
684
+ "errors":[
685
+ {"shape":"AccessDenied"},
686
+ {"shape":"IllegalUpdate"},
687
+ {"shape":"InvalidIfMatchVersion"},
688
+ {"shape":"MissingBody"},
689
+ {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
690
+ {"shape":"PreconditionFailed"},
691
+ {"shape":"InvalidArgument"},
692
+ {"shape":"InconsistentQuantities"}
693
+ ]
694
+ },
695
+ "UpdateDistribution":{
696
+ "name":"UpdateDistribution2018_06_18",
697
+ "http":{
698
+ "method":"PUT",
699
+ "requestUri":"/2018-06-18/distribution/{Id}/config"
700
+ },
701
+ "input":{"shape":"UpdateDistributionRequest"},
702
+ "output":{"shape":"UpdateDistributionResult"},
703
+ "errors":[
704
+ {"shape":"AccessDenied"},
705
+ {"shape":"CNAMEAlreadyExists"},
706
+ {"shape":"IllegalUpdate"},
707
+ {"shape":"InvalidIfMatchVersion"},
708
+ {"shape":"MissingBody"},
709
+ {"shape":"NoSuchDistribution"},
710
+ {"shape":"PreconditionFailed"},
711
+ {"shape":"TooManyDistributionCNAMEs"},
712
+ {"shape":"InvalidDefaultRootObject"},
713
+ {"shape":"InvalidRelativePath"},
714
+ {"shape":"InvalidErrorCode"},
715
+ {"shape":"InvalidResponseCode"},
716
+ {"shape":"InvalidArgument"},
717
+ {"shape":"InvalidOriginAccessIdentity"},
718
+ {"shape":"TooManyTrustedSigners"},
719
+ {"shape":"TrustedSignerDoesNotExist"},
720
+ {"shape":"InvalidViewerCertificate"},
721
+ {"shape":"InvalidMinimumProtocolVersion"},
722
+ {"shape":"InvalidRequiredProtocol"},
723
+ {"shape":"NoSuchOrigin"},
724
+ {"shape":"TooManyOrigins"},
725
+ {"shape":"TooManyCacheBehaviors"},
726
+ {"shape":"TooManyCookieNamesInWhiteList"},
727
+ {"shape":"InvalidForwardCookies"},
728
+ {"shape":"TooManyHeadersInForwardedValues"},
729
+ {"shape":"InvalidHeadersForS3Origin"},
730
+ {"shape":"InconsistentQuantities"},
731
+ {"shape":"TooManyCertificates"},
732
+ {"shape":"InvalidLocationCode"},
733
+ {"shape":"InvalidGeoRestrictionParameter"},
734
+ {"shape":"InvalidTTLOrder"},
735
+ {"shape":"InvalidWebACLId"},
736
+ {"shape":"TooManyOriginCustomHeaders"},
737
+ {"shape":"TooManyQueryStringParameters"},
738
+ {"shape":"InvalidQueryStringParameters"},
739
+ {"shape":"TooManyDistributionsWithLambdaAssociations"},
740
+ {"shape":"TooManyLambdaFunctionAssociations"},
741
+ {"shape":"InvalidLambdaFunctionAssociation"},
742
+ {"shape":"InvalidOriginReadTimeout"},
743
+ {"shape":"InvalidOriginKeepaliveTimeout"},
744
+ {"shape":"NoSuchFieldLevelEncryptionConfig"},
745
+ {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
746
+ {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
747
+ ]
748
+ },
749
+ "UpdateFieldLevelEncryptionConfig":{
750
+ "name":"UpdateFieldLevelEncryptionConfig2018_06_18",
751
+ "http":{
752
+ "method":"PUT",
753
+ "requestUri":"/2018-06-18/field-level-encryption/{Id}/config"
754
+ },
755
+ "input":{"shape":"UpdateFieldLevelEncryptionConfigRequest"},
756
+ "output":{"shape":"UpdateFieldLevelEncryptionConfigResult"},
757
+ "errors":[
758
+ {"shape":"AccessDenied"},
759
+ {"shape":"IllegalUpdate"},
760
+ {"shape":"InconsistentQuantities"},
761
+ {"shape":"InvalidArgument"},
762
+ {"shape":"InvalidIfMatchVersion"},
763
+ {"shape":"NoSuchFieldLevelEncryptionProfile"},
764
+ {"shape":"NoSuchFieldLevelEncryptionConfig"},
765
+ {"shape":"PreconditionFailed"},
766
+ {"shape":"TooManyFieldLevelEncryptionQueryArgProfiles"},
767
+ {"shape":"TooManyFieldLevelEncryptionContentTypeProfiles"},
768
+ {"shape":"QueryArgProfileEmpty"}
769
+ ]
770
+ },
771
+ "UpdateFieldLevelEncryptionProfile":{
772
+ "name":"UpdateFieldLevelEncryptionProfile2018_06_18",
773
+ "http":{
774
+ "method":"PUT",
775
+ "requestUri":"/2018-06-18/field-level-encryption-profile/{Id}/config"
776
+ },
777
+ "input":{"shape":"UpdateFieldLevelEncryptionProfileRequest"},
778
+ "output":{"shape":"UpdateFieldLevelEncryptionProfileResult"},
779
+ "errors":[
780
+ {"shape":"AccessDenied"},
781
+ {"shape":"FieldLevelEncryptionProfileAlreadyExists"},
782
+ {"shape":"IllegalUpdate"},
783
+ {"shape":"InconsistentQuantities"},
784
+ {"shape":"InvalidArgument"},
785
+ {"shape":"InvalidIfMatchVersion"},
786
+ {"shape":"NoSuchPublicKey"},
787
+ {"shape":"NoSuchFieldLevelEncryptionProfile"},
788
+ {"shape":"PreconditionFailed"},
789
+ {"shape":"FieldLevelEncryptionProfileSizeExceeded"},
790
+ {"shape":"TooManyFieldLevelEncryptionEncryptionEntities"},
791
+ {"shape":"TooManyFieldLevelEncryptionFieldPatterns"}
792
+ ]
793
+ },
794
+ "UpdatePublicKey":{
795
+ "name":"UpdatePublicKey2018_06_18",
796
+ "http":{
797
+ "method":"PUT",
798
+ "requestUri":"/2018-06-18/public-key/{Id}/config"
799
+ },
800
+ "input":{"shape":"UpdatePublicKeyRequest"},
801
+ "output":{"shape":"UpdatePublicKeyResult"},
802
+ "errors":[
803
+ {"shape":"AccessDenied"},
804
+ {"shape":"CannotChangeImmutablePublicKeyFields"},
805
+ {"shape":"InvalidArgument"},
806
+ {"shape":"InvalidIfMatchVersion"},
807
+ {"shape":"IllegalUpdate"},
808
+ {"shape":"NoSuchPublicKey"},
809
+ {"shape":"PreconditionFailed"}
810
+ ]
811
+ },
812
+ "UpdateStreamingDistribution":{
813
+ "name":"UpdateStreamingDistribution2018_06_18",
814
+ "http":{
815
+ "method":"PUT",
816
+ "requestUri":"/2018-06-18/streaming-distribution/{Id}/config"
817
+ },
818
+ "input":{"shape":"UpdateStreamingDistributionRequest"},
819
+ "output":{"shape":"UpdateStreamingDistributionResult"},
820
+ "errors":[
821
+ {"shape":"AccessDenied"},
822
+ {"shape":"CNAMEAlreadyExists"},
823
+ {"shape":"IllegalUpdate"},
824
+ {"shape":"InvalidIfMatchVersion"},
825
+ {"shape":"MissingBody"},
826
+ {"shape":"NoSuchStreamingDistribution"},
827
+ {"shape":"PreconditionFailed"},
828
+ {"shape":"TooManyStreamingDistributionCNAMEs"},
829
+ {"shape":"InvalidArgument"},
830
+ {"shape":"InvalidOriginAccessIdentity"},
831
+ {"shape":"TooManyTrustedSigners"},
832
+ {"shape":"TrustedSignerDoesNotExist"},
833
+ {"shape":"InconsistentQuantities"}
834
+ ]
835
+ }
836
+ },
837
+ "shapes":{
838
+ "AccessDenied":{
839
+ "type":"structure",
840
+ "members":{
841
+ "Message":{"shape":"string"}
842
+ },
843
+ "error":{"httpStatusCode":403},
844
+ "exception":true
845
+ },
846
+ "ActiveTrustedSigners":{
847
+ "type":"structure",
848
+ "required":[
849
+ "Enabled",
850
+ "Quantity"
851
+ ],
852
+ "members":{
853
+ "Enabled":{"shape":"boolean"},
854
+ "Quantity":{"shape":"integer"},
855
+ "Items":{"shape":"SignerList"}
856
+ }
857
+ },
858
+ "AliasList":{
859
+ "type":"list",
860
+ "member":{
861
+ "shape":"string",
862
+ "locationName":"CNAME"
863
+ }
864
+ },
865
+ "Aliases":{
866
+ "type":"structure",
867
+ "required":["Quantity"],
868
+ "members":{
869
+ "Quantity":{"shape":"integer"},
870
+ "Items":{"shape":"AliasList"}
871
+ }
872
+ },
873
+ "AllowedMethods":{
874
+ "type":"structure",
875
+ "required":[
876
+ "Quantity",
877
+ "Items"
878
+ ],
879
+ "members":{
880
+ "Quantity":{"shape":"integer"},
881
+ "Items":{"shape":"MethodsList"},
882
+ "CachedMethods":{"shape":"CachedMethods"}
883
+ }
884
+ },
885
+ "AwsAccountNumberList":{
886
+ "type":"list",
887
+ "member":{
888
+ "shape":"string",
889
+ "locationName":"AwsAccountNumber"
890
+ }
891
+ },
892
+ "BatchTooLarge":{
893
+ "type":"structure",
894
+ "members":{
895
+ "Message":{"shape":"string"}
896
+ },
897
+ "error":{"httpStatusCode":413},
898
+ "exception":true
899
+ },
900
+ "CNAMEAlreadyExists":{
901
+ "type":"structure",
902
+ "members":{
903
+ "Message":{"shape":"string"}
904
+ },
905
+ "error":{"httpStatusCode":409},
906
+ "exception":true
907
+ },
908
+ "CacheBehavior":{
909
+ "type":"structure",
910
+ "required":[
911
+ "PathPattern",
912
+ "TargetOriginId",
913
+ "ForwardedValues",
914
+ "TrustedSigners",
915
+ "ViewerProtocolPolicy",
916
+ "MinTTL"
917
+ ],
918
+ "members":{
919
+ "PathPattern":{"shape":"string"},
920
+ "TargetOriginId":{"shape":"string"},
921
+ "ForwardedValues":{"shape":"ForwardedValues"},
922
+ "TrustedSigners":{"shape":"TrustedSigners"},
923
+ "ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
924
+ "MinTTL":{"shape":"long"},
925
+ "AllowedMethods":{"shape":"AllowedMethods"},
926
+ "SmoothStreaming":{"shape":"boolean"},
927
+ "DefaultTTL":{"shape":"long"},
928
+ "MaxTTL":{"shape":"long"},
929
+ "Compress":{"shape":"boolean"},
930
+ "LambdaFunctionAssociations":{"shape":"LambdaFunctionAssociations"},
931
+ "FieldLevelEncryptionId":{"shape":"string"}
932
+ }
933
+ },
934
+ "CacheBehaviorList":{
935
+ "type":"list",
936
+ "member":{
937
+ "shape":"CacheBehavior",
938
+ "locationName":"CacheBehavior"
939
+ }
940
+ },
941
+ "CacheBehaviors":{
942
+ "type":"structure",
943
+ "required":["Quantity"],
944
+ "members":{
945
+ "Quantity":{"shape":"integer"},
946
+ "Items":{"shape":"CacheBehaviorList"}
947
+ }
948
+ },
949
+ "CachedMethods":{
950
+ "type":"structure",
951
+ "required":[
952
+ "Quantity",
953
+ "Items"
954
+ ],
955
+ "members":{
956
+ "Quantity":{"shape":"integer"},
957
+ "Items":{"shape":"MethodsList"}
958
+ }
959
+ },
960
+ "CannotChangeImmutablePublicKeyFields":{
961
+ "type":"structure",
962
+ "members":{
963
+ "Message":{"shape":"string"}
964
+ },
965
+ "error":{"httpStatusCode":400},
966
+ "exception":true
967
+ },
968
+ "CertificateSource":{
969
+ "type":"string",
970
+ "enum":[
971
+ "cloudfront",
972
+ "iam",
973
+ "acm"
974
+ ]
975
+ },
976
+ "CloudFrontOriginAccessIdentity":{
977
+ "type":"structure",
978
+ "required":[
979
+ "Id",
980
+ "S3CanonicalUserId"
981
+ ],
982
+ "members":{
983
+ "Id":{"shape":"string"},
984
+ "S3CanonicalUserId":{"shape":"string"},
985
+ "CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"}
986
+ }
987
+ },
988
+ "CloudFrontOriginAccessIdentityAlreadyExists":{
989
+ "type":"structure",
990
+ "members":{
991
+ "Message":{"shape":"string"}
992
+ },
993
+ "error":{"httpStatusCode":409},
994
+ "exception":true
995
+ },
996
+ "CloudFrontOriginAccessIdentityConfig":{
997
+ "type":"structure",
998
+ "required":[
999
+ "CallerReference",
1000
+ "Comment"
1001
+ ],
1002
+ "members":{
1003
+ "CallerReference":{"shape":"string"},
1004
+ "Comment":{"shape":"string"}
1005
+ }
1006
+ },
1007
+ "CloudFrontOriginAccessIdentityInUse":{
1008
+ "type":"structure",
1009
+ "members":{
1010
+ "Message":{"shape":"string"}
1011
+ },
1012
+ "error":{"httpStatusCode":409},
1013
+ "exception":true
1014
+ },
1015
+ "CloudFrontOriginAccessIdentityList":{
1016
+ "type":"structure",
1017
+ "required":[
1018
+ "Marker",
1019
+ "MaxItems",
1020
+ "IsTruncated",
1021
+ "Quantity"
1022
+ ],
1023
+ "members":{
1024
+ "Marker":{"shape":"string"},
1025
+ "NextMarker":{"shape":"string"},
1026
+ "MaxItems":{"shape":"integer"},
1027
+ "IsTruncated":{"shape":"boolean"},
1028
+ "Quantity":{"shape":"integer"},
1029
+ "Items":{"shape":"CloudFrontOriginAccessIdentitySummaryList"}
1030
+ }
1031
+ },
1032
+ "CloudFrontOriginAccessIdentitySummary":{
1033
+ "type":"structure",
1034
+ "required":[
1035
+ "Id",
1036
+ "S3CanonicalUserId",
1037
+ "Comment"
1038
+ ],
1039
+ "members":{
1040
+ "Id":{"shape":"string"},
1041
+ "S3CanonicalUserId":{"shape":"string"},
1042
+ "Comment":{"shape":"string"}
1043
+ }
1044
+ },
1045
+ "CloudFrontOriginAccessIdentitySummaryList":{
1046
+ "type":"list",
1047
+ "member":{
1048
+ "shape":"CloudFrontOriginAccessIdentitySummary",
1049
+ "locationName":"CloudFrontOriginAccessIdentitySummary"
1050
+ }
1051
+ },
1052
+ "ContentTypeProfile":{
1053
+ "type":"structure",
1054
+ "required":[
1055
+ "Format",
1056
+ "ContentType"
1057
+ ],
1058
+ "members":{
1059
+ "Format":{"shape":"Format"},
1060
+ "ProfileId":{"shape":"string"},
1061
+ "ContentType":{"shape":"string"}
1062
+ }
1063
+ },
1064
+ "ContentTypeProfileConfig":{
1065
+ "type":"structure",
1066
+ "required":["ForwardWhenContentTypeIsUnknown"],
1067
+ "members":{
1068
+ "ForwardWhenContentTypeIsUnknown":{"shape":"boolean"},
1069
+ "ContentTypeProfiles":{"shape":"ContentTypeProfiles"}
1070
+ }
1071
+ },
1072
+ "ContentTypeProfileList":{
1073
+ "type":"list",
1074
+ "member":{
1075
+ "shape":"ContentTypeProfile",
1076
+ "locationName":"ContentTypeProfile"
1077
+ }
1078
+ },
1079
+ "ContentTypeProfiles":{
1080
+ "type":"structure",
1081
+ "required":["Quantity"],
1082
+ "members":{
1083
+ "Quantity":{"shape":"integer"},
1084
+ "Items":{"shape":"ContentTypeProfileList"}
1085
+ }
1086
+ },
1087
+ "CookieNameList":{
1088
+ "type":"list",
1089
+ "member":{
1090
+ "shape":"string",
1091
+ "locationName":"Name"
1092
+ }
1093
+ },
1094
+ "CookieNames":{
1095
+ "type":"structure",
1096
+ "required":["Quantity"],
1097
+ "members":{
1098
+ "Quantity":{"shape":"integer"},
1099
+ "Items":{"shape":"CookieNameList"}
1100
+ }
1101
+ },
1102
+ "CookiePreference":{
1103
+ "type":"structure",
1104
+ "required":["Forward"],
1105
+ "members":{
1106
+ "Forward":{"shape":"ItemSelection"},
1107
+ "WhitelistedNames":{"shape":"CookieNames"}
1108
+ }
1109
+ },
1110
+ "CreateCloudFrontOriginAccessIdentityRequest":{
1111
+ "type":"structure",
1112
+ "required":["CloudFrontOriginAccessIdentityConfig"],
1113
+ "members":{
1114
+ "CloudFrontOriginAccessIdentityConfig":{
1115
+ "shape":"CloudFrontOriginAccessIdentityConfig",
1116
+ "locationName":"CloudFrontOriginAccessIdentityConfig",
1117
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
1118
+ }
1119
+ },
1120
+ "payload":"CloudFrontOriginAccessIdentityConfig"
1121
+ },
1122
+ "CreateCloudFrontOriginAccessIdentityResult":{
1123
+ "type":"structure",
1124
+ "members":{
1125
+ "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
1126
+ "Location":{
1127
+ "shape":"string",
1128
+ "location":"header",
1129
+ "locationName":"Location"
1130
+ },
1131
+ "ETag":{
1132
+ "shape":"string",
1133
+ "location":"header",
1134
+ "locationName":"ETag"
1135
+ }
1136
+ },
1137
+ "payload":"CloudFrontOriginAccessIdentity"
1138
+ },
1139
+ "CreateDistributionRequest":{
1140
+ "type":"structure",
1141
+ "required":["DistributionConfig"],
1142
+ "members":{
1143
+ "DistributionConfig":{
1144
+ "shape":"DistributionConfig",
1145
+ "locationName":"DistributionConfig",
1146
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
1147
+ }
1148
+ },
1149
+ "payload":"DistributionConfig"
1150
+ },
1151
+ "CreateDistributionResult":{
1152
+ "type":"structure",
1153
+ "members":{
1154
+ "Distribution":{"shape":"Distribution"},
1155
+ "Location":{
1156
+ "shape":"string",
1157
+ "location":"header",
1158
+ "locationName":"Location"
1159
+ },
1160
+ "ETag":{
1161
+ "shape":"string",
1162
+ "location":"header",
1163
+ "locationName":"ETag"
1164
+ }
1165
+ },
1166
+ "payload":"Distribution"
1167
+ },
1168
+ "CreateDistributionWithTagsRequest":{
1169
+ "type":"structure",
1170
+ "required":["DistributionConfigWithTags"],
1171
+ "members":{
1172
+ "DistributionConfigWithTags":{
1173
+ "shape":"DistributionConfigWithTags",
1174
+ "locationName":"DistributionConfigWithTags",
1175
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
1176
+ }
1177
+ },
1178
+ "payload":"DistributionConfigWithTags"
1179
+ },
1180
+ "CreateDistributionWithTagsResult":{
1181
+ "type":"structure",
1182
+ "members":{
1183
+ "Distribution":{"shape":"Distribution"},
1184
+ "Location":{
1185
+ "shape":"string",
1186
+ "location":"header",
1187
+ "locationName":"Location"
1188
+ },
1189
+ "ETag":{
1190
+ "shape":"string",
1191
+ "location":"header",
1192
+ "locationName":"ETag"
1193
+ }
1194
+ },
1195
+ "payload":"Distribution"
1196
+ },
1197
+ "CreateFieldLevelEncryptionConfigRequest":{
1198
+ "type":"structure",
1199
+ "required":["FieldLevelEncryptionConfig"],
1200
+ "members":{
1201
+ "FieldLevelEncryptionConfig":{
1202
+ "shape":"FieldLevelEncryptionConfig",
1203
+ "locationName":"FieldLevelEncryptionConfig",
1204
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
1205
+ }
1206
+ },
1207
+ "payload":"FieldLevelEncryptionConfig"
1208
+ },
1209
+ "CreateFieldLevelEncryptionConfigResult":{
1210
+ "type":"structure",
1211
+ "members":{
1212
+ "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
1213
+ "Location":{
1214
+ "shape":"string",
1215
+ "location":"header",
1216
+ "locationName":"Location"
1217
+ },
1218
+ "ETag":{
1219
+ "shape":"string",
1220
+ "location":"header",
1221
+ "locationName":"ETag"
1222
+ }
1223
+ },
1224
+ "payload":"FieldLevelEncryption"
1225
+ },
1226
+ "CreateFieldLevelEncryptionProfileRequest":{
1227
+ "type":"structure",
1228
+ "required":["FieldLevelEncryptionProfileConfig"],
1229
+ "members":{
1230
+ "FieldLevelEncryptionProfileConfig":{
1231
+ "shape":"FieldLevelEncryptionProfileConfig",
1232
+ "locationName":"FieldLevelEncryptionProfileConfig",
1233
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
1234
+ }
1235
+ },
1236
+ "payload":"FieldLevelEncryptionProfileConfig"
1237
+ },
1238
+ "CreateFieldLevelEncryptionProfileResult":{
1239
+ "type":"structure",
1240
+ "members":{
1241
+ "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
1242
+ "Location":{
1243
+ "shape":"string",
1244
+ "location":"header",
1245
+ "locationName":"Location"
1246
+ },
1247
+ "ETag":{
1248
+ "shape":"string",
1249
+ "location":"header",
1250
+ "locationName":"ETag"
1251
+ }
1252
+ },
1253
+ "payload":"FieldLevelEncryptionProfile"
1254
+ },
1255
+ "CreateInvalidationRequest":{
1256
+ "type":"structure",
1257
+ "required":[
1258
+ "DistributionId",
1259
+ "InvalidationBatch"
1260
+ ],
1261
+ "members":{
1262
+ "DistributionId":{
1263
+ "shape":"string",
1264
+ "location":"uri",
1265
+ "locationName":"DistributionId"
1266
+ },
1267
+ "InvalidationBatch":{
1268
+ "shape":"InvalidationBatch",
1269
+ "locationName":"InvalidationBatch",
1270
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
1271
+ }
1272
+ },
1273
+ "payload":"InvalidationBatch"
1274
+ },
1275
+ "CreateInvalidationResult":{
1276
+ "type":"structure",
1277
+ "members":{
1278
+ "Location":{
1279
+ "shape":"string",
1280
+ "location":"header",
1281
+ "locationName":"Location"
1282
+ },
1283
+ "Invalidation":{"shape":"Invalidation"}
1284
+ },
1285
+ "payload":"Invalidation"
1286
+ },
1287
+ "CreatePublicKeyRequest":{
1288
+ "type":"structure",
1289
+ "required":["PublicKeyConfig"],
1290
+ "members":{
1291
+ "PublicKeyConfig":{
1292
+ "shape":"PublicKeyConfig",
1293
+ "locationName":"PublicKeyConfig",
1294
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
1295
+ }
1296
+ },
1297
+ "payload":"PublicKeyConfig"
1298
+ },
1299
+ "CreatePublicKeyResult":{
1300
+ "type":"structure",
1301
+ "members":{
1302
+ "PublicKey":{"shape":"PublicKey"},
1303
+ "Location":{
1304
+ "shape":"string",
1305
+ "location":"header",
1306
+ "locationName":"Location"
1307
+ },
1308
+ "ETag":{
1309
+ "shape":"string",
1310
+ "location":"header",
1311
+ "locationName":"ETag"
1312
+ }
1313
+ },
1314
+ "payload":"PublicKey"
1315
+ },
1316
+ "CreateStreamingDistributionRequest":{
1317
+ "type":"structure",
1318
+ "required":["StreamingDistributionConfig"],
1319
+ "members":{
1320
+ "StreamingDistributionConfig":{
1321
+ "shape":"StreamingDistributionConfig",
1322
+ "locationName":"StreamingDistributionConfig",
1323
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
1324
+ }
1325
+ },
1326
+ "payload":"StreamingDistributionConfig"
1327
+ },
1328
+ "CreateStreamingDistributionResult":{
1329
+ "type":"structure",
1330
+ "members":{
1331
+ "StreamingDistribution":{"shape":"StreamingDistribution"},
1332
+ "Location":{
1333
+ "shape":"string",
1334
+ "location":"header",
1335
+ "locationName":"Location"
1336
+ },
1337
+ "ETag":{
1338
+ "shape":"string",
1339
+ "location":"header",
1340
+ "locationName":"ETag"
1341
+ }
1342
+ },
1343
+ "payload":"StreamingDistribution"
1344
+ },
1345
+ "CreateStreamingDistributionWithTagsRequest":{
1346
+ "type":"structure",
1347
+ "required":["StreamingDistributionConfigWithTags"],
1348
+ "members":{
1349
+ "StreamingDistributionConfigWithTags":{
1350
+ "shape":"StreamingDistributionConfigWithTags",
1351
+ "locationName":"StreamingDistributionConfigWithTags",
1352
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
1353
+ }
1354
+ },
1355
+ "payload":"StreamingDistributionConfigWithTags"
1356
+ },
1357
+ "CreateStreamingDistributionWithTagsResult":{
1358
+ "type":"structure",
1359
+ "members":{
1360
+ "StreamingDistribution":{"shape":"StreamingDistribution"},
1361
+ "Location":{
1362
+ "shape":"string",
1363
+ "location":"header",
1364
+ "locationName":"Location"
1365
+ },
1366
+ "ETag":{
1367
+ "shape":"string",
1368
+ "location":"header",
1369
+ "locationName":"ETag"
1370
+ }
1371
+ },
1372
+ "payload":"StreamingDistribution"
1373
+ },
1374
+ "CustomErrorResponse":{
1375
+ "type":"structure",
1376
+ "required":["ErrorCode"],
1377
+ "members":{
1378
+ "ErrorCode":{"shape":"integer"},
1379
+ "ResponsePagePath":{"shape":"string"},
1380
+ "ResponseCode":{"shape":"string"},
1381
+ "ErrorCachingMinTTL":{"shape":"long"}
1382
+ }
1383
+ },
1384
+ "CustomErrorResponseList":{
1385
+ "type":"list",
1386
+ "member":{
1387
+ "shape":"CustomErrorResponse",
1388
+ "locationName":"CustomErrorResponse"
1389
+ }
1390
+ },
1391
+ "CustomErrorResponses":{
1392
+ "type":"structure",
1393
+ "required":["Quantity"],
1394
+ "members":{
1395
+ "Quantity":{"shape":"integer"},
1396
+ "Items":{"shape":"CustomErrorResponseList"}
1397
+ }
1398
+ },
1399
+ "CustomHeaders":{
1400
+ "type":"structure",
1401
+ "required":["Quantity"],
1402
+ "members":{
1403
+ "Quantity":{"shape":"integer"},
1404
+ "Items":{"shape":"OriginCustomHeadersList"}
1405
+ }
1406
+ },
1407
+ "CustomOriginConfig":{
1408
+ "type":"structure",
1409
+ "required":[
1410
+ "HTTPPort",
1411
+ "HTTPSPort",
1412
+ "OriginProtocolPolicy"
1413
+ ],
1414
+ "members":{
1415
+ "HTTPPort":{"shape":"integer"},
1416
+ "HTTPSPort":{"shape":"integer"},
1417
+ "OriginProtocolPolicy":{"shape":"OriginProtocolPolicy"},
1418
+ "OriginSslProtocols":{"shape":"OriginSslProtocols"},
1419
+ "OriginReadTimeout":{"shape":"integer"},
1420
+ "OriginKeepaliveTimeout":{"shape":"integer"}
1421
+ }
1422
+ },
1423
+ "DefaultCacheBehavior":{
1424
+ "type":"structure",
1425
+ "required":[
1426
+ "TargetOriginId",
1427
+ "ForwardedValues",
1428
+ "TrustedSigners",
1429
+ "ViewerProtocolPolicy",
1430
+ "MinTTL"
1431
+ ],
1432
+ "members":{
1433
+ "TargetOriginId":{"shape":"string"},
1434
+ "ForwardedValues":{"shape":"ForwardedValues"},
1435
+ "TrustedSigners":{"shape":"TrustedSigners"},
1436
+ "ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
1437
+ "MinTTL":{"shape":"long"},
1438
+ "AllowedMethods":{"shape":"AllowedMethods"},
1439
+ "SmoothStreaming":{"shape":"boolean"},
1440
+ "DefaultTTL":{"shape":"long"},
1441
+ "MaxTTL":{"shape":"long"},
1442
+ "Compress":{"shape":"boolean"},
1443
+ "LambdaFunctionAssociations":{"shape":"LambdaFunctionAssociations"},
1444
+ "FieldLevelEncryptionId":{"shape":"string"}
1445
+ }
1446
+ },
1447
+ "DeleteCloudFrontOriginAccessIdentityRequest":{
1448
+ "type":"structure",
1449
+ "required":["Id"],
1450
+ "members":{
1451
+ "Id":{
1452
+ "shape":"string",
1453
+ "location":"uri",
1454
+ "locationName":"Id"
1455
+ },
1456
+ "IfMatch":{
1457
+ "shape":"string",
1458
+ "location":"header",
1459
+ "locationName":"If-Match"
1460
+ }
1461
+ }
1462
+ },
1463
+ "DeleteDistributionRequest":{
1464
+ "type":"structure",
1465
+ "required":["Id"],
1466
+ "members":{
1467
+ "Id":{
1468
+ "shape":"string",
1469
+ "location":"uri",
1470
+ "locationName":"Id"
1471
+ },
1472
+ "IfMatch":{
1473
+ "shape":"string",
1474
+ "location":"header",
1475
+ "locationName":"If-Match"
1476
+ }
1477
+ }
1478
+ },
1479
+ "DeleteFieldLevelEncryptionConfigRequest":{
1480
+ "type":"structure",
1481
+ "required":["Id"],
1482
+ "members":{
1483
+ "Id":{
1484
+ "shape":"string",
1485
+ "location":"uri",
1486
+ "locationName":"Id"
1487
+ },
1488
+ "IfMatch":{
1489
+ "shape":"string",
1490
+ "location":"header",
1491
+ "locationName":"If-Match"
1492
+ }
1493
+ }
1494
+ },
1495
+ "DeleteFieldLevelEncryptionProfileRequest":{
1496
+ "type":"structure",
1497
+ "required":["Id"],
1498
+ "members":{
1499
+ "Id":{
1500
+ "shape":"string",
1501
+ "location":"uri",
1502
+ "locationName":"Id"
1503
+ },
1504
+ "IfMatch":{
1505
+ "shape":"string",
1506
+ "location":"header",
1507
+ "locationName":"If-Match"
1508
+ }
1509
+ }
1510
+ },
1511
+ "DeletePublicKeyRequest":{
1512
+ "type":"structure",
1513
+ "required":["Id"],
1514
+ "members":{
1515
+ "Id":{
1516
+ "shape":"string",
1517
+ "location":"uri",
1518
+ "locationName":"Id"
1519
+ },
1520
+ "IfMatch":{
1521
+ "shape":"string",
1522
+ "location":"header",
1523
+ "locationName":"If-Match"
1524
+ }
1525
+ }
1526
+ },
1527
+ "DeleteStreamingDistributionRequest":{
1528
+ "type":"structure",
1529
+ "required":["Id"],
1530
+ "members":{
1531
+ "Id":{
1532
+ "shape":"string",
1533
+ "location":"uri",
1534
+ "locationName":"Id"
1535
+ },
1536
+ "IfMatch":{
1537
+ "shape":"string",
1538
+ "location":"header",
1539
+ "locationName":"If-Match"
1540
+ }
1541
+ }
1542
+ },
1543
+ "Distribution":{
1544
+ "type":"structure",
1545
+ "required":[
1546
+ "Id",
1547
+ "ARN",
1548
+ "Status",
1549
+ "LastModifiedTime",
1550
+ "InProgressInvalidationBatches",
1551
+ "DomainName",
1552
+ "ActiveTrustedSigners",
1553
+ "DistributionConfig"
1554
+ ],
1555
+ "members":{
1556
+ "Id":{"shape":"string"},
1557
+ "ARN":{"shape":"string"},
1558
+ "Status":{"shape":"string"},
1559
+ "LastModifiedTime":{"shape":"timestamp"},
1560
+ "InProgressInvalidationBatches":{"shape":"integer"},
1561
+ "DomainName":{"shape":"string"},
1562
+ "ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
1563
+ "DistributionConfig":{"shape":"DistributionConfig"}
1564
+ }
1565
+ },
1566
+ "DistributionAlreadyExists":{
1567
+ "type":"structure",
1568
+ "members":{
1569
+ "Message":{"shape":"string"}
1570
+ },
1571
+ "error":{"httpStatusCode":409},
1572
+ "exception":true
1573
+ },
1574
+ "DistributionConfig":{
1575
+ "type":"structure",
1576
+ "required":[
1577
+ "CallerReference",
1578
+ "Origins",
1579
+ "DefaultCacheBehavior",
1580
+ "Comment",
1581
+ "Enabled"
1582
+ ],
1583
+ "members":{
1584
+ "CallerReference":{"shape":"string"},
1585
+ "Aliases":{"shape":"Aliases"},
1586
+ "DefaultRootObject":{"shape":"string"},
1587
+ "Origins":{"shape":"Origins"},
1588
+ "DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
1589
+ "CacheBehaviors":{"shape":"CacheBehaviors"},
1590
+ "CustomErrorResponses":{"shape":"CustomErrorResponses"},
1591
+ "Comment":{"shape":"string"},
1592
+ "Logging":{"shape":"LoggingConfig"},
1593
+ "PriceClass":{"shape":"PriceClass"},
1594
+ "Enabled":{"shape":"boolean"},
1595
+ "ViewerCertificate":{"shape":"ViewerCertificate"},
1596
+ "Restrictions":{"shape":"Restrictions"},
1597
+ "WebACLId":{"shape":"string"},
1598
+ "HttpVersion":{"shape":"HttpVersion"},
1599
+ "IsIPV6Enabled":{"shape":"boolean"}
1600
+ }
1601
+ },
1602
+ "DistributionConfigWithTags":{
1603
+ "type":"structure",
1604
+ "required":[
1605
+ "DistributionConfig",
1606
+ "Tags"
1607
+ ],
1608
+ "members":{
1609
+ "DistributionConfig":{"shape":"DistributionConfig"},
1610
+ "Tags":{"shape":"Tags"}
1611
+ }
1612
+ },
1613
+ "DistributionList":{
1614
+ "type":"structure",
1615
+ "required":[
1616
+ "Marker",
1617
+ "MaxItems",
1618
+ "IsTruncated",
1619
+ "Quantity"
1620
+ ],
1621
+ "members":{
1622
+ "Marker":{"shape":"string"},
1623
+ "NextMarker":{"shape":"string"},
1624
+ "MaxItems":{"shape":"integer"},
1625
+ "IsTruncated":{"shape":"boolean"},
1626
+ "Quantity":{"shape":"integer"},
1627
+ "Items":{"shape":"DistributionSummaryList"}
1628
+ }
1629
+ },
1630
+ "DistributionNotDisabled":{
1631
+ "type":"structure",
1632
+ "members":{
1633
+ "Message":{"shape":"string"}
1634
+ },
1635
+ "error":{"httpStatusCode":409},
1636
+ "exception":true
1637
+ },
1638
+ "DistributionSummary":{
1639
+ "type":"structure",
1640
+ "required":[
1641
+ "Id",
1642
+ "ARN",
1643
+ "Status",
1644
+ "LastModifiedTime",
1645
+ "DomainName",
1646
+ "Aliases",
1647
+ "Origins",
1648
+ "DefaultCacheBehavior",
1649
+ "CacheBehaviors",
1650
+ "CustomErrorResponses",
1651
+ "Comment",
1652
+ "PriceClass",
1653
+ "Enabled",
1654
+ "ViewerCertificate",
1655
+ "Restrictions",
1656
+ "WebACLId",
1657
+ "HttpVersion",
1658
+ "IsIPV6Enabled"
1659
+ ],
1660
+ "members":{
1661
+ "Id":{"shape":"string"},
1662
+ "ARN":{"shape":"string"},
1663
+ "Status":{"shape":"string"},
1664
+ "LastModifiedTime":{"shape":"timestamp"},
1665
+ "DomainName":{"shape":"string"},
1666
+ "Aliases":{"shape":"Aliases"},
1667
+ "Origins":{"shape":"Origins"},
1668
+ "DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
1669
+ "CacheBehaviors":{"shape":"CacheBehaviors"},
1670
+ "CustomErrorResponses":{"shape":"CustomErrorResponses"},
1671
+ "Comment":{"shape":"string"},
1672
+ "PriceClass":{"shape":"PriceClass"},
1673
+ "Enabled":{"shape":"boolean"},
1674
+ "ViewerCertificate":{"shape":"ViewerCertificate"},
1675
+ "Restrictions":{"shape":"Restrictions"},
1676
+ "WebACLId":{"shape":"string"},
1677
+ "HttpVersion":{"shape":"HttpVersion"},
1678
+ "IsIPV6Enabled":{"shape":"boolean"}
1679
+ }
1680
+ },
1681
+ "DistributionSummaryList":{
1682
+ "type":"list",
1683
+ "member":{
1684
+ "shape":"DistributionSummary",
1685
+ "locationName":"DistributionSummary"
1686
+ }
1687
+ },
1688
+ "EncryptionEntities":{
1689
+ "type":"structure",
1690
+ "required":["Quantity"],
1691
+ "members":{
1692
+ "Quantity":{"shape":"integer"},
1693
+ "Items":{"shape":"EncryptionEntityList"}
1694
+ }
1695
+ },
1696
+ "EncryptionEntity":{
1697
+ "type":"structure",
1698
+ "required":[
1699
+ "PublicKeyId",
1700
+ "ProviderId",
1701
+ "FieldPatterns"
1702
+ ],
1703
+ "members":{
1704
+ "PublicKeyId":{"shape":"string"},
1705
+ "ProviderId":{"shape":"string"},
1706
+ "FieldPatterns":{"shape":"FieldPatterns"}
1707
+ }
1708
+ },
1709
+ "EncryptionEntityList":{
1710
+ "type":"list",
1711
+ "member":{
1712
+ "shape":"EncryptionEntity",
1713
+ "locationName":"EncryptionEntity"
1714
+ }
1715
+ },
1716
+ "EventType":{
1717
+ "type":"string",
1718
+ "enum":[
1719
+ "viewer-request",
1720
+ "viewer-response",
1721
+ "origin-request",
1722
+ "origin-response"
1723
+ ]
1724
+ },
1725
+ "FieldLevelEncryption":{
1726
+ "type":"structure",
1727
+ "required":[
1728
+ "Id",
1729
+ "LastModifiedTime",
1730
+ "FieldLevelEncryptionConfig"
1731
+ ],
1732
+ "members":{
1733
+ "Id":{"shape":"string"},
1734
+ "LastModifiedTime":{"shape":"timestamp"},
1735
+ "FieldLevelEncryptionConfig":{"shape":"FieldLevelEncryptionConfig"}
1736
+ }
1737
+ },
1738
+ "FieldLevelEncryptionConfig":{
1739
+ "type":"structure",
1740
+ "required":["CallerReference"],
1741
+ "members":{
1742
+ "CallerReference":{"shape":"string"},
1743
+ "Comment":{"shape":"string"},
1744
+ "QueryArgProfileConfig":{"shape":"QueryArgProfileConfig"},
1745
+ "ContentTypeProfileConfig":{"shape":"ContentTypeProfileConfig"}
1746
+ }
1747
+ },
1748
+ "FieldLevelEncryptionConfigAlreadyExists":{
1749
+ "type":"structure",
1750
+ "members":{
1751
+ "Message":{"shape":"string"}
1752
+ },
1753
+ "error":{"httpStatusCode":409},
1754
+ "exception":true
1755
+ },
1756
+ "FieldLevelEncryptionConfigInUse":{
1757
+ "type":"structure",
1758
+ "members":{
1759
+ "Message":{"shape":"string"}
1760
+ },
1761
+ "error":{"httpStatusCode":409},
1762
+ "exception":true
1763
+ },
1764
+ "FieldLevelEncryptionList":{
1765
+ "type":"structure",
1766
+ "required":[
1767
+ "MaxItems",
1768
+ "Quantity"
1769
+ ],
1770
+ "members":{
1771
+ "NextMarker":{"shape":"string"},
1772
+ "MaxItems":{"shape":"integer"},
1773
+ "Quantity":{"shape":"integer"},
1774
+ "Items":{"shape":"FieldLevelEncryptionSummaryList"}
1775
+ }
1776
+ },
1777
+ "FieldLevelEncryptionProfile":{
1778
+ "type":"structure",
1779
+ "required":[
1780
+ "Id",
1781
+ "LastModifiedTime",
1782
+ "FieldLevelEncryptionProfileConfig"
1783
+ ],
1784
+ "members":{
1785
+ "Id":{"shape":"string"},
1786
+ "LastModifiedTime":{"shape":"timestamp"},
1787
+ "FieldLevelEncryptionProfileConfig":{"shape":"FieldLevelEncryptionProfileConfig"}
1788
+ }
1789
+ },
1790
+ "FieldLevelEncryptionProfileAlreadyExists":{
1791
+ "type":"structure",
1792
+ "members":{
1793
+ "Message":{"shape":"string"}
1794
+ },
1795
+ "error":{"httpStatusCode":409},
1796
+ "exception":true
1797
+ },
1798
+ "FieldLevelEncryptionProfileConfig":{
1799
+ "type":"structure",
1800
+ "required":[
1801
+ "Name",
1802
+ "CallerReference",
1803
+ "EncryptionEntities"
1804
+ ],
1805
+ "members":{
1806
+ "Name":{"shape":"string"},
1807
+ "CallerReference":{"shape":"string"},
1808
+ "Comment":{"shape":"string"},
1809
+ "EncryptionEntities":{"shape":"EncryptionEntities"}
1810
+ }
1811
+ },
1812
+ "FieldLevelEncryptionProfileInUse":{
1813
+ "type":"structure",
1814
+ "members":{
1815
+ "Message":{"shape":"string"}
1816
+ },
1817
+ "error":{"httpStatusCode":409},
1818
+ "exception":true
1819
+ },
1820
+ "FieldLevelEncryptionProfileList":{
1821
+ "type":"structure",
1822
+ "required":[
1823
+ "MaxItems",
1824
+ "Quantity"
1825
+ ],
1826
+ "members":{
1827
+ "NextMarker":{"shape":"string"},
1828
+ "MaxItems":{"shape":"integer"},
1829
+ "Quantity":{"shape":"integer"},
1830
+ "Items":{"shape":"FieldLevelEncryptionProfileSummaryList"}
1831
+ }
1832
+ },
1833
+ "FieldLevelEncryptionProfileSizeExceeded":{
1834
+ "type":"structure",
1835
+ "members":{
1836
+ "Message":{"shape":"string"}
1837
+ },
1838
+ "error":{"httpStatusCode":400},
1839
+ "exception":true
1840
+ },
1841
+ "FieldLevelEncryptionProfileSummary":{
1842
+ "type":"structure",
1843
+ "required":[
1844
+ "Id",
1845
+ "LastModifiedTime",
1846
+ "Name",
1847
+ "EncryptionEntities"
1848
+ ],
1849
+ "members":{
1850
+ "Id":{"shape":"string"},
1851
+ "LastModifiedTime":{"shape":"timestamp"},
1852
+ "Name":{"shape":"string"},
1853
+ "EncryptionEntities":{"shape":"EncryptionEntities"},
1854
+ "Comment":{"shape":"string"}
1855
+ }
1856
+ },
1857
+ "FieldLevelEncryptionProfileSummaryList":{
1858
+ "type":"list",
1859
+ "member":{
1860
+ "shape":"FieldLevelEncryptionProfileSummary",
1861
+ "locationName":"FieldLevelEncryptionProfileSummary"
1862
+ }
1863
+ },
1864
+ "FieldLevelEncryptionSummary":{
1865
+ "type":"structure",
1866
+ "required":[
1867
+ "Id",
1868
+ "LastModifiedTime"
1869
+ ],
1870
+ "members":{
1871
+ "Id":{"shape":"string"},
1872
+ "LastModifiedTime":{"shape":"timestamp"},
1873
+ "Comment":{"shape":"string"},
1874
+ "QueryArgProfileConfig":{"shape":"QueryArgProfileConfig"},
1875
+ "ContentTypeProfileConfig":{"shape":"ContentTypeProfileConfig"}
1876
+ }
1877
+ },
1878
+ "FieldLevelEncryptionSummaryList":{
1879
+ "type":"list",
1880
+ "member":{
1881
+ "shape":"FieldLevelEncryptionSummary",
1882
+ "locationName":"FieldLevelEncryptionSummary"
1883
+ }
1884
+ },
1885
+ "FieldPatternList":{
1886
+ "type":"list",
1887
+ "member":{
1888
+ "shape":"string",
1889
+ "locationName":"FieldPattern"
1890
+ }
1891
+ },
1892
+ "FieldPatterns":{
1893
+ "type":"structure",
1894
+ "required":["Quantity"],
1895
+ "members":{
1896
+ "Quantity":{"shape":"integer"},
1897
+ "Items":{"shape":"FieldPatternList"}
1898
+ }
1899
+ },
1900
+ "Format":{
1901
+ "type":"string",
1902
+ "enum":["URLEncoded"]
1903
+ },
1904
+ "ForwardedValues":{
1905
+ "type":"structure",
1906
+ "required":[
1907
+ "QueryString",
1908
+ "Cookies"
1909
+ ],
1910
+ "members":{
1911
+ "QueryString":{"shape":"boolean"},
1912
+ "Cookies":{"shape":"CookiePreference"},
1913
+ "Headers":{"shape":"Headers"},
1914
+ "QueryStringCacheKeys":{"shape":"QueryStringCacheKeys"}
1915
+ }
1916
+ },
1917
+ "GeoRestriction":{
1918
+ "type":"structure",
1919
+ "required":[
1920
+ "RestrictionType",
1921
+ "Quantity"
1922
+ ],
1923
+ "members":{
1924
+ "RestrictionType":{"shape":"GeoRestrictionType"},
1925
+ "Quantity":{"shape":"integer"},
1926
+ "Items":{"shape":"LocationList"}
1927
+ }
1928
+ },
1929
+ "GeoRestrictionType":{
1930
+ "type":"string",
1931
+ "enum":[
1932
+ "blacklist",
1933
+ "whitelist",
1934
+ "none"
1935
+ ]
1936
+ },
1937
+ "GetCloudFrontOriginAccessIdentityConfigRequest":{
1938
+ "type":"structure",
1939
+ "required":["Id"],
1940
+ "members":{
1941
+ "Id":{
1942
+ "shape":"string",
1943
+ "location":"uri",
1944
+ "locationName":"Id"
1945
+ }
1946
+ }
1947
+ },
1948
+ "GetCloudFrontOriginAccessIdentityConfigResult":{
1949
+ "type":"structure",
1950
+ "members":{
1951
+ "CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"},
1952
+ "ETag":{
1953
+ "shape":"string",
1954
+ "location":"header",
1955
+ "locationName":"ETag"
1956
+ }
1957
+ },
1958
+ "payload":"CloudFrontOriginAccessIdentityConfig"
1959
+ },
1960
+ "GetCloudFrontOriginAccessIdentityRequest":{
1961
+ "type":"structure",
1962
+ "required":["Id"],
1963
+ "members":{
1964
+ "Id":{
1965
+ "shape":"string",
1966
+ "location":"uri",
1967
+ "locationName":"Id"
1968
+ }
1969
+ }
1970
+ },
1971
+ "GetCloudFrontOriginAccessIdentityResult":{
1972
+ "type":"structure",
1973
+ "members":{
1974
+ "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
1975
+ "ETag":{
1976
+ "shape":"string",
1977
+ "location":"header",
1978
+ "locationName":"ETag"
1979
+ }
1980
+ },
1981
+ "payload":"CloudFrontOriginAccessIdentity"
1982
+ },
1983
+ "GetDistributionConfigRequest":{
1984
+ "type":"structure",
1985
+ "required":["Id"],
1986
+ "members":{
1987
+ "Id":{
1988
+ "shape":"string",
1989
+ "location":"uri",
1990
+ "locationName":"Id"
1991
+ }
1992
+ }
1993
+ },
1994
+ "GetDistributionConfigResult":{
1995
+ "type":"structure",
1996
+ "members":{
1997
+ "DistributionConfig":{"shape":"DistributionConfig"},
1998
+ "ETag":{
1999
+ "shape":"string",
2000
+ "location":"header",
2001
+ "locationName":"ETag"
2002
+ }
2003
+ },
2004
+ "payload":"DistributionConfig"
2005
+ },
2006
+ "GetDistributionRequest":{
2007
+ "type":"structure",
2008
+ "required":["Id"],
2009
+ "members":{
2010
+ "Id":{
2011
+ "shape":"string",
2012
+ "location":"uri",
2013
+ "locationName":"Id"
2014
+ }
2015
+ }
2016
+ },
2017
+ "GetDistributionResult":{
2018
+ "type":"structure",
2019
+ "members":{
2020
+ "Distribution":{"shape":"Distribution"},
2021
+ "ETag":{
2022
+ "shape":"string",
2023
+ "location":"header",
2024
+ "locationName":"ETag"
2025
+ }
2026
+ },
2027
+ "payload":"Distribution"
2028
+ },
2029
+ "GetFieldLevelEncryptionConfigRequest":{
2030
+ "type":"structure",
2031
+ "required":["Id"],
2032
+ "members":{
2033
+ "Id":{
2034
+ "shape":"string",
2035
+ "location":"uri",
2036
+ "locationName":"Id"
2037
+ }
2038
+ }
2039
+ },
2040
+ "GetFieldLevelEncryptionConfigResult":{
2041
+ "type":"structure",
2042
+ "members":{
2043
+ "FieldLevelEncryptionConfig":{"shape":"FieldLevelEncryptionConfig"},
2044
+ "ETag":{
2045
+ "shape":"string",
2046
+ "location":"header",
2047
+ "locationName":"ETag"
2048
+ }
2049
+ },
2050
+ "payload":"FieldLevelEncryptionConfig"
2051
+ },
2052
+ "GetFieldLevelEncryptionProfileConfigRequest":{
2053
+ "type":"structure",
2054
+ "required":["Id"],
2055
+ "members":{
2056
+ "Id":{
2057
+ "shape":"string",
2058
+ "location":"uri",
2059
+ "locationName":"Id"
2060
+ }
2061
+ }
2062
+ },
2063
+ "GetFieldLevelEncryptionProfileConfigResult":{
2064
+ "type":"structure",
2065
+ "members":{
2066
+ "FieldLevelEncryptionProfileConfig":{"shape":"FieldLevelEncryptionProfileConfig"},
2067
+ "ETag":{
2068
+ "shape":"string",
2069
+ "location":"header",
2070
+ "locationName":"ETag"
2071
+ }
2072
+ },
2073
+ "payload":"FieldLevelEncryptionProfileConfig"
2074
+ },
2075
+ "GetFieldLevelEncryptionProfileRequest":{
2076
+ "type":"structure",
2077
+ "required":["Id"],
2078
+ "members":{
2079
+ "Id":{
2080
+ "shape":"string",
2081
+ "location":"uri",
2082
+ "locationName":"Id"
2083
+ }
2084
+ }
2085
+ },
2086
+ "GetFieldLevelEncryptionProfileResult":{
2087
+ "type":"structure",
2088
+ "members":{
2089
+ "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
2090
+ "ETag":{
2091
+ "shape":"string",
2092
+ "location":"header",
2093
+ "locationName":"ETag"
2094
+ }
2095
+ },
2096
+ "payload":"FieldLevelEncryptionProfile"
2097
+ },
2098
+ "GetFieldLevelEncryptionRequest":{
2099
+ "type":"structure",
2100
+ "required":["Id"],
2101
+ "members":{
2102
+ "Id":{
2103
+ "shape":"string",
2104
+ "location":"uri",
2105
+ "locationName":"Id"
2106
+ }
2107
+ }
2108
+ },
2109
+ "GetFieldLevelEncryptionResult":{
2110
+ "type":"structure",
2111
+ "members":{
2112
+ "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
2113
+ "ETag":{
2114
+ "shape":"string",
2115
+ "location":"header",
2116
+ "locationName":"ETag"
2117
+ }
2118
+ },
2119
+ "payload":"FieldLevelEncryption"
2120
+ },
2121
+ "GetInvalidationRequest":{
2122
+ "type":"structure",
2123
+ "required":[
2124
+ "DistributionId",
2125
+ "Id"
2126
+ ],
2127
+ "members":{
2128
+ "DistributionId":{
2129
+ "shape":"string",
2130
+ "location":"uri",
2131
+ "locationName":"DistributionId"
2132
+ },
2133
+ "Id":{
2134
+ "shape":"string",
2135
+ "location":"uri",
2136
+ "locationName":"Id"
2137
+ }
2138
+ }
2139
+ },
2140
+ "GetInvalidationResult":{
2141
+ "type":"structure",
2142
+ "members":{
2143
+ "Invalidation":{"shape":"Invalidation"}
2144
+ },
2145
+ "payload":"Invalidation"
2146
+ },
2147
+ "GetPublicKeyConfigRequest":{
2148
+ "type":"structure",
2149
+ "required":["Id"],
2150
+ "members":{
2151
+ "Id":{
2152
+ "shape":"string",
2153
+ "location":"uri",
2154
+ "locationName":"Id"
2155
+ }
2156
+ }
2157
+ },
2158
+ "GetPublicKeyConfigResult":{
2159
+ "type":"structure",
2160
+ "members":{
2161
+ "PublicKeyConfig":{"shape":"PublicKeyConfig"},
2162
+ "ETag":{
2163
+ "shape":"string",
2164
+ "location":"header",
2165
+ "locationName":"ETag"
2166
+ }
2167
+ },
2168
+ "payload":"PublicKeyConfig"
2169
+ },
2170
+ "GetPublicKeyRequest":{
2171
+ "type":"structure",
2172
+ "required":["Id"],
2173
+ "members":{
2174
+ "Id":{
2175
+ "shape":"string",
2176
+ "location":"uri",
2177
+ "locationName":"Id"
2178
+ }
2179
+ }
2180
+ },
2181
+ "GetPublicKeyResult":{
2182
+ "type":"structure",
2183
+ "members":{
2184
+ "PublicKey":{"shape":"PublicKey"},
2185
+ "ETag":{
2186
+ "shape":"string",
2187
+ "location":"header",
2188
+ "locationName":"ETag"
2189
+ }
2190
+ },
2191
+ "payload":"PublicKey"
2192
+ },
2193
+ "GetStreamingDistributionConfigRequest":{
2194
+ "type":"structure",
2195
+ "required":["Id"],
2196
+ "members":{
2197
+ "Id":{
2198
+ "shape":"string",
2199
+ "location":"uri",
2200
+ "locationName":"Id"
2201
+ }
2202
+ }
2203
+ },
2204
+ "GetStreamingDistributionConfigResult":{
2205
+ "type":"structure",
2206
+ "members":{
2207
+ "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
2208
+ "ETag":{
2209
+ "shape":"string",
2210
+ "location":"header",
2211
+ "locationName":"ETag"
2212
+ }
2213
+ },
2214
+ "payload":"StreamingDistributionConfig"
2215
+ },
2216
+ "GetStreamingDistributionRequest":{
2217
+ "type":"structure",
2218
+ "required":["Id"],
2219
+ "members":{
2220
+ "Id":{
2221
+ "shape":"string",
2222
+ "location":"uri",
2223
+ "locationName":"Id"
2224
+ }
2225
+ }
2226
+ },
2227
+ "GetStreamingDistributionResult":{
2228
+ "type":"structure",
2229
+ "members":{
2230
+ "StreamingDistribution":{"shape":"StreamingDistribution"},
2231
+ "ETag":{
2232
+ "shape":"string",
2233
+ "location":"header",
2234
+ "locationName":"ETag"
2235
+ }
2236
+ },
2237
+ "payload":"StreamingDistribution"
2238
+ },
2239
+ "HeaderList":{
2240
+ "type":"list",
2241
+ "member":{
2242
+ "shape":"string",
2243
+ "locationName":"Name"
2244
+ }
2245
+ },
2246
+ "Headers":{
2247
+ "type":"structure",
2248
+ "required":["Quantity"],
2249
+ "members":{
2250
+ "Quantity":{"shape":"integer"},
2251
+ "Items":{"shape":"HeaderList"}
2252
+ }
2253
+ },
2254
+ "HttpVersion":{
2255
+ "type":"string",
2256
+ "enum":[
2257
+ "http1.1",
2258
+ "http2"
2259
+ ]
2260
+ },
2261
+ "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior":{
2262
+ "type":"structure",
2263
+ "members":{
2264
+ "Message":{"shape":"string"}
2265
+ },
2266
+ "error":{"httpStatusCode":400},
2267
+ "exception":true
2268
+ },
2269
+ "IllegalUpdate":{
2270
+ "type":"structure",
2271
+ "members":{
2272
+ "Message":{"shape":"string"}
2273
+ },
2274
+ "error":{"httpStatusCode":400},
2275
+ "exception":true
2276
+ },
2277
+ "InconsistentQuantities":{
2278
+ "type":"structure",
2279
+ "members":{
2280
+ "Message":{"shape":"string"}
2281
+ },
2282
+ "error":{"httpStatusCode":400},
2283
+ "exception":true
2284
+ },
2285
+ "InvalidArgument":{
2286
+ "type":"structure",
2287
+ "members":{
2288
+ "Message":{"shape":"string"}
2289
+ },
2290
+ "error":{"httpStatusCode":400},
2291
+ "exception":true
2292
+ },
2293
+ "InvalidDefaultRootObject":{
2294
+ "type":"structure",
2295
+ "members":{
2296
+ "Message":{"shape":"string"}
2297
+ },
2298
+ "error":{"httpStatusCode":400},
2299
+ "exception":true
2300
+ },
2301
+ "InvalidErrorCode":{
2302
+ "type":"structure",
2303
+ "members":{
2304
+ "Message":{"shape":"string"}
2305
+ },
2306
+ "error":{"httpStatusCode":400},
2307
+ "exception":true
2308
+ },
2309
+ "InvalidForwardCookies":{
2310
+ "type":"structure",
2311
+ "members":{
2312
+ "Message":{"shape":"string"}
2313
+ },
2314
+ "error":{"httpStatusCode":400},
2315
+ "exception":true
2316
+ },
2317
+ "InvalidGeoRestrictionParameter":{
2318
+ "type":"structure",
2319
+ "members":{
2320
+ "Message":{"shape":"string"}
2321
+ },
2322
+ "error":{"httpStatusCode":400},
2323
+ "exception":true
2324
+ },
2325
+ "InvalidHeadersForS3Origin":{
2326
+ "type":"structure",
2327
+ "members":{
2328
+ "Message":{"shape":"string"}
2329
+ },
2330
+ "error":{"httpStatusCode":400},
2331
+ "exception":true
2332
+ },
2333
+ "InvalidIfMatchVersion":{
2334
+ "type":"structure",
2335
+ "members":{
2336
+ "Message":{"shape":"string"}
2337
+ },
2338
+ "error":{"httpStatusCode":400},
2339
+ "exception":true
2340
+ },
2341
+ "InvalidLambdaFunctionAssociation":{
2342
+ "type":"structure",
2343
+ "members":{
2344
+ "Message":{"shape":"string"}
2345
+ },
2346
+ "error":{"httpStatusCode":400},
2347
+ "exception":true
2348
+ },
2349
+ "InvalidLocationCode":{
2350
+ "type":"structure",
2351
+ "members":{
2352
+ "Message":{"shape":"string"}
2353
+ },
2354
+ "error":{"httpStatusCode":400},
2355
+ "exception":true
2356
+ },
2357
+ "InvalidMinimumProtocolVersion":{
2358
+ "type":"structure",
2359
+ "members":{
2360
+ "Message":{"shape":"string"}
2361
+ },
2362
+ "error":{"httpStatusCode":400},
2363
+ "exception":true
2364
+ },
2365
+ "InvalidOrigin":{
2366
+ "type":"structure",
2367
+ "members":{
2368
+ "Message":{"shape":"string"}
2369
+ },
2370
+ "error":{"httpStatusCode":400},
2371
+ "exception":true
2372
+ },
2373
+ "InvalidOriginAccessIdentity":{
2374
+ "type":"structure",
2375
+ "members":{
2376
+ "Message":{"shape":"string"}
2377
+ },
2378
+ "error":{"httpStatusCode":400},
2379
+ "exception":true
2380
+ },
2381
+ "InvalidOriginKeepaliveTimeout":{
2382
+ "type":"structure",
2383
+ "members":{
2384
+ "Message":{"shape":"string"}
2385
+ },
2386
+ "error":{"httpStatusCode":400},
2387
+ "exception":true
2388
+ },
2389
+ "InvalidOriginReadTimeout":{
2390
+ "type":"structure",
2391
+ "members":{
2392
+ "Message":{"shape":"string"}
2393
+ },
2394
+ "error":{"httpStatusCode":400},
2395
+ "exception":true
2396
+ },
2397
+ "InvalidProtocolSettings":{
2398
+ "type":"structure",
2399
+ "members":{
2400
+ "Message":{"shape":"string"}
2401
+ },
2402
+ "error":{"httpStatusCode":400},
2403
+ "exception":true
2404
+ },
2405
+ "InvalidQueryStringParameters":{
2406
+ "type":"structure",
2407
+ "members":{
2408
+ "Message":{"shape":"string"}
2409
+ },
2410
+ "error":{"httpStatusCode":400},
2411
+ "exception":true
2412
+ },
2413
+ "InvalidRelativePath":{
2414
+ "type":"structure",
2415
+ "members":{
2416
+ "Message":{"shape":"string"}
2417
+ },
2418
+ "error":{"httpStatusCode":400},
2419
+ "exception":true
2420
+ },
2421
+ "InvalidRequiredProtocol":{
2422
+ "type":"structure",
2423
+ "members":{
2424
+ "Message":{"shape":"string"}
2425
+ },
2426
+ "error":{"httpStatusCode":400},
2427
+ "exception":true
2428
+ },
2429
+ "InvalidResponseCode":{
2430
+ "type":"structure",
2431
+ "members":{
2432
+ "Message":{"shape":"string"}
2433
+ },
2434
+ "error":{"httpStatusCode":400},
2435
+ "exception":true
2436
+ },
2437
+ "InvalidTTLOrder":{
2438
+ "type":"structure",
2439
+ "members":{
2440
+ "Message":{"shape":"string"}
2441
+ },
2442
+ "error":{"httpStatusCode":400},
2443
+ "exception":true
2444
+ },
2445
+ "InvalidTagging":{
2446
+ "type":"structure",
2447
+ "members":{
2448
+ "Message":{"shape":"string"}
2449
+ },
2450
+ "error":{"httpStatusCode":400},
2451
+ "exception":true
2452
+ },
2453
+ "InvalidViewerCertificate":{
2454
+ "type":"structure",
2455
+ "members":{
2456
+ "Message":{"shape":"string"}
2457
+ },
2458
+ "error":{"httpStatusCode":400},
2459
+ "exception":true
2460
+ },
2461
+ "InvalidWebACLId":{
2462
+ "type":"structure",
2463
+ "members":{
2464
+ "Message":{"shape":"string"}
2465
+ },
2466
+ "error":{"httpStatusCode":400},
2467
+ "exception":true
2468
+ },
2469
+ "Invalidation":{
2470
+ "type":"structure",
2471
+ "required":[
2472
+ "Id",
2473
+ "Status",
2474
+ "CreateTime",
2475
+ "InvalidationBatch"
2476
+ ],
2477
+ "members":{
2478
+ "Id":{"shape":"string"},
2479
+ "Status":{"shape":"string"},
2480
+ "CreateTime":{"shape":"timestamp"},
2481
+ "InvalidationBatch":{"shape":"InvalidationBatch"}
2482
+ }
2483
+ },
2484
+ "InvalidationBatch":{
2485
+ "type":"structure",
2486
+ "required":[
2487
+ "Paths",
2488
+ "CallerReference"
2489
+ ],
2490
+ "members":{
2491
+ "Paths":{"shape":"Paths"},
2492
+ "CallerReference":{"shape":"string"}
2493
+ }
2494
+ },
2495
+ "InvalidationList":{
2496
+ "type":"structure",
2497
+ "required":[
2498
+ "Marker",
2499
+ "MaxItems",
2500
+ "IsTruncated",
2501
+ "Quantity"
2502
+ ],
2503
+ "members":{
2504
+ "Marker":{"shape":"string"},
2505
+ "NextMarker":{"shape":"string"},
2506
+ "MaxItems":{"shape":"integer"},
2507
+ "IsTruncated":{"shape":"boolean"},
2508
+ "Quantity":{"shape":"integer"},
2509
+ "Items":{"shape":"InvalidationSummaryList"}
2510
+ }
2511
+ },
2512
+ "InvalidationSummary":{
2513
+ "type":"structure",
2514
+ "required":[
2515
+ "Id",
2516
+ "CreateTime",
2517
+ "Status"
2518
+ ],
2519
+ "members":{
2520
+ "Id":{"shape":"string"},
2521
+ "CreateTime":{"shape":"timestamp"},
2522
+ "Status":{"shape":"string"}
2523
+ }
2524
+ },
2525
+ "InvalidationSummaryList":{
2526
+ "type":"list",
2527
+ "member":{
2528
+ "shape":"InvalidationSummary",
2529
+ "locationName":"InvalidationSummary"
2530
+ }
2531
+ },
2532
+ "ItemSelection":{
2533
+ "type":"string",
2534
+ "enum":[
2535
+ "none",
2536
+ "whitelist",
2537
+ "all"
2538
+ ]
2539
+ },
2540
+ "KeyPairIdList":{
2541
+ "type":"list",
2542
+ "member":{
2543
+ "shape":"string",
2544
+ "locationName":"KeyPairId"
2545
+ }
2546
+ },
2547
+ "KeyPairIds":{
2548
+ "type":"structure",
2549
+ "required":["Quantity"],
2550
+ "members":{
2551
+ "Quantity":{"shape":"integer"},
2552
+ "Items":{"shape":"KeyPairIdList"}
2553
+ }
2554
+ },
2555
+ "LambdaFunctionARN":{"type":"string"},
2556
+ "LambdaFunctionAssociation":{
2557
+ "type":"structure",
2558
+ "required":[
2559
+ "LambdaFunctionARN",
2560
+ "EventType"
2561
+ ],
2562
+ "members":{
2563
+ "LambdaFunctionARN":{"shape":"LambdaFunctionARN"},
2564
+ "EventType":{"shape":"EventType"},
2565
+ "IncludeBody":{"shape":"boolean"}
2566
+ }
2567
+ },
2568
+ "LambdaFunctionAssociationList":{
2569
+ "type":"list",
2570
+ "member":{
2571
+ "shape":"LambdaFunctionAssociation",
2572
+ "locationName":"LambdaFunctionAssociation"
2573
+ }
2574
+ },
2575
+ "LambdaFunctionAssociations":{
2576
+ "type":"structure",
2577
+ "required":["Quantity"],
2578
+ "members":{
2579
+ "Quantity":{"shape":"integer"},
2580
+ "Items":{"shape":"LambdaFunctionAssociationList"}
2581
+ }
2582
+ },
2583
+ "ListCloudFrontOriginAccessIdentitiesRequest":{
2584
+ "type":"structure",
2585
+ "members":{
2586
+ "Marker":{
2587
+ "shape":"string",
2588
+ "location":"querystring",
2589
+ "locationName":"Marker"
2590
+ },
2591
+ "MaxItems":{
2592
+ "shape":"string",
2593
+ "location":"querystring",
2594
+ "locationName":"MaxItems"
2595
+ }
2596
+ }
2597
+ },
2598
+ "ListCloudFrontOriginAccessIdentitiesResult":{
2599
+ "type":"structure",
2600
+ "members":{
2601
+ "CloudFrontOriginAccessIdentityList":{"shape":"CloudFrontOriginAccessIdentityList"}
2602
+ },
2603
+ "payload":"CloudFrontOriginAccessIdentityList"
2604
+ },
2605
+ "ListDistributionsByWebACLIdRequest":{
2606
+ "type":"structure",
2607
+ "required":["WebACLId"],
2608
+ "members":{
2609
+ "Marker":{
2610
+ "shape":"string",
2611
+ "location":"querystring",
2612
+ "locationName":"Marker"
2613
+ },
2614
+ "MaxItems":{
2615
+ "shape":"string",
2616
+ "location":"querystring",
2617
+ "locationName":"MaxItems"
2618
+ },
2619
+ "WebACLId":{
2620
+ "shape":"string",
2621
+ "location":"uri",
2622
+ "locationName":"WebACLId"
2623
+ }
2624
+ }
2625
+ },
2626
+ "ListDistributionsByWebACLIdResult":{
2627
+ "type":"structure",
2628
+ "members":{
2629
+ "DistributionList":{"shape":"DistributionList"}
2630
+ },
2631
+ "payload":"DistributionList"
2632
+ },
2633
+ "ListDistributionsRequest":{
2634
+ "type":"structure",
2635
+ "members":{
2636
+ "Marker":{
2637
+ "shape":"string",
2638
+ "location":"querystring",
2639
+ "locationName":"Marker"
2640
+ },
2641
+ "MaxItems":{
2642
+ "shape":"string",
2643
+ "location":"querystring",
2644
+ "locationName":"MaxItems"
2645
+ }
2646
+ }
2647
+ },
2648
+ "ListDistributionsResult":{
2649
+ "type":"structure",
2650
+ "members":{
2651
+ "DistributionList":{"shape":"DistributionList"}
2652
+ },
2653
+ "payload":"DistributionList"
2654
+ },
2655
+ "ListFieldLevelEncryptionConfigsRequest":{
2656
+ "type":"structure",
2657
+ "members":{
2658
+ "Marker":{
2659
+ "shape":"string",
2660
+ "location":"querystring",
2661
+ "locationName":"Marker"
2662
+ },
2663
+ "MaxItems":{
2664
+ "shape":"string",
2665
+ "location":"querystring",
2666
+ "locationName":"MaxItems"
2667
+ }
2668
+ }
2669
+ },
2670
+ "ListFieldLevelEncryptionConfigsResult":{
2671
+ "type":"structure",
2672
+ "members":{
2673
+ "FieldLevelEncryptionList":{"shape":"FieldLevelEncryptionList"}
2674
+ },
2675
+ "payload":"FieldLevelEncryptionList"
2676
+ },
2677
+ "ListFieldLevelEncryptionProfilesRequest":{
2678
+ "type":"structure",
2679
+ "members":{
2680
+ "Marker":{
2681
+ "shape":"string",
2682
+ "location":"querystring",
2683
+ "locationName":"Marker"
2684
+ },
2685
+ "MaxItems":{
2686
+ "shape":"string",
2687
+ "location":"querystring",
2688
+ "locationName":"MaxItems"
2689
+ }
2690
+ }
2691
+ },
2692
+ "ListFieldLevelEncryptionProfilesResult":{
2693
+ "type":"structure",
2694
+ "members":{
2695
+ "FieldLevelEncryptionProfileList":{"shape":"FieldLevelEncryptionProfileList"}
2696
+ },
2697
+ "payload":"FieldLevelEncryptionProfileList"
2698
+ },
2699
+ "ListInvalidationsRequest":{
2700
+ "type":"structure",
2701
+ "required":["DistributionId"],
2702
+ "members":{
2703
+ "DistributionId":{
2704
+ "shape":"string",
2705
+ "location":"uri",
2706
+ "locationName":"DistributionId"
2707
+ },
2708
+ "Marker":{
2709
+ "shape":"string",
2710
+ "location":"querystring",
2711
+ "locationName":"Marker"
2712
+ },
2713
+ "MaxItems":{
2714
+ "shape":"string",
2715
+ "location":"querystring",
2716
+ "locationName":"MaxItems"
2717
+ }
2718
+ }
2719
+ },
2720
+ "ListInvalidationsResult":{
2721
+ "type":"structure",
2722
+ "members":{
2723
+ "InvalidationList":{"shape":"InvalidationList"}
2724
+ },
2725
+ "payload":"InvalidationList"
2726
+ },
2727
+ "ListPublicKeysRequest":{
2728
+ "type":"structure",
2729
+ "members":{
2730
+ "Marker":{
2731
+ "shape":"string",
2732
+ "location":"querystring",
2733
+ "locationName":"Marker"
2734
+ },
2735
+ "MaxItems":{
2736
+ "shape":"string",
2737
+ "location":"querystring",
2738
+ "locationName":"MaxItems"
2739
+ }
2740
+ }
2741
+ },
2742
+ "ListPublicKeysResult":{
2743
+ "type":"structure",
2744
+ "members":{
2745
+ "PublicKeyList":{"shape":"PublicKeyList"}
2746
+ },
2747
+ "payload":"PublicKeyList"
2748
+ },
2749
+ "ListStreamingDistributionsRequest":{
2750
+ "type":"structure",
2751
+ "members":{
2752
+ "Marker":{
2753
+ "shape":"string",
2754
+ "location":"querystring",
2755
+ "locationName":"Marker"
2756
+ },
2757
+ "MaxItems":{
2758
+ "shape":"string",
2759
+ "location":"querystring",
2760
+ "locationName":"MaxItems"
2761
+ }
2762
+ }
2763
+ },
2764
+ "ListStreamingDistributionsResult":{
2765
+ "type":"structure",
2766
+ "members":{
2767
+ "StreamingDistributionList":{"shape":"StreamingDistributionList"}
2768
+ },
2769
+ "payload":"StreamingDistributionList"
2770
+ },
2771
+ "ListTagsForResourceRequest":{
2772
+ "type":"structure",
2773
+ "required":["Resource"],
2774
+ "members":{
2775
+ "Resource":{
2776
+ "shape":"ResourceARN",
2777
+ "location":"querystring",
2778
+ "locationName":"Resource"
2779
+ }
2780
+ }
2781
+ },
2782
+ "ListTagsForResourceResult":{
2783
+ "type":"structure",
2784
+ "required":["Tags"],
2785
+ "members":{
2786
+ "Tags":{"shape":"Tags"}
2787
+ },
2788
+ "payload":"Tags"
2789
+ },
2790
+ "LocationList":{
2791
+ "type":"list",
2792
+ "member":{
2793
+ "shape":"string",
2794
+ "locationName":"Location"
2795
+ }
2796
+ },
2797
+ "LoggingConfig":{
2798
+ "type":"structure",
2799
+ "required":[
2800
+ "Enabled",
2801
+ "IncludeCookies",
2802
+ "Bucket",
2803
+ "Prefix"
2804
+ ],
2805
+ "members":{
2806
+ "Enabled":{"shape":"boolean"},
2807
+ "IncludeCookies":{"shape":"boolean"},
2808
+ "Bucket":{"shape":"string"},
2809
+ "Prefix":{"shape":"string"}
2810
+ }
2811
+ },
2812
+ "Method":{
2813
+ "type":"string",
2814
+ "enum":[
2815
+ "GET",
2816
+ "HEAD",
2817
+ "POST",
2818
+ "PUT",
2819
+ "PATCH",
2820
+ "OPTIONS",
2821
+ "DELETE"
2822
+ ]
2823
+ },
2824
+ "MethodsList":{
2825
+ "type":"list",
2826
+ "member":{
2827
+ "shape":"Method",
2828
+ "locationName":"Method"
2829
+ }
2830
+ },
2831
+ "MinimumProtocolVersion":{
2832
+ "type":"string",
2833
+ "enum":[
2834
+ "SSLv3",
2835
+ "TLSv1",
2836
+ "TLSv1_2016",
2837
+ "TLSv1.1_2016",
2838
+ "TLSv1.2_2018"
2839
+ ]
2840
+ },
2841
+ "MissingBody":{
2842
+ "type":"structure",
2843
+ "members":{
2844
+ "Message":{"shape":"string"}
2845
+ },
2846
+ "error":{"httpStatusCode":400},
2847
+ "exception":true
2848
+ },
2849
+ "NoSuchCloudFrontOriginAccessIdentity":{
2850
+ "type":"structure",
2851
+ "members":{
2852
+ "Message":{"shape":"string"}
2853
+ },
2854
+ "error":{"httpStatusCode":404},
2855
+ "exception":true
2856
+ },
2857
+ "NoSuchDistribution":{
2858
+ "type":"structure",
2859
+ "members":{
2860
+ "Message":{"shape":"string"}
2861
+ },
2862
+ "error":{"httpStatusCode":404},
2863
+ "exception":true
2864
+ },
2865
+ "NoSuchFieldLevelEncryptionConfig":{
2866
+ "type":"structure",
2867
+ "members":{
2868
+ "Message":{"shape":"string"}
2869
+ },
2870
+ "error":{"httpStatusCode":404},
2871
+ "exception":true
2872
+ },
2873
+ "NoSuchFieldLevelEncryptionProfile":{
2874
+ "type":"structure",
2875
+ "members":{
2876
+ "Message":{"shape":"string"}
2877
+ },
2878
+ "error":{"httpStatusCode":404},
2879
+ "exception":true
2880
+ },
2881
+ "NoSuchInvalidation":{
2882
+ "type":"structure",
2883
+ "members":{
2884
+ "Message":{"shape":"string"}
2885
+ },
2886
+ "error":{"httpStatusCode":404},
2887
+ "exception":true
2888
+ },
2889
+ "NoSuchOrigin":{
2890
+ "type":"structure",
2891
+ "members":{
2892
+ "Message":{"shape":"string"}
2893
+ },
2894
+ "error":{"httpStatusCode":404},
2895
+ "exception":true
2896
+ },
2897
+ "NoSuchPublicKey":{
2898
+ "type":"structure",
2899
+ "members":{
2900
+ "Message":{"shape":"string"}
2901
+ },
2902
+ "error":{"httpStatusCode":404},
2903
+ "exception":true
2904
+ },
2905
+ "NoSuchResource":{
2906
+ "type":"structure",
2907
+ "members":{
2908
+ "Message":{"shape":"string"}
2909
+ },
2910
+ "error":{"httpStatusCode":404},
2911
+ "exception":true
2912
+ },
2913
+ "NoSuchStreamingDistribution":{
2914
+ "type":"structure",
2915
+ "members":{
2916
+ "Message":{"shape":"string"}
2917
+ },
2918
+ "error":{"httpStatusCode":404},
2919
+ "exception":true
2920
+ },
2921
+ "Origin":{
2922
+ "type":"structure",
2923
+ "required":[
2924
+ "Id",
2925
+ "DomainName"
2926
+ ],
2927
+ "members":{
2928
+ "Id":{"shape":"string"},
2929
+ "DomainName":{"shape":"string"},
2930
+ "OriginPath":{"shape":"string"},
2931
+ "CustomHeaders":{"shape":"CustomHeaders"},
2932
+ "S3OriginConfig":{"shape":"S3OriginConfig"},
2933
+ "CustomOriginConfig":{"shape":"CustomOriginConfig"}
2934
+ }
2935
+ },
2936
+ "OriginCustomHeader":{
2937
+ "type":"structure",
2938
+ "required":[
2939
+ "HeaderName",
2940
+ "HeaderValue"
2941
+ ],
2942
+ "members":{
2943
+ "HeaderName":{"shape":"string"},
2944
+ "HeaderValue":{"shape":"string"}
2945
+ }
2946
+ },
2947
+ "OriginCustomHeadersList":{
2948
+ "type":"list",
2949
+ "member":{
2950
+ "shape":"OriginCustomHeader",
2951
+ "locationName":"OriginCustomHeader"
2952
+ }
2953
+ },
2954
+ "OriginList":{
2955
+ "type":"list",
2956
+ "member":{
2957
+ "shape":"Origin",
2958
+ "locationName":"Origin"
2959
+ },
2960
+ "min":1
2961
+ },
2962
+ "OriginProtocolPolicy":{
2963
+ "type":"string",
2964
+ "enum":[
2965
+ "http-only",
2966
+ "match-viewer",
2967
+ "https-only"
2968
+ ]
2969
+ },
2970
+ "OriginSslProtocols":{
2971
+ "type":"structure",
2972
+ "required":[
2973
+ "Quantity",
2974
+ "Items"
2975
+ ],
2976
+ "members":{
2977
+ "Quantity":{"shape":"integer"},
2978
+ "Items":{"shape":"SslProtocolsList"}
2979
+ }
2980
+ },
2981
+ "Origins":{
2982
+ "type":"structure",
2983
+ "required":["Quantity"],
2984
+ "members":{
2985
+ "Quantity":{"shape":"integer"},
2986
+ "Items":{"shape":"OriginList"}
2987
+ }
2988
+ },
2989
+ "PathList":{
2990
+ "type":"list",
2991
+ "member":{
2992
+ "shape":"string",
2993
+ "locationName":"Path"
2994
+ }
2995
+ },
2996
+ "Paths":{
2997
+ "type":"structure",
2998
+ "required":["Quantity"],
2999
+ "members":{
3000
+ "Quantity":{"shape":"integer"},
3001
+ "Items":{"shape":"PathList"}
3002
+ }
3003
+ },
3004
+ "PreconditionFailed":{
3005
+ "type":"structure",
3006
+ "members":{
3007
+ "Message":{"shape":"string"}
3008
+ },
3009
+ "error":{"httpStatusCode":412},
3010
+ "exception":true
3011
+ },
3012
+ "PriceClass":{
3013
+ "type":"string",
3014
+ "enum":[
3015
+ "PriceClass_100",
3016
+ "PriceClass_200",
3017
+ "PriceClass_All"
3018
+ ]
3019
+ },
3020
+ "PublicKey":{
3021
+ "type":"structure",
3022
+ "required":[
3023
+ "Id",
3024
+ "CreatedTime",
3025
+ "PublicKeyConfig"
3026
+ ],
3027
+ "members":{
3028
+ "Id":{"shape":"string"},
3029
+ "CreatedTime":{"shape":"timestamp"},
3030
+ "PublicKeyConfig":{"shape":"PublicKeyConfig"}
3031
+ }
3032
+ },
3033
+ "PublicKeyAlreadyExists":{
3034
+ "type":"structure",
3035
+ "members":{
3036
+ "Message":{"shape":"string"}
3037
+ },
3038
+ "error":{"httpStatusCode":409},
3039
+ "exception":true
3040
+ },
3041
+ "PublicKeyConfig":{
3042
+ "type":"structure",
3043
+ "required":[
3044
+ "CallerReference",
3045
+ "Name",
3046
+ "EncodedKey"
3047
+ ],
3048
+ "members":{
3049
+ "CallerReference":{"shape":"string"},
3050
+ "Name":{"shape":"string"},
3051
+ "EncodedKey":{"shape":"string"},
3052
+ "Comment":{"shape":"string"}
3053
+ }
3054
+ },
3055
+ "PublicKeyInUse":{
3056
+ "type":"structure",
3057
+ "members":{
3058
+ "Message":{"shape":"string"}
3059
+ },
3060
+ "error":{"httpStatusCode":409},
3061
+ "exception":true
3062
+ },
3063
+ "PublicKeyList":{
3064
+ "type":"structure",
3065
+ "required":[
3066
+ "MaxItems",
3067
+ "Quantity"
3068
+ ],
3069
+ "members":{
3070
+ "NextMarker":{"shape":"string"},
3071
+ "MaxItems":{"shape":"integer"},
3072
+ "Quantity":{"shape":"integer"},
3073
+ "Items":{"shape":"PublicKeySummaryList"}
3074
+ }
3075
+ },
3076
+ "PublicKeySummary":{
3077
+ "type":"structure",
3078
+ "required":[
3079
+ "Id",
3080
+ "Name",
3081
+ "CreatedTime",
3082
+ "EncodedKey"
3083
+ ],
3084
+ "members":{
3085
+ "Id":{"shape":"string"},
3086
+ "Name":{"shape":"string"},
3087
+ "CreatedTime":{"shape":"timestamp"},
3088
+ "EncodedKey":{"shape":"string"},
3089
+ "Comment":{"shape":"string"}
3090
+ }
3091
+ },
3092
+ "PublicKeySummaryList":{
3093
+ "type":"list",
3094
+ "member":{
3095
+ "shape":"PublicKeySummary",
3096
+ "locationName":"PublicKeySummary"
3097
+ }
3098
+ },
3099
+ "QueryArgProfile":{
3100
+ "type":"structure",
3101
+ "required":[
3102
+ "QueryArg",
3103
+ "ProfileId"
3104
+ ],
3105
+ "members":{
3106
+ "QueryArg":{"shape":"string"},
3107
+ "ProfileId":{"shape":"string"}
3108
+ }
3109
+ },
3110
+ "QueryArgProfileConfig":{
3111
+ "type":"structure",
3112
+ "required":["ForwardWhenQueryArgProfileIsUnknown"],
3113
+ "members":{
3114
+ "ForwardWhenQueryArgProfileIsUnknown":{"shape":"boolean"},
3115
+ "QueryArgProfiles":{"shape":"QueryArgProfiles"}
3116
+ }
3117
+ },
3118
+ "QueryArgProfileEmpty":{
3119
+ "type":"structure",
3120
+ "members":{
3121
+ "Message":{"shape":"string"}
3122
+ },
3123
+ "error":{"httpStatusCode":400},
3124
+ "exception":true
3125
+ },
3126
+ "QueryArgProfileList":{
3127
+ "type":"list",
3128
+ "member":{
3129
+ "shape":"QueryArgProfile",
3130
+ "locationName":"QueryArgProfile"
3131
+ }
3132
+ },
3133
+ "QueryArgProfiles":{
3134
+ "type":"structure",
3135
+ "required":["Quantity"],
3136
+ "members":{
3137
+ "Quantity":{"shape":"integer"},
3138
+ "Items":{"shape":"QueryArgProfileList"}
3139
+ }
3140
+ },
3141
+ "QueryStringCacheKeys":{
3142
+ "type":"structure",
3143
+ "required":["Quantity"],
3144
+ "members":{
3145
+ "Quantity":{"shape":"integer"},
3146
+ "Items":{"shape":"QueryStringCacheKeysList"}
3147
+ }
3148
+ },
3149
+ "QueryStringCacheKeysList":{
3150
+ "type":"list",
3151
+ "member":{
3152
+ "shape":"string",
3153
+ "locationName":"Name"
3154
+ }
3155
+ },
3156
+ "ResourceARN":{
3157
+ "type":"string",
3158
+ "pattern":"arn:aws:cloudfront::[0-9]+:.*"
3159
+ },
3160
+ "Restrictions":{
3161
+ "type":"structure",
3162
+ "required":["GeoRestriction"],
3163
+ "members":{
3164
+ "GeoRestriction":{"shape":"GeoRestriction"}
3165
+ }
3166
+ },
3167
+ "S3Origin":{
3168
+ "type":"structure",
3169
+ "required":[
3170
+ "DomainName",
3171
+ "OriginAccessIdentity"
3172
+ ],
3173
+ "members":{
3174
+ "DomainName":{"shape":"string"},
3175
+ "OriginAccessIdentity":{"shape":"string"}
3176
+ }
3177
+ },
3178
+ "S3OriginConfig":{
3179
+ "type":"structure",
3180
+ "required":["OriginAccessIdentity"],
3181
+ "members":{
3182
+ "OriginAccessIdentity":{"shape":"string"}
3183
+ }
3184
+ },
3185
+ "SSLSupportMethod":{
3186
+ "type":"string",
3187
+ "enum":[
3188
+ "sni-only",
3189
+ "vip"
3190
+ ]
3191
+ },
3192
+ "Signer":{
3193
+ "type":"structure",
3194
+ "members":{
3195
+ "AwsAccountNumber":{"shape":"string"},
3196
+ "KeyPairIds":{"shape":"KeyPairIds"}
3197
+ }
3198
+ },
3199
+ "SignerList":{
3200
+ "type":"list",
3201
+ "member":{
3202
+ "shape":"Signer",
3203
+ "locationName":"Signer"
3204
+ }
3205
+ },
3206
+ "SslProtocol":{
3207
+ "type":"string",
3208
+ "enum":[
3209
+ "SSLv3",
3210
+ "TLSv1",
3211
+ "TLSv1.1",
3212
+ "TLSv1.2"
3213
+ ]
3214
+ },
3215
+ "SslProtocolsList":{
3216
+ "type":"list",
3217
+ "member":{
3218
+ "shape":"SslProtocol",
3219
+ "locationName":"SslProtocol"
3220
+ }
3221
+ },
3222
+ "StreamingDistribution":{
3223
+ "type":"structure",
3224
+ "required":[
3225
+ "Id",
3226
+ "ARN",
3227
+ "Status",
3228
+ "DomainName",
3229
+ "ActiveTrustedSigners",
3230
+ "StreamingDistributionConfig"
3231
+ ],
3232
+ "members":{
3233
+ "Id":{"shape":"string"},
3234
+ "ARN":{"shape":"string"},
3235
+ "Status":{"shape":"string"},
3236
+ "LastModifiedTime":{"shape":"timestamp"},
3237
+ "DomainName":{"shape":"string"},
3238
+ "ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
3239
+ "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"}
3240
+ }
3241
+ },
3242
+ "StreamingDistributionAlreadyExists":{
3243
+ "type":"structure",
3244
+ "members":{
3245
+ "Message":{"shape":"string"}
3246
+ },
3247
+ "error":{"httpStatusCode":409},
3248
+ "exception":true
3249
+ },
3250
+ "StreamingDistributionConfig":{
3251
+ "type":"structure",
3252
+ "required":[
3253
+ "CallerReference",
3254
+ "S3Origin",
3255
+ "Comment",
3256
+ "TrustedSigners",
3257
+ "Enabled"
3258
+ ],
3259
+ "members":{
3260
+ "CallerReference":{"shape":"string"},
3261
+ "S3Origin":{"shape":"S3Origin"},
3262
+ "Aliases":{"shape":"Aliases"},
3263
+ "Comment":{"shape":"string"},
3264
+ "Logging":{"shape":"StreamingLoggingConfig"},
3265
+ "TrustedSigners":{"shape":"TrustedSigners"},
3266
+ "PriceClass":{"shape":"PriceClass"},
3267
+ "Enabled":{"shape":"boolean"}
3268
+ }
3269
+ },
3270
+ "StreamingDistributionConfigWithTags":{
3271
+ "type":"structure",
3272
+ "required":[
3273
+ "StreamingDistributionConfig",
3274
+ "Tags"
3275
+ ],
3276
+ "members":{
3277
+ "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
3278
+ "Tags":{"shape":"Tags"}
3279
+ }
3280
+ },
3281
+ "StreamingDistributionList":{
3282
+ "type":"structure",
3283
+ "required":[
3284
+ "Marker",
3285
+ "MaxItems",
3286
+ "IsTruncated",
3287
+ "Quantity"
3288
+ ],
3289
+ "members":{
3290
+ "Marker":{"shape":"string"},
3291
+ "NextMarker":{"shape":"string"},
3292
+ "MaxItems":{"shape":"integer"},
3293
+ "IsTruncated":{"shape":"boolean"},
3294
+ "Quantity":{"shape":"integer"},
3295
+ "Items":{"shape":"StreamingDistributionSummaryList"}
3296
+ }
3297
+ },
3298
+ "StreamingDistributionNotDisabled":{
3299
+ "type":"structure",
3300
+ "members":{
3301
+ "Message":{"shape":"string"}
3302
+ },
3303
+ "error":{"httpStatusCode":409},
3304
+ "exception":true
3305
+ },
3306
+ "StreamingDistributionSummary":{
3307
+ "type":"structure",
3308
+ "required":[
3309
+ "Id",
3310
+ "ARN",
3311
+ "Status",
3312
+ "LastModifiedTime",
3313
+ "DomainName",
3314
+ "S3Origin",
3315
+ "Aliases",
3316
+ "TrustedSigners",
3317
+ "Comment",
3318
+ "PriceClass",
3319
+ "Enabled"
3320
+ ],
3321
+ "members":{
3322
+ "Id":{"shape":"string"},
3323
+ "ARN":{"shape":"string"},
3324
+ "Status":{"shape":"string"},
3325
+ "LastModifiedTime":{"shape":"timestamp"},
3326
+ "DomainName":{"shape":"string"},
3327
+ "S3Origin":{"shape":"S3Origin"},
3328
+ "Aliases":{"shape":"Aliases"},
3329
+ "TrustedSigners":{"shape":"TrustedSigners"},
3330
+ "Comment":{"shape":"string"},
3331
+ "PriceClass":{"shape":"PriceClass"},
3332
+ "Enabled":{"shape":"boolean"}
3333
+ }
3334
+ },
3335
+ "StreamingDistributionSummaryList":{
3336
+ "type":"list",
3337
+ "member":{
3338
+ "shape":"StreamingDistributionSummary",
3339
+ "locationName":"StreamingDistributionSummary"
3340
+ }
3341
+ },
3342
+ "StreamingLoggingConfig":{
3343
+ "type":"structure",
3344
+ "required":[
3345
+ "Enabled",
3346
+ "Bucket",
3347
+ "Prefix"
3348
+ ],
3349
+ "members":{
3350
+ "Enabled":{"shape":"boolean"},
3351
+ "Bucket":{"shape":"string"},
3352
+ "Prefix":{"shape":"string"}
3353
+ }
3354
+ },
3355
+ "Tag":{
3356
+ "type":"structure",
3357
+ "required":["Key"],
3358
+ "members":{
3359
+ "Key":{"shape":"TagKey"},
3360
+ "Value":{"shape":"TagValue"}
3361
+ }
3362
+ },
3363
+ "TagKey":{
3364
+ "type":"string",
3365
+ "max":128,
3366
+ "min":1,
3367
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3368
+ },
3369
+ "TagKeyList":{
3370
+ "type":"list",
3371
+ "member":{
3372
+ "shape":"TagKey",
3373
+ "locationName":"Key"
3374
+ }
3375
+ },
3376
+ "TagKeys":{
3377
+ "type":"structure",
3378
+ "members":{
3379
+ "Items":{"shape":"TagKeyList"}
3380
+ }
3381
+ },
3382
+ "TagList":{
3383
+ "type":"list",
3384
+ "member":{
3385
+ "shape":"Tag",
3386
+ "locationName":"Tag"
3387
+ }
3388
+ },
3389
+ "TagResourceRequest":{
3390
+ "type":"structure",
3391
+ "required":[
3392
+ "Resource",
3393
+ "Tags"
3394
+ ],
3395
+ "members":{
3396
+ "Resource":{
3397
+ "shape":"ResourceARN",
3398
+ "location":"querystring",
3399
+ "locationName":"Resource"
3400
+ },
3401
+ "Tags":{
3402
+ "shape":"Tags",
3403
+ "locationName":"Tags",
3404
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
3405
+ }
3406
+ },
3407
+ "payload":"Tags"
3408
+ },
3409
+ "TagValue":{
3410
+ "type":"string",
3411
+ "max":256,
3412
+ "min":0,
3413
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3414
+ },
3415
+ "Tags":{
3416
+ "type":"structure",
3417
+ "members":{
3418
+ "Items":{"shape":"TagList"}
3419
+ }
3420
+ },
3421
+ "TooManyCacheBehaviors":{
3422
+ "type":"structure",
3423
+ "members":{
3424
+ "Message":{"shape":"string"}
3425
+ },
3426
+ "error":{"httpStatusCode":400},
3427
+ "exception":true
3428
+ },
3429
+ "TooManyCertificates":{
3430
+ "type":"structure",
3431
+ "members":{
3432
+ "Message":{"shape":"string"}
3433
+ },
3434
+ "error":{"httpStatusCode":400},
3435
+ "exception":true
3436
+ },
3437
+ "TooManyCloudFrontOriginAccessIdentities":{
3438
+ "type":"structure",
3439
+ "members":{
3440
+ "Message":{"shape":"string"}
3441
+ },
3442
+ "error":{"httpStatusCode":400},
3443
+ "exception":true
3444
+ },
3445
+ "TooManyCookieNamesInWhiteList":{
3446
+ "type":"structure",
3447
+ "members":{
3448
+ "Message":{"shape":"string"}
3449
+ },
3450
+ "error":{"httpStatusCode":400},
3451
+ "exception":true
3452
+ },
3453
+ "TooManyDistributionCNAMEs":{
3454
+ "type":"structure",
3455
+ "members":{
3456
+ "Message":{"shape":"string"}
3457
+ },
3458
+ "error":{"httpStatusCode":400},
3459
+ "exception":true
3460
+ },
3461
+ "TooManyDistributions":{
3462
+ "type":"structure",
3463
+ "members":{
3464
+ "Message":{"shape":"string"}
3465
+ },
3466
+ "error":{"httpStatusCode":400},
3467
+ "exception":true
3468
+ },
3469
+ "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig":{
3470
+ "type":"structure",
3471
+ "members":{
3472
+ "Message":{"shape":"string"}
3473
+ },
3474
+ "error":{"httpStatusCode":400},
3475
+ "exception":true
3476
+ },
3477
+ "TooManyDistributionsWithLambdaAssociations":{
3478
+ "type":"structure",
3479
+ "members":{
3480
+ "Message":{"shape":"string"}
3481
+ },
3482
+ "error":{"httpStatusCode":400},
3483
+ "exception":true
3484
+ },
3485
+ "TooManyFieldLevelEncryptionConfigs":{
3486
+ "type":"structure",
3487
+ "members":{
3488
+ "Message":{"shape":"string"}
3489
+ },
3490
+ "error":{"httpStatusCode":400},
3491
+ "exception":true
3492
+ },
3493
+ "TooManyFieldLevelEncryptionContentTypeProfiles":{
3494
+ "type":"structure",
3495
+ "members":{
3496
+ "Message":{"shape":"string"}
3497
+ },
3498
+ "error":{"httpStatusCode":400},
3499
+ "exception":true
3500
+ },
3501
+ "TooManyFieldLevelEncryptionEncryptionEntities":{
3502
+ "type":"structure",
3503
+ "members":{
3504
+ "Message":{"shape":"string"}
3505
+ },
3506
+ "error":{"httpStatusCode":400},
3507
+ "exception":true
3508
+ },
3509
+ "TooManyFieldLevelEncryptionFieldPatterns":{
3510
+ "type":"structure",
3511
+ "members":{
3512
+ "Message":{"shape":"string"}
3513
+ },
3514
+ "error":{"httpStatusCode":400},
3515
+ "exception":true
3516
+ },
3517
+ "TooManyFieldLevelEncryptionProfiles":{
3518
+ "type":"structure",
3519
+ "members":{
3520
+ "Message":{"shape":"string"}
3521
+ },
3522
+ "error":{"httpStatusCode":400},
3523
+ "exception":true
3524
+ },
3525
+ "TooManyFieldLevelEncryptionQueryArgProfiles":{
3526
+ "type":"structure",
3527
+ "members":{
3528
+ "Message":{"shape":"string"}
3529
+ },
3530
+ "error":{"httpStatusCode":400},
3531
+ "exception":true
3532
+ },
3533
+ "TooManyHeadersInForwardedValues":{
3534
+ "type":"structure",
3535
+ "members":{
3536
+ "Message":{"shape":"string"}
3537
+ },
3538
+ "error":{"httpStatusCode":400},
3539
+ "exception":true
3540
+ },
3541
+ "TooManyInvalidationsInProgress":{
3542
+ "type":"structure",
3543
+ "members":{
3544
+ "Message":{"shape":"string"}
3545
+ },
3546
+ "error":{"httpStatusCode":400},
3547
+ "exception":true
3548
+ },
3549
+ "TooManyLambdaFunctionAssociations":{
3550
+ "type":"structure",
3551
+ "members":{
3552
+ "Message":{"shape":"string"}
3553
+ },
3554
+ "error":{"httpStatusCode":400},
3555
+ "exception":true
3556
+ },
3557
+ "TooManyOriginCustomHeaders":{
3558
+ "type":"structure",
3559
+ "members":{
3560
+ "Message":{"shape":"string"}
3561
+ },
3562
+ "error":{"httpStatusCode":400},
3563
+ "exception":true
3564
+ },
3565
+ "TooManyOrigins":{
3566
+ "type":"structure",
3567
+ "members":{
3568
+ "Message":{"shape":"string"}
3569
+ },
3570
+ "error":{"httpStatusCode":400},
3571
+ "exception":true
3572
+ },
3573
+ "TooManyPublicKeys":{
3574
+ "type":"structure",
3575
+ "members":{
3576
+ "Message":{"shape":"string"}
3577
+ },
3578
+ "error":{"httpStatusCode":400},
3579
+ "exception":true
3580
+ },
3581
+ "TooManyQueryStringParameters":{
3582
+ "type":"structure",
3583
+ "members":{
3584
+ "Message":{"shape":"string"}
3585
+ },
3586
+ "error":{"httpStatusCode":400},
3587
+ "exception":true
3588
+ },
3589
+ "TooManyStreamingDistributionCNAMEs":{
3590
+ "type":"structure",
3591
+ "members":{
3592
+ "Message":{"shape":"string"}
3593
+ },
3594
+ "error":{"httpStatusCode":400},
3595
+ "exception":true
3596
+ },
3597
+ "TooManyStreamingDistributions":{
3598
+ "type":"structure",
3599
+ "members":{
3600
+ "Message":{"shape":"string"}
3601
+ },
3602
+ "error":{"httpStatusCode":400},
3603
+ "exception":true
3604
+ },
3605
+ "TooManyTrustedSigners":{
3606
+ "type":"structure",
3607
+ "members":{
3608
+ "Message":{"shape":"string"}
3609
+ },
3610
+ "error":{"httpStatusCode":400},
3611
+ "exception":true
3612
+ },
3613
+ "TrustedSignerDoesNotExist":{
3614
+ "type":"structure",
3615
+ "members":{
3616
+ "Message":{"shape":"string"}
3617
+ },
3618
+ "error":{"httpStatusCode":400},
3619
+ "exception":true
3620
+ },
3621
+ "TrustedSigners":{
3622
+ "type":"structure",
3623
+ "required":[
3624
+ "Enabled",
3625
+ "Quantity"
3626
+ ],
3627
+ "members":{
3628
+ "Enabled":{"shape":"boolean"},
3629
+ "Quantity":{"shape":"integer"},
3630
+ "Items":{"shape":"AwsAccountNumberList"}
3631
+ }
3632
+ },
3633
+ "UntagResourceRequest":{
3634
+ "type":"structure",
3635
+ "required":[
3636
+ "Resource",
3637
+ "TagKeys"
3638
+ ],
3639
+ "members":{
3640
+ "Resource":{
3641
+ "shape":"ResourceARN",
3642
+ "location":"querystring",
3643
+ "locationName":"Resource"
3644
+ },
3645
+ "TagKeys":{
3646
+ "shape":"TagKeys",
3647
+ "locationName":"TagKeys",
3648
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
3649
+ }
3650
+ },
3651
+ "payload":"TagKeys"
3652
+ },
3653
+ "UpdateCloudFrontOriginAccessIdentityRequest":{
3654
+ "type":"structure",
3655
+ "required":[
3656
+ "CloudFrontOriginAccessIdentityConfig",
3657
+ "Id"
3658
+ ],
3659
+ "members":{
3660
+ "CloudFrontOriginAccessIdentityConfig":{
3661
+ "shape":"CloudFrontOriginAccessIdentityConfig",
3662
+ "locationName":"CloudFrontOriginAccessIdentityConfig",
3663
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
3664
+ },
3665
+ "Id":{
3666
+ "shape":"string",
3667
+ "location":"uri",
3668
+ "locationName":"Id"
3669
+ },
3670
+ "IfMatch":{
3671
+ "shape":"string",
3672
+ "location":"header",
3673
+ "locationName":"If-Match"
3674
+ }
3675
+ },
3676
+ "payload":"CloudFrontOriginAccessIdentityConfig"
3677
+ },
3678
+ "UpdateCloudFrontOriginAccessIdentityResult":{
3679
+ "type":"structure",
3680
+ "members":{
3681
+ "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
3682
+ "ETag":{
3683
+ "shape":"string",
3684
+ "location":"header",
3685
+ "locationName":"ETag"
3686
+ }
3687
+ },
3688
+ "payload":"CloudFrontOriginAccessIdentity"
3689
+ },
3690
+ "UpdateDistributionRequest":{
3691
+ "type":"structure",
3692
+ "required":[
3693
+ "DistributionConfig",
3694
+ "Id"
3695
+ ],
3696
+ "members":{
3697
+ "DistributionConfig":{
3698
+ "shape":"DistributionConfig",
3699
+ "locationName":"DistributionConfig",
3700
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
3701
+ },
3702
+ "Id":{
3703
+ "shape":"string",
3704
+ "location":"uri",
3705
+ "locationName":"Id"
3706
+ },
3707
+ "IfMatch":{
3708
+ "shape":"string",
3709
+ "location":"header",
3710
+ "locationName":"If-Match"
3711
+ }
3712
+ },
3713
+ "payload":"DistributionConfig"
3714
+ },
3715
+ "UpdateDistributionResult":{
3716
+ "type":"structure",
3717
+ "members":{
3718
+ "Distribution":{"shape":"Distribution"},
3719
+ "ETag":{
3720
+ "shape":"string",
3721
+ "location":"header",
3722
+ "locationName":"ETag"
3723
+ }
3724
+ },
3725
+ "payload":"Distribution"
3726
+ },
3727
+ "UpdateFieldLevelEncryptionConfigRequest":{
3728
+ "type":"structure",
3729
+ "required":[
3730
+ "FieldLevelEncryptionConfig",
3731
+ "Id"
3732
+ ],
3733
+ "members":{
3734
+ "FieldLevelEncryptionConfig":{
3735
+ "shape":"FieldLevelEncryptionConfig",
3736
+ "locationName":"FieldLevelEncryptionConfig",
3737
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
3738
+ },
3739
+ "Id":{
3740
+ "shape":"string",
3741
+ "location":"uri",
3742
+ "locationName":"Id"
3743
+ },
3744
+ "IfMatch":{
3745
+ "shape":"string",
3746
+ "location":"header",
3747
+ "locationName":"If-Match"
3748
+ }
3749
+ },
3750
+ "payload":"FieldLevelEncryptionConfig"
3751
+ },
3752
+ "UpdateFieldLevelEncryptionConfigResult":{
3753
+ "type":"structure",
3754
+ "members":{
3755
+ "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
3756
+ "ETag":{
3757
+ "shape":"string",
3758
+ "location":"header",
3759
+ "locationName":"ETag"
3760
+ }
3761
+ },
3762
+ "payload":"FieldLevelEncryption"
3763
+ },
3764
+ "UpdateFieldLevelEncryptionProfileRequest":{
3765
+ "type":"structure",
3766
+ "required":[
3767
+ "FieldLevelEncryptionProfileConfig",
3768
+ "Id"
3769
+ ],
3770
+ "members":{
3771
+ "FieldLevelEncryptionProfileConfig":{
3772
+ "shape":"FieldLevelEncryptionProfileConfig",
3773
+ "locationName":"FieldLevelEncryptionProfileConfig",
3774
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
3775
+ },
3776
+ "Id":{
3777
+ "shape":"string",
3778
+ "location":"uri",
3779
+ "locationName":"Id"
3780
+ },
3781
+ "IfMatch":{
3782
+ "shape":"string",
3783
+ "location":"header",
3784
+ "locationName":"If-Match"
3785
+ }
3786
+ },
3787
+ "payload":"FieldLevelEncryptionProfileConfig"
3788
+ },
3789
+ "UpdateFieldLevelEncryptionProfileResult":{
3790
+ "type":"structure",
3791
+ "members":{
3792
+ "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
3793
+ "ETag":{
3794
+ "shape":"string",
3795
+ "location":"header",
3796
+ "locationName":"ETag"
3797
+ }
3798
+ },
3799
+ "payload":"FieldLevelEncryptionProfile"
3800
+ },
3801
+ "UpdatePublicKeyRequest":{
3802
+ "type":"structure",
3803
+ "required":[
3804
+ "PublicKeyConfig",
3805
+ "Id"
3806
+ ],
3807
+ "members":{
3808
+ "PublicKeyConfig":{
3809
+ "shape":"PublicKeyConfig",
3810
+ "locationName":"PublicKeyConfig",
3811
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
3812
+ },
3813
+ "Id":{
3814
+ "shape":"string",
3815
+ "location":"uri",
3816
+ "locationName":"Id"
3817
+ },
3818
+ "IfMatch":{
3819
+ "shape":"string",
3820
+ "location":"header",
3821
+ "locationName":"If-Match"
3822
+ }
3823
+ },
3824
+ "payload":"PublicKeyConfig"
3825
+ },
3826
+ "UpdatePublicKeyResult":{
3827
+ "type":"structure",
3828
+ "members":{
3829
+ "PublicKey":{"shape":"PublicKey"},
3830
+ "ETag":{
3831
+ "shape":"string",
3832
+ "location":"header",
3833
+ "locationName":"ETag"
3834
+ }
3835
+ },
3836
+ "payload":"PublicKey"
3837
+ },
3838
+ "UpdateStreamingDistributionRequest":{
3839
+ "type":"structure",
3840
+ "required":[
3841
+ "StreamingDistributionConfig",
3842
+ "Id"
3843
+ ],
3844
+ "members":{
3845
+ "StreamingDistributionConfig":{
3846
+ "shape":"StreamingDistributionConfig",
3847
+ "locationName":"StreamingDistributionConfig",
3848
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-06-18/"}
3849
+ },
3850
+ "Id":{
3851
+ "shape":"string",
3852
+ "location":"uri",
3853
+ "locationName":"Id"
3854
+ },
3855
+ "IfMatch":{
3856
+ "shape":"string",
3857
+ "location":"header",
3858
+ "locationName":"If-Match"
3859
+ }
3860
+ },
3861
+ "payload":"StreamingDistributionConfig"
3862
+ },
3863
+ "UpdateStreamingDistributionResult":{
3864
+ "type":"structure",
3865
+ "members":{
3866
+ "StreamingDistribution":{"shape":"StreamingDistribution"},
3867
+ "ETag":{
3868
+ "shape":"string",
3869
+ "location":"header",
3870
+ "locationName":"ETag"
3871
+ }
3872
+ },
3873
+ "payload":"StreamingDistribution"
3874
+ },
3875
+ "ViewerCertificate":{
3876
+ "type":"structure",
3877
+ "members":{
3878
+ "CloudFrontDefaultCertificate":{"shape":"boolean"},
3879
+ "IAMCertificateId":{"shape":"string"},
3880
+ "ACMCertificateArn":{"shape":"string"},
3881
+ "SSLSupportMethod":{"shape":"SSLSupportMethod"},
3882
+ "MinimumProtocolVersion":{"shape":"MinimumProtocolVersion"},
3883
+ "Certificate":{
3884
+ "shape":"string",
3885
+ "deprecated":true
3886
+ },
3887
+ "CertificateSource":{
3888
+ "shape":"CertificateSource",
3889
+ "deprecated":true
3890
+ }
3891
+ }
3892
+ },
3893
+ "ViewerProtocolPolicy":{
3894
+ "type":"string",
3895
+ "enum":[
3896
+ "allow-all",
3897
+ "https-only",
3898
+ "redirect-to-https"
3899
+ ]
3900
+ },
3901
+ "boolean":{"type":"boolean"},
3902
+ "integer":{"type":"integer"},
3903
+ "long":{"type":"long"},
3904
+ "string":{"type":"string"},
3905
+ "timestamp":{"type":"timestamp"}
3906
+ }
3907
+ }