aws-sdk-core 2.11.174 → 2.11.175

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