aws-sdk-core 2.2.35 → 2.2.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8459c3e02feac532f0b8014b96ec0b139e7eb3f0
4
- data.tar.gz: 9d56be319481f958332d559976b48ed0ec070e23
3
+ metadata.gz: 62c958541a3ff95c733c2ee0209f1b139c376055
4
+ data.tar.gz: 2a53ea6d1cba63c32af54d2ede449e473258d229
5
5
  SHA512:
6
- metadata.gz: 4aec479b51b6485f72a41cee9411dea1a54eed713fcd0f11a90538f0648f04bce45ecc704a92ebc80f3cc9f225c246aae75343834f20915b9be84cf29bed7f98
7
- data.tar.gz: b136762c043957ba5f9bcf560d6af48bf16823dd48843fcd966c51a9b66d695b607bc1b158519d3cb1ad8d5a8ad0aaf9b9f3820e5b3e2de058c336d917979be8
6
+ metadata.gz: 71c1bd67b7b64fcfbeaa457a1461b036bbf8245ff5f70323dfac4a3a5a9e1735223f1c7a75064ce07c0a12a8ec419d846f55c6eb9da5b8b70d7407cdc8a204e5
7
+ data.tar.gz: 5141a3c4c1af5da8f0759977f7ac4d0a7462d28536842b0be3c17c310ae3ee1bc7ab84cbdf4ec60ab212e88c6ed2db7672dfe7ecb65f23dad1753a8246d83c83
@@ -11,6 +11,20 @@
11
11
  "targetPrefix":"CertificateManager"
12
12
  },
13
13
  "operations":{
14
+ "AddTagsToCertificate":{
15
+ "name":"AddTagsToCertificate",
16
+ "http":{
17
+ "method":"POST",
18
+ "requestUri":"/"
19
+ },
20
+ "input":{"shape":"AddTagsToCertificateRequest"},
21
+ "errors":[
22
+ {"shape":"ResourceNotFoundException"},
23
+ {"shape":"InvalidArnException"},
24
+ {"shape":"InvalidTagException"},
25
+ {"shape":"TooManyTagsException"}
26
+ ]
27
+ },
14
28
  "DeleteCertificate":{
15
29
  "name":"DeleteCertificate",
16
30
  "http":{
@@ -60,6 +74,32 @@
60
74
  "input":{"shape":"ListCertificatesRequest"},
61
75
  "output":{"shape":"ListCertificatesResponse"}
62
76
  },
77
+ "ListTagsForCertificate":{
78
+ "name":"ListTagsForCertificate",
79
+ "http":{
80
+ "method":"POST",
81
+ "requestUri":"/"
82
+ },
83
+ "input":{"shape":"ListTagsForCertificateRequest"},
84
+ "output":{"shape":"ListTagsForCertificateResponse"},
85
+ "errors":[
86
+ {"shape":"ResourceNotFoundException"},
87
+ {"shape":"InvalidArnException"}
88
+ ]
89
+ },
90
+ "RemoveTagsFromCertificate":{
91
+ "name":"RemoveTagsFromCertificate",
92
+ "http":{
93
+ "method":"POST",
94
+ "requestUri":"/"
95
+ },
96
+ "input":{"shape":"RemoveTagsFromCertificateRequest"},
97
+ "errors":[
98
+ {"shape":"ResourceNotFoundException"},
99
+ {"shape":"InvalidArnException"},
100
+ {"shape":"InvalidTagException"}
101
+ ]
102
+ },
63
103
  "RequestCertificate":{
64
104
  "name":"RequestCertificate",
65
105
  "http":{
@@ -89,6 +129,17 @@
89
129
  }
90
130
  },
91
131
  "shapes":{
132
+ "AddTagsToCertificateRequest":{
133
+ "type":"structure",
134
+ "required":[
135
+ "CertificateArn",
136
+ "Tags"
137
+ ],
138
+ "members":{
139
+ "CertificateArn":{"shape":"Arn"},
140
+ "Tags":{"shape":"TagList"}
141
+ }
142
+ },
92
143
  "Arn":{
93
144
  "type":"string",
94
145
  "max":2048,
@@ -265,6 +316,13 @@
265
316
  },
266
317
  "exception":true
267
318
  },
319
+ "InvalidTagException":{
320
+ "type":"structure",
321
+ "members":{
322
+ "message":{"shape":"String"}
323
+ },
324
+ "exception":true
325
+ },
268
326
  "KeyAlgorithm":{
269
327
  "type":"string",
270
328
  "enum":[
@@ -294,6 +352,19 @@
294
352
  "CertificateSummaryList":{"shape":"CertificateSummaryList"}
295
353
  }
296
354
  },
355
+ "ListTagsForCertificateRequest":{
356
+ "type":"structure",
357
+ "required":["CertificateArn"],
358
+ "members":{
359
+ "CertificateArn":{"shape":"Arn"}
360
+ }
361
+ },
362
+ "ListTagsForCertificateResponse":{
363
+ "type":"structure",
364
+ "members":{
365
+ "Tags":{"shape":"TagList"}
366
+ }
367
+ },
297
368
  "MaxItems":{
298
369
  "type":"integer",
299
370
  "max":1000,
@@ -305,6 +376,17 @@
305
376
  "min":1,
306
377
  "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]*"
307
378
  },
379
+ "RemoveTagsFromCertificateRequest":{
380
+ "type":"structure",
381
+ "required":[
382
+ "CertificateArn",
383
+ "Tags"
384
+ ],
385
+ "members":{
386
+ "CertificateArn":{"shape":"Arn"},
387
+ "Tags":{"shape":"TagList"}
388
+ }
389
+ },
308
390
  "RequestCertificateRequest":{
309
391
  "type":"structure",
310
392
  "required":["DomainName"],
@@ -372,6 +454,39 @@
372
454
  },
373
455
  "String":{"type":"string"},
374
456
  "TStamp":{"type":"timestamp"},
457
+ "Tag":{
458
+ "type":"structure",
459
+ "required":["Key"],
460
+ "members":{
461
+ "Key":{"shape":"TagKey"},
462
+ "Value":{"shape":"TagValue"}
463
+ }
464
+ },
465
+ "TagKey":{
466
+ "type":"string",
467
+ "max":128,
468
+ "min":1,
469
+ "pattern":"[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]*"
470
+ },
471
+ "TagList":{
472
+ "type":"list",
473
+ "member":{"shape":"Tag"},
474
+ "max":50,
475
+ "min":1
476
+ },
477
+ "TagValue":{
478
+ "type":"string",
479
+ "max":256,
480
+ "min":0,
481
+ "pattern":"[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]*"
482
+ },
483
+ "TooManyTagsException":{
484
+ "type":"structure",
485
+ "members":{
486
+ "message":{"shape":"String"}
487
+ },
488
+ "exception":true
489
+ },
375
490
  "ValidationEmailList":{
376
491
  "type":"list",
377
492
  "member":{"shape":"String"}
@@ -481,6 +481,10 @@
481
481
  "Step":{"shape":"Step"}
482
482
  }
483
483
  },
484
+ "EC2InstanceIdsList":{
485
+ "type":"list",
486
+ "member":{"shape":"InstanceId"}
487
+ },
484
488
  "EC2InstanceIdsToTerminateList":{
485
489
  "type":"list",
486
490
  "member":{"shape":"InstanceId"}
@@ -593,7 +597,8 @@
593
597
  "Status":{"shape":"InstanceGroupStatus"},
594
598
  "Configurations":{"shape":"ConfigurationList"},
595
599
  "EbsBlockDevices":{"shape":"EbsBlockDeviceList"},
596
- "EbsOptimized":{"shape":"BooleanObject"}
600
+ "EbsOptimized":{"shape":"BooleanObject"},
601
+ "ShrinkPolicy":{"shape":"ShrinkPolicy"}
597
602
  }
598
603
  },
599
604
  "InstanceGroupConfig":{
@@ -665,7 +670,8 @@
665
670
  "members":{
666
671
  "InstanceGroupId":{"shape":"XmlStringMaxLen256"},
667
672
  "InstanceCount":{"shape":"Integer"},
668
- "EC2InstanceIdsToTerminate":{"shape":"EC2InstanceIdsToTerminateList"}
673
+ "EC2InstanceIdsToTerminate":{"shape":"EC2InstanceIdsToTerminateList"},
674
+ "ShrinkPolicy":{"shape":"ShrinkPolicy"}
669
675
  }
670
676
  },
671
677
  "InstanceGroupModifyConfigList":{
@@ -736,6 +742,14 @@
736
742
  "type":"list",
737
743
  "member":{"shape":"Instance"}
738
744
  },
745
+ "InstanceResizePolicy":{
746
+ "type":"structure",
747
+ "members":{
748
+ "InstancesToTerminate":{"shape":"EC2InstanceIdsList"},
749
+ "InstancesToProtect":{"shape":"EC2InstanceIdsList"},
750
+ "InstanceTerminationTimeout":{"shape":"Integer"}
751
+ }
752
+ },
739
753
  "InstanceRoleType":{
740
754
  "type":"string",
741
755
  "enum":[
@@ -1116,6 +1130,13 @@
1116
1130
  "VisibleToAllUsers":{"shape":"Boolean"}
1117
1131
  }
1118
1132
  },
1133
+ "ShrinkPolicy":{
1134
+ "type":"structure",
1135
+ "members":{
1136
+ "DecommissionTimeout":{"shape":"Integer"},
1137
+ "InstanceResizePolicy":{"shape":"InstanceResizePolicy"}
1138
+ }
1139
+ },
1119
1140
  "Step":{
1120
1141
  "type":"structure",
1121
1142
  "members":{
@@ -658,6 +658,11 @@
658
658
  "error":{"httpStatusCode":429},
659
659
  "exception":true
660
660
  },
661
+ {
662
+ "shape":"ResourceNotFoundException",
663
+ "error":{"httpStatusCode":404},
664
+ "exception":true
665
+ },
661
666
  {
662
667
  "shape":"UnauthorizedException",
663
668
  "error":{"httpStatusCode":401},
@@ -2182,6 +2187,7 @@
2182
2187
  "pattern":"[0-9]{12}"
2183
2188
  },
2184
2189
  "AwsArn":{"type":"string"},
2190
+ "AwsIotSqlVersion":{"type":"string"},
2185
2191
  "BucketName":{"type":"string"},
2186
2192
  "CACertificate":{
2187
2193
  "type":"structure",
@@ -3540,7 +3546,8 @@
3540
3546
  "description":{"shape":"Description"},
3541
3547
  "createdAt":{"shape":"CreatedAtDate"},
3542
3548
  "actions":{"shape":"ActionList"},
3543
- "ruleDisabled":{"shape":"IsDisabled"}
3549
+ "ruleDisabled":{"shape":"IsDisabled"},
3550
+ "awsIotSqlVersion":{"shape":"AwsIotSqlVersion"}
3544
3551
  }
3545
3552
  },
3546
3553
  "TopicRuleList":{
@@ -3567,7 +3574,8 @@
3567
3574
  "sql":{"shape":"SQL"},
3568
3575
  "description":{"shape":"Description"},
3569
3576
  "actions":{"shape":"ActionList"},
3570
- "ruleDisabled":{"shape":"IsDisabled"}
3577
+ "ruleDisabled":{"shape":"IsDisabled"},
3578
+ "awsIotSqlVersion":{"shape":"AwsIotSqlVersion"}
3571
3579
  }
3572
3580
  },
3573
3581
  "TransferAlreadyCompletedException":{
@@ -4,11 +4,11 @@
4
4
  "apiVersion":"2014-11-01",
5
5
  "endpointPrefix":"kms",
6
6
  "jsonVersion":"1.1",
7
+ "protocol":"json",
7
8
  "serviceAbbreviation":"KMS",
8
9
  "serviceFullName":"AWS Key Management Service",
9
10
  "signatureVersion":"v4",
10
- "targetPrefix":"TrentService",
11
- "protocol":"json"
11
+ "targetPrefix":"TrentService"
12
12
  },
13
13
  "operations":{
14
14
  "CancelKeyDeletion":{
@@ -20,50 +20,11 @@
20
20
  "input":{"shape":"CancelKeyDeletionRequest"},
21
21
  "output":{"shape":"CancelKeyDeletionResponse"},
22
22
  "errors":[
23
- {
24
- "shape":"NotFoundException",
25
- "error":{
26
- "code":"NotFound",
27
- "httpStatusCode":404,
28
- "senderFault":true
29
- },
30
- "exception":true
31
- },
32
- {
33
- "shape":"InvalidArnException",
34
- "error":{
35
- "code":"InvalidArn",
36
- "httpStatusCode":400,
37
- "senderFault":true
38
- },
39
- "exception":true
40
- },
41
- {
42
- "shape":"DependencyTimeoutException",
43
- "error":{
44
- "code":"DependencyTimeout",
45
- "httpStatusCode":503
46
- },
47
- "exception":true,
48
- "fault":true
49
- },
50
- {
51
- "shape":"KMSInternalException",
52
- "error":{
53
- "code":"KMSInternal",
54
- "httpStatusCode":500
55
- },
56
- "exception":true
57
- },
58
- {
59
- "shape":"KMSInvalidStateException",
60
- "error":{
61
- "code":"KMSInvalidStateException",
62
- "httpStatusCode":409,
63
- "senderFault":true
64
- },
65
- "exception":true
66
- }
23
+ {"shape":"NotFoundException"},
24
+ {"shape":"InvalidArnException"},
25
+ {"shape":"DependencyTimeoutException"},
26
+ {"shape":"KMSInternalException"},
27
+ {"shape":"KMSInvalidStateException"}
67
28
  ]
68
29
  },
69
30
  "CreateAlias":{
@@ -74,68 +35,13 @@
74
35
  },
75
36
  "input":{"shape":"CreateAliasRequest"},
76
37
  "errors":[
77
- {
78
- "shape":"DependencyTimeoutException",
79
- "error":{
80
- "code":"DependencyTimeout",
81
- "httpStatusCode":503
82
- },
83
- "exception":true,
84
- "fault":true
85
- },
86
- {
87
- "shape":"AlreadyExistsException",
88
- "error":{
89
- "code":"AlreadyExists",
90
- "httpStatusCode":400,
91
- "senderFault":true
92
- },
93
- "exception":true
94
- },
95
- {
96
- "shape":"NotFoundException",
97
- "error":{
98
- "code":"NotFound",
99
- "httpStatusCode":404,
100
- "senderFault":true
101
- },
102
- "exception":true
103
- },
104
- {
105
- "shape":"InvalidAliasNameException",
106
- "error":{
107
- "code":"InvalidAliasName",
108
- "httpStatusCode":400,
109
- "senderFault":true
110
- },
111
- "exception":true
112
- },
113
- {
114
- "shape":"KMSInternalException",
115
- "error":{
116
- "code":"KMSInternal",
117
- "httpStatusCode":500
118
- },
119
- "exception":true
120
- },
121
- {
122
- "shape":"LimitExceededException",
123
- "error":{
124
- "code":"LimitExceeded",
125
- "httpStatusCode":400,
126
- "senderFault":true
127
- },
128
- "exception":true
129
- },
130
- {
131
- "shape":"KMSInvalidStateException",
132
- "error":{
133
- "code":"KMSInvalidStateException",
134
- "httpStatusCode":409,
135
- "senderFault":true
136
- },
137
- "exception":true
138
- }
38
+ {"shape":"DependencyTimeoutException"},
39
+ {"shape":"AlreadyExistsException"},
40
+ {"shape":"NotFoundException"},
41
+ {"shape":"InvalidAliasNameException"},
42
+ {"shape":"KMSInternalException"},
43
+ {"shape":"LimitExceededException"},
44
+ {"shape":"KMSInvalidStateException"}
139
45
  ]
140
46
  },
141
47
  "CreateGrant":{
@@ -147,77 +53,14 @@
147
53
  "input":{"shape":"CreateGrantRequest"},
148
54
  "output":{"shape":"CreateGrantResponse"},
149
55
  "errors":[
150
- {
151
- "shape":"NotFoundException",
152
- "error":{
153
- "code":"NotFound",
154
- "httpStatusCode":404,
155
- "senderFault":true
156
- },
157
- "exception":true
158
- },
159
- {
160
- "shape":"DisabledException",
161
- "error":{
162
- "code":"Disabled",
163
- "httpStatusCode":409,
164
- "senderFault":true
165
- },
166
- "exception":true
167
- },
168
- {
169
- "shape":"DependencyTimeoutException",
170
- "error":{
171
- "code":"DependencyTimeout",
172
- "httpStatusCode":503
173
- },
174
- "exception":true,
175
- "fault":true
176
- },
177
- {
178
- "shape":"InvalidArnException",
179
- "error":{
180
- "code":"InvalidArn",
181
- "httpStatusCode":400,
182
- "senderFault":true
183
- },
184
- "exception":true
185
- },
186
- {
187
- "shape":"KMSInternalException",
188
- "error":{
189
- "code":"KMSInternal",
190
- "httpStatusCode":500
191
- },
192
- "exception":true
193
- },
194
- {
195
- "shape":"InvalidGrantTokenException",
196
- "error":{
197
- "code":"InvalidGrantToken",
198
- "httpStatusCode":400,
199
- "senderFault":true
200
- },
201
- "exception":true
202
- },
203
- {
204
- "shape":"LimitExceededException",
205
- "error":{
206
- "code":"LimitExceeded",
207
- "httpStatusCode":400,
208
- "senderFault":true
209
- },
210
- "exception":true
211
- },
212
- {
213
- "shape":"KMSInvalidStateException",
214
- "error":{
215
- "code":"KMSInvalidStateException",
216
- "httpStatusCode":409,
217
- "senderFault":true
218
- },
219
- "exception":true
220
- }
56
+ {"shape":"NotFoundException"},
57
+ {"shape":"DisabledException"},
58
+ {"shape":"DependencyTimeoutException"},
59
+ {"shape":"InvalidArnException"},
60
+ {"shape":"KMSInternalException"},
61
+ {"shape":"InvalidGrantTokenException"},
62
+ {"shape":"LimitExceededException"},
63
+ {"shape":"KMSInvalidStateException"}
221
64
  ]
222
65
  },
223
66
  "CreateKey":{
@@ -229,59 +72,12 @@
229
72
  "input":{"shape":"CreateKeyRequest"},
230
73
  "output":{"shape":"CreateKeyResponse"},
231
74
  "errors":[
232
- {
233
- "shape":"MalformedPolicyDocumentException",
234
- "error":{
235
- "code":"MalformedPolicyDocument",
236
- "httpStatusCode":400,
237
- "senderFault":true
238
- },
239
- "exception":true
240
- },
241
- {
242
- "shape":"DependencyTimeoutException",
243
- "error":{
244
- "code":"DependencyTimeout",
245
- "httpStatusCode":503
246
- },
247
- "exception":true,
248
- "fault":true
249
- },
250
- {
251
- "shape":"InvalidArnException",
252
- "error":{
253
- "code":"InvalidArn",
254
- "httpStatusCode":400,
255
- "senderFault":true
256
- },
257
- "exception":true
258
- },
259
- {
260
- "shape":"UnsupportedOperationException",
261
- "error":{
262
- "code":"UnsupportedOperation",
263
- "httpStatusCode":400,
264
- "senderFault":true
265
- },
266
- "exception":true
267
- },
268
- {
269
- "shape":"KMSInternalException",
270
- "error":{
271
- "code":"KMSInternal",
272
- "httpStatusCode":500
273
- },
274
- "exception":true
275
- },
276
- {
277
- "shape":"LimitExceededException",
278
- "error":{
279
- "code":"LimitExceeded",
280
- "httpStatusCode":400,
281
- "senderFault":true
282
- },
283
- "exception":true
284
- }
75
+ {"shape":"MalformedPolicyDocumentException"},
76
+ {"shape":"DependencyTimeoutException"},
77
+ {"shape":"InvalidArnException"},
78
+ {"shape":"UnsupportedOperationException"},
79
+ {"shape":"KMSInternalException"},
80
+ {"shape":"LimitExceededException"}
285
81
  ]
286
82
  },
287
83
  "Decrypt":{
@@ -293,77 +89,14 @@
293
89
  "input":{"shape":"DecryptRequest"},
294
90
  "output":{"shape":"DecryptResponse"},
295
91
  "errors":[
296
- {
297
- "shape":"NotFoundException",
298
- "error":{
299
- "code":"NotFound",
300
- "httpStatusCode":404,
301
- "senderFault":true
302
- },
303
- "exception":true
304
- },
305
- {
306
- "shape":"DisabledException",
307
- "error":{
308
- "code":"Disabled",
309
- "httpStatusCode":409,
310
- "senderFault":true
311
- },
312
- "exception":true
313
- },
314
- {
315
- "shape":"InvalidCiphertextException",
316
- "error":{
317
- "code":"InvalidCiphertext",
318
- "httpStatusCode":400,
319
- "senderFault":true
320
- },
321
- "exception":true
322
- },
323
- {
324
- "shape":"KeyUnavailableException",
325
- "error":{
326
- "code":"KeyUnavailable",
327
- "httpStatusCode":500
328
- },
329
- "exception":true,
330
- "fault":true
331
- },
332
- {
333
- "shape":"DependencyTimeoutException",
334
- "error":{
335
- "code":"DependencyTimeout",
336
- "httpStatusCode":503
337
- },
338
- "exception":true,
339
- "fault":true
340
- },
341
- {
342
- "shape":"InvalidGrantTokenException",
343
- "error":{
344
- "code":"InvalidGrantToken",
345
- "httpStatusCode":400,
346
- "senderFault":true
347
- },
348
- "exception":true
349
- },
350
- {
351
- "shape":"KMSInternalException",
352
- "error":{
353
- "code":"KMSInternal",
354
- "httpStatusCode":500
355
- },
356
- "exception":true
357
- },
358
- {
359
- "shape":"KMSInvalidStateException",
360
- "error":{
361
- "code":"KMSInvalidStateException",
362
- "httpStatusCode":409,
363
- "senderFault":true
364
- },
365
- "exception":true
366
- }
92
+ {"shape":"NotFoundException"},
93
+ {"shape":"DisabledException"},
94
+ {"shape":"InvalidCiphertextException"},
95
+ {"shape":"KeyUnavailableException"},
96
+ {"shape":"DependencyTimeoutException"},
97
+ {"shape":"InvalidGrantTokenException"},
98
+ {"shape":"KMSInternalException"},
99
+ {"shape":"KMSInvalidStateException"}
367
100
  ]
368
101
  },
369
102
  "DeleteAlias":{
@@ -374,41 +107,10 @@
374
107
  },
375
108
  "input":{"shape":"DeleteAliasRequest"},
376
109
  "errors":[
377
- {
378
- "shape":"DependencyTimeoutException",
379
- "error":{
380
- "code":"DependencyTimeout",
381
- "httpStatusCode":503
382
- },
383
- "exception":true,
384
- "fault":true
385
- },
386
- {
387
- "shape":"NotFoundException",
388
- "error":{
389
- "code":"NotFound",
390
- "httpStatusCode":404,
391
- "senderFault":true
392
- },
393
- "exception":true
394
- },
395
- {
396
- "shape":"KMSInternalException",
397
- "error":{
398
- "code":"KMSInternal",
399
- "httpStatusCode":500
400
- },
401
- "exception":true
402
- },
403
- {
404
- "shape":"KMSInvalidStateException",
405
- "error":{
406
- "code":"KMSInvalidStateException",
407
- "httpStatusCode":409,
408
- "senderFault":true
409
- },
410
- "exception":true
411
- }
110
+ {"shape":"DependencyTimeoutException"},
111
+ {"shape":"NotFoundException"},
112
+ {"shape":"KMSInternalException"},
113
+ {"shape":"KMSInvalidStateException"}
412
114
  ]
413
115
  },
414
116
  "DescribeKey":{
@@ -420,41 +122,10 @@
420
122
  "input":{"shape":"DescribeKeyRequest"},
421
123
  "output":{"shape":"DescribeKeyResponse"},
422
124
  "errors":[
423
- {
424
- "shape":"NotFoundException",
425
- "error":{
426
- "code":"NotFound",
427
- "httpStatusCode":404,
428
- "senderFault":true
429
- },
430
- "exception":true
431
- },
432
- {
433
- "shape":"InvalidArnException",
434
- "error":{
435
- "code":"InvalidArn",
436
- "httpStatusCode":400,
437
- "senderFault":true
438
- },
439
- "exception":true
440
- },
441
- {
442
- "shape":"DependencyTimeoutException",
443
- "error":{
444
- "code":"DependencyTimeout",
445
- "httpStatusCode":503
446
- },
447
- "exception":true,
448
- "fault":true
449
- },
450
- {
451
- "shape":"KMSInternalException",
452
- "error":{
453
- "code":"KMSInternal",
454
- "httpStatusCode":500
455
- },
456
- "exception":true
457
- }
125
+ {"shape":"NotFoundException"},
126
+ {"shape":"InvalidArnException"},
127
+ {"shape":"DependencyTimeoutException"},
128
+ {"shape":"KMSInternalException"}
458
129
  ]
459
130
  },
460
131
  "DisableKey":{
@@ -465,50 +136,11 @@
465
136
  },
466
137
  "input":{"shape":"DisableKeyRequest"},
467
138
  "errors":[
468
- {
469
- "shape":"NotFoundException",
470
- "error":{
471
- "code":"NotFound",
472
- "httpStatusCode":404,
473
- "senderFault":true
474
- },
475
- "exception":true
476
- },
477
- {
478
- "shape":"InvalidArnException",
479
- "error":{
480
- "code":"InvalidArn",
481
- "httpStatusCode":400,
482
- "senderFault":true
483
- },
484
- "exception":true
485
- },
486
- {
487
- "shape":"DependencyTimeoutException",
488
- "error":{
489
- "code":"DependencyTimeout",
490
- "httpStatusCode":503
491
- },
492
- "exception":true,
493
- "fault":true
494
- },
495
- {
496
- "shape":"KMSInternalException",
497
- "error":{
498
- "code":"KMSInternal",
499
- "httpStatusCode":500
500
- },
501
- "exception":true
502
- },
503
- {
504
- "shape":"KMSInvalidStateException",
505
- "error":{
506
- "code":"KMSInvalidStateException",
507
- "httpStatusCode":409,
508
- "senderFault":true
509
- },
510
- "exception":true
511
- }
139
+ {"shape":"NotFoundException"},
140
+ {"shape":"InvalidArnException"},
141
+ {"shape":"DependencyTimeoutException"},
142
+ {"shape":"KMSInternalException"},
143
+ {"shape":"KMSInvalidStateException"}
512
144
  ]
513
145
  },
514
146
  "DisableKeyRotation":{
@@ -519,59 +151,12 @@
519
151
  },
520
152
  "input":{"shape":"DisableKeyRotationRequest"},
521
153
  "errors":[
522
- {
523
- "shape":"NotFoundException",
524
- "error":{
525
- "code":"NotFound",
526
- "httpStatusCode":404,
527
- "senderFault":true
528
- },
529
- "exception":true
530
- },
531
- {
532
- "shape":"DisabledException",
533
- "error":{
534
- "code":"Disabled",
535
- "httpStatusCode":409,
536
- "senderFault":true
537
- },
538
- "exception":true
539
- },
540
- {
541
- "shape":"InvalidArnException",
542
- "error":{
543
- "code":"InvalidArn",
544
- "httpStatusCode":400,
545
- "senderFault":true
546
- },
547
- "exception":true
548
- },
549
- {
550
- "shape":"DependencyTimeoutException",
551
- "error":{
552
- "code":"DependencyTimeout",
553
- "httpStatusCode":503
554
- },
555
- "exception":true,
556
- "fault":true
557
- },
558
- {
559
- "shape":"KMSInternalException",
560
- "error":{
561
- "code":"KMSInternal",
562
- "httpStatusCode":500
563
- },
564
- "exception":true
565
- },
566
- {
567
- "shape":"KMSInvalidStateException",
568
- "error":{
569
- "code":"KMSInvalidStateException",
570
- "httpStatusCode":409,
571
- "senderFault":true
572
- },
573
- "exception":true
574
- }
154
+ {"shape":"NotFoundException"},
155
+ {"shape":"DisabledException"},
156
+ {"shape":"InvalidArnException"},
157
+ {"shape":"DependencyTimeoutException"},
158
+ {"shape":"KMSInternalException"},
159
+ {"shape":"KMSInvalidStateException"}
575
160
  ]
576
161
  },
577
162
  "EnableKey":{
@@ -582,59 +167,12 @@
582
167
  },
583
168
  "input":{"shape":"EnableKeyRequest"},
584
169
  "errors":[
585
- {
586
- "shape":"NotFoundException",
587
- "error":{
588
- "code":"NotFound",
589
- "httpStatusCode":404,
590
- "senderFault":true
591
- },
592
- "exception":true
593
- },
594
- {
595
- "shape":"InvalidArnException",
596
- "error":{
597
- "code":"InvalidArn",
598
- "httpStatusCode":400,
599
- "senderFault":true
600
- },
601
- "exception":true
602
- },
603
- {
604
- "shape":"DependencyTimeoutException",
605
- "error":{
606
- "code":"DependencyTimeout",
607
- "httpStatusCode":503
608
- },
609
- "exception":true,
610
- "fault":true
611
- },
612
- {
613
- "shape":"KMSInternalException",
614
- "error":{
615
- "code":"KMSInternal",
616
- "httpStatusCode":500
617
- },
618
- "exception":true
619
- },
620
- {
621
- "shape":"LimitExceededException",
622
- "error":{
623
- "code":"LimitExceeded",
624
- "httpStatusCode":400,
625
- "senderFault":true
626
- },
627
- "exception":true
628
- },
629
- {
630
- "shape":"KMSInvalidStateException",
631
- "error":{
632
- "code":"KMSInvalidStateException",
633
- "httpStatusCode":409,
634
- "senderFault":true
635
- },
636
- "exception":true
637
- }
170
+ {"shape":"NotFoundException"},
171
+ {"shape":"InvalidArnException"},
172
+ {"shape":"DependencyTimeoutException"},
173
+ {"shape":"KMSInternalException"},
174
+ {"shape":"LimitExceededException"},
175
+ {"shape":"KMSInvalidStateException"}
638
176
  ]
639
177
  },
640
178
  "EnableKeyRotation":{
@@ -645,59 +183,12 @@
645
183
  },
646
184
  "input":{"shape":"EnableKeyRotationRequest"},
647
185
  "errors":[
648
- {
649
- "shape":"NotFoundException",
650
- "error":{
651
- "code":"NotFound",
652
- "httpStatusCode":404,
653
- "senderFault":true
654
- },
655
- "exception":true
656
- },
657
- {
658
- "shape":"DisabledException",
659
- "error":{
660
- "code":"Disabled",
661
- "httpStatusCode":409,
662
- "senderFault":true
663
- },
664
- "exception":true
665
- },
666
- {
667
- "shape":"InvalidArnException",
668
- "error":{
669
- "code":"InvalidArn",
670
- "httpStatusCode":400,
671
- "senderFault":true
672
- },
673
- "exception":true
674
- },
675
- {
676
- "shape":"DependencyTimeoutException",
677
- "error":{
678
- "code":"DependencyTimeout",
679
- "httpStatusCode":503
680
- },
681
- "exception":true,
682
- "fault":true
683
- },
684
- {
685
- "shape":"KMSInternalException",
686
- "error":{
687
- "code":"KMSInternal",
688
- "httpStatusCode":500
689
- },
690
- "exception":true
691
- },
692
- {
693
- "shape":"KMSInvalidStateException",
694
- "error":{
695
- "code":"KMSInvalidStateException",
696
- "httpStatusCode":409,
697
- "senderFault":true
698
- },
699
- "exception":true
700
- }
186
+ {"shape":"NotFoundException"},
187
+ {"shape":"DisabledException"},
188
+ {"shape":"InvalidArnException"},
189
+ {"shape":"DependencyTimeoutException"},
190
+ {"shape":"KMSInternalException"},
191
+ {"shape":"KMSInvalidStateException"}
701
192
  ]
702
193
  },
703
194
  "Encrypt":{
@@ -709,77 +200,14 @@
709
200
  "input":{"shape":"EncryptRequest"},
710
201
  "output":{"shape":"EncryptResponse"},
711
202
  "errors":[
712
- {
713
- "shape":"NotFoundException",
714
- "error":{
715
- "code":"NotFound",
716
- "httpStatusCode":404,
717
- "senderFault":true
718
- },
719
- "exception":true
720
- },
721
- {
722
- "shape":"DisabledException",
723
- "error":{
724
- "code":"Disabled",
725
- "httpStatusCode":409,
726
- "senderFault":true
727
- },
728
- "exception":true
729
- },
730
- {
731
- "shape":"KeyUnavailableException",
732
- "error":{
733
- "code":"KeyUnavailable",
734
- "httpStatusCode":500
735
- },
736
- "exception":true,
737
- "fault":true
738
- },
739
- {
740
- "shape":"DependencyTimeoutException",
741
- "error":{
742
- "code":"DependencyTimeout",
743
- "httpStatusCode":503
744
- },
745
- "exception":true,
746
- "fault":true
747
- },
748
- {
749
- "shape":"InvalidKeyUsageException",
750
- "error":{
751
- "code":"InvalidKeyUsage",
752
- "httpStatusCode":400,
753
- "senderFault":true
754
- },
755
- "exception":true
756
- },
757
- {
758
- "shape":"InvalidGrantTokenException",
759
- "error":{
760
- "code":"InvalidGrantToken",
761
- "httpStatusCode":400,
762
- "senderFault":true
763
- },
764
- "exception":true
765
- },
766
- {
767
- "shape":"KMSInternalException",
768
- "error":{
769
- "code":"KMSInternal",
770
- "httpStatusCode":500
771
- },
772
- "exception":true
773
- },
774
- {
775
- "shape":"KMSInvalidStateException",
776
- "error":{
777
- "code":"KMSInvalidStateException",
778
- "httpStatusCode":409,
779
- "senderFault":true
780
- },
781
- "exception":true
782
- }
203
+ {"shape":"NotFoundException"},
204
+ {"shape":"DisabledException"},
205
+ {"shape":"KeyUnavailableException"},
206
+ {"shape":"DependencyTimeoutException"},
207
+ {"shape":"InvalidKeyUsageException"},
208
+ {"shape":"InvalidGrantTokenException"},
209
+ {"shape":"KMSInternalException"},
210
+ {"shape":"KMSInvalidStateException"}
783
211
  ]
784
212
  },
785
213
  "GenerateDataKey":{
@@ -791,77 +219,14 @@
791
219
  "input":{"shape":"GenerateDataKeyRequest"},
792
220
  "output":{"shape":"GenerateDataKeyResponse"},
793
221
  "errors":[
794
- {
795
- "shape":"NotFoundException",
796
- "error":{
797
- "code":"NotFound",
798
- "httpStatusCode":404,
799
- "senderFault":true
800
- },
801
- "exception":true
802
- },
803
- {
804
- "shape":"DisabledException",
805
- "error":{
806
- "code":"Disabled",
807
- "httpStatusCode":409,
808
- "senderFault":true
809
- },
810
- "exception":true
811
- },
812
- {
813
- "shape":"KeyUnavailableException",
814
- "error":{
815
- "code":"KeyUnavailable",
816
- "httpStatusCode":500
817
- },
818
- "exception":true,
819
- "fault":true
820
- },
821
- {
822
- "shape":"DependencyTimeoutException",
823
- "error":{
824
- "code":"DependencyTimeout",
825
- "httpStatusCode":503
826
- },
827
- "exception":true,
828
- "fault":true
829
- },
830
- {
831
- "shape":"InvalidKeyUsageException",
832
- "error":{
833
- "code":"InvalidKeyUsage",
834
- "httpStatusCode":400,
835
- "senderFault":true
836
- },
837
- "exception":true
838
- },
839
- {
840
- "shape":"InvalidGrantTokenException",
841
- "error":{
842
- "code":"InvalidGrantToken",
843
- "httpStatusCode":400,
844
- "senderFault":true
845
- },
846
- "exception":true
847
- },
848
- {
849
- "shape":"KMSInternalException",
850
- "error":{
851
- "code":"KMSInternal",
852
- "httpStatusCode":500
853
- },
854
- "exception":true
855
- },
856
- {
857
- "shape":"KMSInvalidStateException",
858
- "error":{
859
- "code":"KMSInvalidStateException",
860
- "httpStatusCode":409,
861
- "senderFault":true
862
- },
863
- "exception":true
864
- }
222
+ {"shape":"NotFoundException"},
223
+ {"shape":"DisabledException"},
224
+ {"shape":"KeyUnavailableException"},
225
+ {"shape":"DependencyTimeoutException"},
226
+ {"shape":"InvalidKeyUsageException"},
227
+ {"shape":"InvalidGrantTokenException"},
228
+ {"shape":"KMSInternalException"},
229
+ {"shape":"KMSInvalidStateException"}
865
230
  ]
866
231
  },
867
232
  "GenerateDataKeyWithoutPlaintext":{
@@ -873,77 +238,14 @@
873
238
  "input":{"shape":"GenerateDataKeyWithoutPlaintextRequest"},
874
239
  "output":{"shape":"GenerateDataKeyWithoutPlaintextResponse"},
875
240
  "errors":[
876
- {
877
- "shape":"NotFoundException",
878
- "error":{
879
- "code":"NotFound",
880
- "httpStatusCode":404,
881
- "senderFault":true
882
- },
883
- "exception":true
884
- },
885
- {
886
- "shape":"DisabledException",
887
- "error":{
888
- "code":"Disabled",
889
- "httpStatusCode":409,
890
- "senderFault":true
891
- },
892
- "exception":true
893
- },
894
- {
895
- "shape":"KeyUnavailableException",
896
- "error":{
897
- "code":"KeyUnavailable",
898
- "httpStatusCode":500
899
- },
900
- "exception":true,
901
- "fault":true
902
- },
903
- {
904
- "shape":"DependencyTimeoutException",
905
- "error":{
906
- "code":"DependencyTimeout",
907
- "httpStatusCode":503
908
- },
909
- "exception":true,
910
- "fault":true
911
- },
912
- {
913
- "shape":"InvalidKeyUsageException",
914
- "error":{
915
- "code":"InvalidKeyUsage",
916
- "httpStatusCode":400,
917
- "senderFault":true
918
- },
919
- "exception":true
920
- },
921
- {
922
- "shape":"InvalidGrantTokenException",
923
- "error":{
924
- "code":"InvalidGrantToken",
925
- "httpStatusCode":400,
926
- "senderFault":true
927
- },
928
- "exception":true
929
- },
930
- {
931
- "shape":"KMSInternalException",
932
- "error":{
933
- "code":"KMSInternal",
934
- "httpStatusCode":500
935
- },
936
- "exception":true
937
- },
938
- {
939
- "shape":"KMSInvalidStateException",
940
- "error":{
941
- "code":"KMSInvalidStateException",
942
- "httpStatusCode":409,
943
- "senderFault":true
944
- },
945
- "exception":true
946
- }
241
+ {"shape":"NotFoundException"},
242
+ {"shape":"DisabledException"},
243
+ {"shape":"KeyUnavailableException"},
244
+ {"shape":"DependencyTimeoutException"},
245
+ {"shape":"InvalidKeyUsageException"},
246
+ {"shape":"InvalidGrantTokenException"},
247
+ {"shape":"KMSInternalException"},
248
+ {"shape":"KMSInvalidStateException"}
947
249
  ]
948
250
  },
949
251
  "GenerateRandom":{
@@ -955,23 +257,8 @@
955
257
  "input":{"shape":"GenerateRandomRequest"},
956
258
  "output":{"shape":"GenerateRandomResponse"},
957
259
  "errors":[
958
- {
959
- "shape":"DependencyTimeoutException",
960
- "error":{
961
- "code":"DependencyTimeout",
962
- "httpStatusCode":503
963
- },
964
- "exception":true,
965
- "fault":true
966
- },
967
- {
968
- "shape":"KMSInternalException",
969
- "error":{
970
- "code":"KMSInternal",
971
- "httpStatusCode":500
972
- },
973
- "exception":true
974
- }
260
+ {"shape":"DependencyTimeoutException"},
261
+ {"shape":"KMSInternalException"}
975
262
  ]
976
263
  },
977
264
  "GetKeyPolicy":{
@@ -983,50 +270,11 @@
983
270
  "input":{"shape":"GetKeyPolicyRequest"},
984
271
  "output":{"shape":"GetKeyPolicyResponse"},
985
272
  "errors":[
986
- {
987
- "shape":"NotFoundException",
988
- "error":{
989
- "code":"NotFound",
990
- "httpStatusCode":404,
991
- "senderFault":true
992
- },
993
- "exception":true
994
- },
995
- {
996
- "shape":"InvalidArnException",
997
- "error":{
998
- "code":"InvalidArn",
999
- "httpStatusCode":400,
1000
- "senderFault":true
1001
- },
1002
- "exception":true
1003
- },
1004
- {
1005
- "shape":"DependencyTimeoutException",
1006
- "error":{
1007
- "code":"DependencyTimeout",
1008
- "httpStatusCode":503
1009
- },
1010
- "exception":true,
1011
- "fault":true
1012
- },
1013
- {
1014
- "shape":"KMSInternalException",
1015
- "error":{
1016
- "code":"KMSInternal",
1017
- "httpStatusCode":500
1018
- },
1019
- "exception":true
1020
- },
1021
- {
1022
- "shape":"KMSInvalidStateException",
1023
- "error":{
1024
- "code":"KMSInvalidStateException",
1025
- "httpStatusCode":409,
1026
- "senderFault":true
1027
- },
1028
- "exception":true
1029
- }
273
+ {"shape":"NotFoundException"},
274
+ {"shape":"InvalidArnException"},
275
+ {"shape":"DependencyTimeoutException"},
276
+ {"shape":"KMSInternalException"},
277
+ {"shape":"KMSInvalidStateException"}
1030
278
  ]
1031
279
  },
1032
280
  "GetKeyRotationStatus":{
@@ -1038,50 +286,11 @@
1038
286
  "input":{"shape":"GetKeyRotationStatusRequest"},
1039
287
  "output":{"shape":"GetKeyRotationStatusResponse"},
1040
288
  "errors":[
1041
- {
1042
- "shape":"NotFoundException",
1043
- "error":{
1044
- "code":"NotFound",
1045
- "httpStatusCode":404,
1046
- "senderFault":true
1047
- },
1048
- "exception":true
1049
- },
1050
- {
1051
- "shape":"InvalidArnException",
1052
- "error":{
1053
- "code":"InvalidArn",
1054
- "httpStatusCode":400,
1055
- "senderFault":true
1056
- },
1057
- "exception":true
1058
- },
1059
- {
1060
- "shape":"DependencyTimeoutException",
1061
- "error":{
1062
- "code":"DependencyTimeout",
1063
- "httpStatusCode":503
1064
- },
1065
- "exception":true,
1066
- "fault":true
1067
- },
1068
- {
1069
- "shape":"KMSInternalException",
1070
- "error":{
1071
- "code":"KMSInternal",
1072
- "httpStatusCode":500
1073
- },
1074
- "exception":true
1075
- },
1076
- {
1077
- "shape":"KMSInvalidStateException",
1078
- "error":{
1079
- "code":"KMSInvalidStateException",
1080
- "httpStatusCode":409,
1081
- "senderFault":true
1082
- },
1083
- "exception":true
1084
- }
289
+ {"shape":"NotFoundException"},
290
+ {"shape":"InvalidArnException"},
291
+ {"shape":"DependencyTimeoutException"},
292
+ {"shape":"KMSInternalException"},
293
+ {"shape":"KMSInvalidStateException"}
1085
294
  ]
1086
295
  },
1087
296
  "ListAliases":{
@@ -1093,32 +302,9 @@
1093
302
  "input":{"shape":"ListAliasesRequest"},
1094
303
  "output":{"shape":"ListAliasesResponse"},
1095
304
  "errors":[
1096
- {
1097
- "shape":"DependencyTimeoutException",
1098
- "error":{
1099
- "code":"DependencyTimeout",
1100
- "httpStatusCode":503
1101
- },
1102
- "exception":true,
1103
- "fault":true
1104
- },
1105
- {
1106
- "shape":"InvalidMarkerException",
1107
- "error":{
1108
- "code":"InvalidMarker",
1109
- "httpStatusCode":400,
1110
- "senderFault":true
1111
- },
1112
- "exception":true
1113
- },
1114
- {
1115
- "shape":"KMSInternalException",
1116
- "error":{
1117
- "code":"KMSInternal",
1118
- "httpStatusCode":500
1119
- },
1120
- "exception":true
1121
- }
305
+ {"shape":"DependencyTimeoutException"},
306
+ {"shape":"InvalidMarkerException"},
307
+ {"shape":"KMSInternalException"}
1122
308
  ]
1123
309
  },
1124
310
  "ListGrants":{
@@ -1130,59 +316,12 @@
1130
316
  "input":{"shape":"ListGrantsRequest"},
1131
317
  "output":{"shape":"ListGrantsResponse"},
1132
318
  "errors":[
1133
- {
1134
- "shape":"NotFoundException",
1135
- "error":{
1136
- "code":"NotFound",
1137
- "httpStatusCode":404,
1138
- "senderFault":true
1139
- },
1140
- "exception":true
1141
- },
1142
- {
1143
- "shape":"DependencyTimeoutException",
1144
- "error":{
1145
- "code":"DependencyTimeout",
1146
- "httpStatusCode":503
1147
- },
1148
- "exception":true,
1149
- "fault":true
1150
- },
1151
- {
1152
- "shape":"InvalidMarkerException",
1153
- "error":{
1154
- "code":"InvalidMarker",
1155
- "httpStatusCode":400,
1156
- "senderFault":true
1157
- },
1158
- "exception":true
1159
- },
1160
- {
1161
- "shape":"InvalidArnException",
1162
- "error":{
1163
- "code":"InvalidArn",
1164
- "httpStatusCode":400,
1165
- "senderFault":true
1166
- },
1167
- "exception":true
1168
- },
1169
- {
1170
- "shape":"KMSInternalException",
1171
- "error":{
1172
- "code":"KMSInternal",
1173
- "httpStatusCode":500
1174
- },
1175
- "exception":true
1176
- },
1177
- {
1178
- "shape":"KMSInvalidStateException",
1179
- "error":{
1180
- "code":"KMSInvalidStateException",
1181
- "httpStatusCode":409,
1182
- "senderFault":true
1183
- },
1184
- "exception":true
1185
- }
319
+ {"shape":"NotFoundException"},
320
+ {"shape":"DependencyTimeoutException"},
321
+ {"shape":"InvalidMarkerException"},
322
+ {"shape":"InvalidArnException"},
323
+ {"shape":"KMSInternalException"},
324
+ {"shape":"KMSInvalidStateException"}
1186
325
  ]
1187
326
  },
1188
327
  "ListKeyPolicies":{
@@ -1194,50 +333,11 @@
1194
333
  "input":{"shape":"ListKeyPoliciesRequest"},
1195
334
  "output":{"shape":"ListKeyPoliciesResponse"},
1196
335
  "errors":[
1197
- {
1198
- "shape":"NotFoundException",
1199
- "error":{
1200
- "code":"NotFound",
1201
- "httpStatusCode":404,
1202
- "senderFault":true
1203
- },
1204
- "exception":true
1205
- },
1206
- {
1207
- "shape":"InvalidArnException",
1208
- "error":{
1209
- "code":"InvalidArn",
1210
- "httpStatusCode":400,
1211
- "senderFault":true
1212
- },
1213
- "exception":true
1214
- },
1215
- {
1216
- "shape":"DependencyTimeoutException",
1217
- "error":{
1218
- "code":"DependencyTimeout",
1219
- "httpStatusCode":503
1220
- },
1221
- "exception":true,
1222
- "fault":true
1223
- },
1224
- {
1225
- "shape":"KMSInternalException",
1226
- "error":{
1227
- "code":"KMSInternal",
1228
- "httpStatusCode":500
1229
- },
1230
- "exception":true
1231
- },
1232
- {
1233
- "shape":"KMSInvalidStateException",
1234
- "error":{
1235
- "code":"KMSInvalidStateException",
1236
- "httpStatusCode":409,
1237
- "senderFault":true
1238
- },
1239
- "exception":true
1240
- }
336
+ {"shape":"NotFoundException"},
337
+ {"shape":"InvalidArnException"},
338
+ {"shape":"DependencyTimeoutException"},
339
+ {"shape":"KMSInternalException"},
340
+ {"shape":"KMSInvalidStateException"}
1241
341
  ]
1242
342
  },
1243
343
  "ListKeys":{
@@ -1249,23 +349,8 @@
1249
349
  "input":{"shape":"ListKeysRequest"},
1250
350
  "output":{"shape":"ListKeysResponse"},
1251
351
  "errors":[
1252
- {
1253
- "shape":"DependencyTimeoutException",
1254
- "error":{
1255
- "code":"DependencyTimeout",
1256
- "httpStatusCode":503
1257
- },
1258
- "exception":true,
1259
- "fault":true
1260
- },
1261
- {
1262
- "shape":"KMSInternalException",
1263
- "error":{
1264
- "code":"KMSInternal",
1265
- "httpStatusCode":500
1266
- },
1267
- "exception":true
1268
- }
352
+ {"shape":"DependencyTimeoutException"},
353
+ {"shape":"KMSInternalException"}
1269
354
  ]
1270
355
  },
1271
356
  "ListRetirableGrants":{
@@ -1277,50 +362,11 @@
1277
362
  "input":{"shape":"ListRetirableGrantsRequest"},
1278
363
  "output":{"shape":"ListGrantsResponse"},
1279
364
  "errors":[
1280
- {
1281
- "shape":"DependencyTimeoutException",
1282
- "error":{
1283
- "code":"DependencyTimeout",
1284
- "httpStatusCode":503
1285
- },
1286
- "exception":true,
1287
- "fault":true
1288
- },
1289
- {
1290
- "shape":"InvalidMarkerException",
1291
- "error":{
1292
- "code":"InvalidMarker",
1293
- "httpStatusCode":400,
1294
- "senderFault":true
1295
- },
1296
- "exception":true
1297
- },
1298
- {
1299
- "shape":"InvalidArnException",
1300
- "error":{
1301
- "code":"InvalidArn",
1302
- "httpStatusCode":400,
1303
- "senderFault":true
1304
- },
1305
- "exception":true
1306
- },
1307
- {
1308
- "shape":"NotFoundException",
1309
- "error":{
1310
- "code":"NotFound",
1311
- "httpStatusCode":404,
1312
- "senderFault":true
1313
- },
1314
- "exception":true
1315
- },
1316
- {
1317
- "shape":"KMSInternalException",
1318
- "error":{
1319
- "code":"KMSInternal",
1320
- "httpStatusCode":500
1321
- },
1322
- "exception":true
1323
- }
365
+ {"shape":"DependencyTimeoutException"},
366
+ {"shape":"InvalidMarkerException"},
367
+ {"shape":"InvalidArnException"},
368
+ {"shape":"NotFoundException"},
369
+ {"shape":"KMSInternalException"}
1324
370
  ]
1325
371
  },
1326
372
  "PutKeyPolicy":{
@@ -1331,86 +377,15 @@
1331
377
  },
1332
378
  "input":{"shape":"PutKeyPolicyRequest"},
1333
379
  "errors":[
1334
- {
1335
- "shape":"NotFoundException",
1336
- "error":{
1337
- "code":"NotFound",
1338
- "httpStatusCode":404,
1339
- "senderFault":true
1340
- },
1341
- "exception":true
1342
- },
1343
- {
1344
- "shape":"InvalidArnException",
1345
- "error":{
1346
- "code":"InvalidArn",
1347
- "httpStatusCode":400,
1348
- "senderFault":true
1349
- },
1350
- "exception":true
1351
- },
1352
- {
1353
- "shape":"MalformedPolicyDocumentException",
1354
- "error":{
1355
- "code":"MalformedPolicyDocument",
1356
- "httpStatusCode":400,
1357
- "senderFault":true
1358
- },
1359
- "exception":true
1360
- },
1361
- {
1362
- "shape":"DependencyTimeoutException",
1363
- "error":{
1364
- "code":"DependencyTimeout",
1365
- "httpStatusCode":503
1366
- },
1367
- "exception":true,
1368
- "fault":true
1369
- },
1370
- {
1371
- "shape":"InvalidArnException",
1372
- "error":{
1373
- "code":"InvalidArn",
1374
- "httpStatusCode":400,
1375
- "senderFault":true
1376
- },
1377
- "exception":true
1378
- },
1379
- {
1380
- "shape":"UnsupportedOperationException",
1381
- "error":{
1382
- "code":"UnsupportedOperation",
1383
- "httpStatusCode":400,
1384
- "senderFault":true
1385
- },
1386
- "exception":true
1387
- },
1388
- {
1389
- "shape":"KMSInternalException",
1390
- "error":{
1391
- "code":"KMSInternal",
1392
- "httpStatusCode":500
1393
- },
1394
- "exception":true
1395
- },
1396
- {
1397
- "shape":"LimitExceededException",
1398
- "error":{
1399
- "code":"LimitExceeded",
1400
- "httpStatusCode":400,
1401
- "senderFault":true
1402
- },
1403
- "exception":true
1404
- },
1405
- {
1406
- "shape":"KMSInvalidStateException",
1407
- "error":{
1408
- "code":"KMSInvalidStateException",
1409
- "httpStatusCode":409,
1410
- "senderFault":true
1411
- },
1412
- "exception":true
1413
- }
380
+ {"shape":"NotFoundException"},
381
+ {"shape":"InvalidArnException"},
382
+ {"shape":"MalformedPolicyDocumentException"},
383
+ {"shape":"DependencyTimeoutException"},
384
+ {"shape":"InvalidArnException"},
385
+ {"shape":"UnsupportedOperationException"},
386
+ {"shape":"KMSInternalException"},
387
+ {"shape":"LimitExceededException"},
388
+ {"shape":"KMSInvalidStateException"}
1414
389
  ]
1415
390
  },
1416
391
  "ReEncrypt":{
@@ -1422,86 +397,15 @@
1422
397
  "input":{"shape":"ReEncryptRequest"},
1423
398
  "output":{"shape":"ReEncryptResponse"},
1424
399
  "errors":[
1425
- {
1426
- "shape":"NotFoundException",
1427
- "error":{
1428
- "code":"NotFound",
1429
- "httpStatusCode":404,
1430
- "senderFault":true
1431
- },
1432
- "exception":true
1433
- },
1434
- {
1435
- "shape":"DisabledException",
1436
- "error":{
1437
- "code":"Disabled",
1438
- "httpStatusCode":409,
1439
- "senderFault":true
1440
- },
1441
- "exception":true
1442
- },
1443
- {
1444
- "shape":"InvalidCiphertextException",
1445
- "error":{
1446
- "code":"InvalidCiphertext",
1447
- "httpStatusCode":400,
1448
- "senderFault":true
1449
- },
1450
- "exception":true
1451
- },
1452
- {
1453
- "shape":"KeyUnavailableException",
1454
- "error":{
1455
- "code":"KeyUnavailable",
1456
- "httpStatusCode":500
1457
- },
1458
- "exception":true,
1459
- "fault":true
1460
- },
1461
- {
1462
- "shape":"DependencyTimeoutException",
1463
- "error":{
1464
- "code":"DependencyTimeout",
1465
- "httpStatusCode":503
1466
- },
1467
- "exception":true,
1468
- "fault":true
1469
- },
1470
- {
1471
- "shape":"InvalidKeyUsageException",
1472
- "error":{
1473
- "code":"InvalidKeyUsage",
1474
- "httpStatusCode":400,
1475
- "senderFault":true
1476
- },
1477
- "exception":true
1478
- },
1479
- {
1480
- "shape":"InvalidGrantTokenException",
1481
- "error":{
1482
- "code":"InvalidGrantToken",
1483
- "httpStatusCode":400,
1484
- "senderFault":true
1485
- },
1486
- "exception":true
1487
- },
1488
- {
1489
- "shape":"KMSInternalException",
1490
- "error":{
1491
- "code":"KMSInternal",
1492
- "httpStatusCode":500
1493
- },
1494
- "exception":true
1495
- },
1496
- {
1497
- "shape":"KMSInvalidStateException",
1498
- "error":{
1499
- "code":"KMSInvalidStateException",
1500
- "httpStatusCode":409,
1501
- "senderFault":true
1502
- },
1503
- "exception":true
1504
- }
400
+ {"shape":"NotFoundException"},
401
+ {"shape":"DisabledException"},
402
+ {"shape":"InvalidCiphertextException"},
403
+ {"shape":"KeyUnavailableException"},
404
+ {"shape":"DependencyTimeoutException"},
405
+ {"shape":"InvalidKeyUsageException"},
406
+ {"shape":"InvalidGrantTokenException"},
407
+ {"shape":"KMSInternalException"},
408
+ {"shape":"KMSInvalidStateException"}
1505
409
  ]
1506
410
  },
1507
411
  "RetireGrant":{
@@ -1512,59 +416,12 @@
1512
416
  },
1513
417
  "input":{"shape":"RetireGrantRequest"},
1514
418
  "errors":[
1515
- {
1516
- "shape":"InvalidGrantTokenException",
1517
- "error":{
1518
- "code":"InvalidGrantToken",
1519
- "httpStatusCode":400,
1520
- "senderFault":true
1521
- },
1522
- "exception":true
1523
- },
1524
- {
1525
- "shape":"InvalidGrantIdException",
1526
- "error":{
1527
- "code":"InvalidGrantId",
1528
- "httpStatusCode":400,
1529
- "senderFault":true
1530
- },
1531
- "exception":true
1532
- },
1533
- {
1534
- "shape":"NotFoundException",
1535
- "error":{
1536
- "code":"NotFound",
1537
- "httpStatusCode":404,
1538
- "senderFault":true
1539
- },
1540
- "exception":true
1541
- },
1542
- {
1543
- "shape":"DependencyTimeoutException",
1544
- "error":{
1545
- "code":"DependencyTimeout",
1546
- "httpStatusCode":503
1547
- },
1548
- "exception":true,
1549
- "fault":true
1550
- },
1551
- {
1552
- "shape":"KMSInternalException",
1553
- "error":{
1554
- "code":"KMSInternal",
1555
- "httpStatusCode":500
1556
- },
1557
- "exception":true
1558
- },
1559
- {
1560
- "shape":"KMSInvalidStateException",
1561
- "error":{
1562
- "code":"KMSInvalidStateException",
1563
- "httpStatusCode":409,
1564
- "senderFault":true
1565
- },
1566
- "exception":true
1567
- }
419
+ {"shape":"InvalidGrantTokenException"},
420
+ {"shape":"InvalidGrantIdException"},
421
+ {"shape":"NotFoundException"},
422
+ {"shape":"DependencyTimeoutException"},
423
+ {"shape":"KMSInternalException"},
424
+ {"shape":"KMSInvalidStateException"}
1568
425
  ]
1569
426
  },
1570
427
  "RevokeGrant":{
@@ -1575,59 +432,12 @@
1575
432
  },
1576
433
  "input":{"shape":"RevokeGrantRequest"},
1577
434
  "errors":[
1578
- {
1579
- "shape":"NotFoundException",
1580
- "error":{
1581
- "code":"NotFound",
1582
- "httpStatusCode":404,
1583
- "senderFault":true
1584
- },
1585
- "exception":true
1586
- },
1587
- {
1588
- "shape":"DependencyTimeoutException",
1589
- "error":{
1590
- "code":"DependencyTimeout",
1591
- "httpStatusCode":503
1592
- },
1593
- "exception":true,
1594
- "fault":true
1595
- },
1596
- {
1597
- "shape":"InvalidArnException",
1598
- "error":{
1599
- "code":"InvalidArn",
1600
- "httpStatusCode":400,
1601
- "senderFault":true
1602
- },
1603
- "exception":true
1604
- },
1605
- {
1606
- "shape":"InvalidGrantIdException",
1607
- "error":{
1608
- "code":"InvalidGrantId",
1609
- "httpStatusCode":400,
1610
- "senderFault":true
1611
- },
1612
- "exception":true
1613
- },
1614
- {
1615
- "shape":"KMSInternalException",
1616
- "error":{
1617
- "code":"KMSInternal",
1618
- "httpStatusCode":500
1619
- },
1620
- "exception":true
1621
- },
1622
- {
1623
- "shape":"KMSInvalidStateException",
1624
- "error":{
1625
- "code":"KMSInvalidStateException",
1626
- "httpStatusCode":409,
1627
- "senderFault":true
1628
- },
1629
- "exception":true
1630
- }
435
+ {"shape":"NotFoundException"},
436
+ {"shape":"DependencyTimeoutException"},
437
+ {"shape":"InvalidArnException"},
438
+ {"shape":"InvalidGrantIdException"},
439
+ {"shape":"KMSInternalException"},
440
+ {"shape":"KMSInvalidStateException"}
1631
441
  ]
1632
442
  },
1633
443
  "ScheduleKeyDeletion":{
@@ -1639,50 +449,11 @@
1639
449
  "input":{"shape":"ScheduleKeyDeletionRequest"},
1640
450
  "output":{"shape":"ScheduleKeyDeletionResponse"},
1641
451
  "errors":[
1642
- {
1643
- "shape":"NotFoundException",
1644
- "error":{
1645
- "code":"NotFound",
1646
- "httpStatusCode":404,
1647
- "senderFault":true
1648
- },
1649
- "exception":true
1650
- },
1651
- {
1652
- "shape":"InvalidArnException",
1653
- "error":{
1654
- "code":"InvalidArn",
1655
- "httpStatusCode":400,
1656
- "senderFault":true
1657
- },
1658
- "exception":true
1659
- },
1660
- {
1661
- "shape":"DependencyTimeoutException",
1662
- "error":{
1663
- "code":"DependencyTimeout",
1664
- "httpStatusCode":503
1665
- },
1666
- "exception":true,
1667
- "fault":true
1668
- },
1669
- {
1670
- "shape":"KMSInternalException",
1671
- "error":{
1672
- "code":"KMSInternal",
1673
- "httpStatusCode":500
1674
- },
1675
- "exception":true
1676
- },
1677
- {
1678
- "shape":"KMSInvalidStateException",
1679
- "error":{
1680
- "code":"KMSInvalidStateException",
1681
- "httpStatusCode":409,
1682
- "senderFault":true
1683
- },
1684
- "exception":true
1685
- }
452
+ {"shape":"NotFoundException"},
453
+ {"shape":"InvalidArnException"},
454
+ {"shape":"DependencyTimeoutException"},
455
+ {"shape":"KMSInternalException"},
456
+ {"shape":"KMSInvalidStateException"}
1686
457
  ]
1687
458
  },
1688
459
  "UpdateAlias":{
@@ -1693,41 +464,10 @@
1693
464
  },
1694
465
  "input":{"shape":"UpdateAliasRequest"},
1695
466
  "errors":[
1696
- {
1697
- "shape":"DependencyTimeoutException",
1698
- "error":{
1699
- "code":"DependencyTimeout",
1700
- "httpStatusCode":503
1701
- },
1702
- "exception":true,
1703
- "fault":true
1704
- },
1705
- {
1706
- "shape":"NotFoundException",
1707
- "error":{
1708
- "code":"NotFound",
1709
- "httpStatusCode":404,
1710
- "senderFault":true
1711
- },
1712
- "exception":true
1713
- },
1714
- {
1715
- "shape":"KMSInternalException",
1716
- "error":{
1717
- "code":"KMSInternal",
1718
- "httpStatusCode":500
1719
- },
1720
- "exception":true
1721
- },
1722
- {
1723
- "shape":"KMSInvalidStateException",
1724
- "error":{
1725
- "code":"KMSInvalidStateException",
1726
- "httpStatusCode":409,
1727
- "senderFault":true
1728
- },
1729
- "exception":true
1730
- }
467
+ {"shape":"DependencyTimeoutException"},
468
+ {"shape":"NotFoundException"},
469
+ {"shape":"KMSInternalException"},
470
+ {"shape":"KMSInvalidStateException"}
1731
471
  ]
1732
472
  },
1733
473
  "UpdateKeyDescription":{
@@ -1738,50 +478,11 @@
1738
478
  },
1739
479
  "input":{"shape":"UpdateKeyDescriptionRequest"},
1740
480
  "errors":[
1741
- {
1742
- "shape":"NotFoundException",
1743
- "error":{
1744
- "code":"NotFound",
1745
- "httpStatusCode":404,
1746
- "senderFault":true
1747
- },
1748
- "exception":true
1749
- },
1750
- {
1751
- "shape":"InvalidArnException",
1752
- "error":{
1753
- "code":"InvalidArn",
1754
- "httpStatusCode":400,
1755
- "senderFault":true
1756
- },
1757
- "exception":true
1758
- },
1759
- {
1760
- "shape":"DependencyTimeoutException",
1761
- "error":{
1762
- "code":"DependencyTimeout",
1763
- "httpStatusCode":503
1764
- },
1765
- "exception":true,
1766
- "fault":true
1767
- },
1768
- {
1769
- "shape":"KMSInternalException",
1770
- "error":{
1771
- "code":"KMSInternal",
1772
- "httpStatusCode":500
1773
- },
1774
- "exception":true
1775
- },
1776
- {
1777
- "shape":"KMSInvalidStateException",
1778
- "error":{
1779
- "code":"KMSInvalidStateException",
1780
- "httpStatusCode":409,
1781
- "senderFault":true
1782
- },
1783
- "exception":true
1784
- }
481
+ {"shape":"NotFoundException"},
482
+ {"shape":"InvalidArnException"},
483
+ {"shape":"DependencyTimeoutException"},
484
+ {"shape":"KMSInternalException"},
485
+ {"shape":"KMSInvalidStateException"}
1785
486
  ]
1786
487
  }
1787
488
  },
@@ -1801,8 +502,8 @@
1801
502
  },
1802
503
  "AliasNameType":{
1803
504
  "type":"string",
1804
- "min":1,
1805
505
  "max":256,
506
+ "min":1,
1806
507
  "pattern":"^[a-zA-Z0-9:/_-]+$"
1807
508
  },
1808
509
  "AlreadyExistsException":{
@@ -1810,17 +511,12 @@
1810
511
  "members":{
1811
512
  "message":{"shape":"ErrorMessageType"}
1812
513
  },
1813
- "error":{
1814
- "code":"AlreadyExists",
1815
- "httpStatusCode":400,
1816
- "senderFault":true
1817
- },
1818
514
  "exception":true
1819
515
  },
1820
516
  "ArnType":{
1821
517
  "type":"string",
1822
- "min":20,
1823
- "max":2048
518
+ "max":2048,
519
+ "min":20
1824
520
  },
1825
521
  "BooleanType":{"type":"boolean"},
1826
522
  "CancelKeyDeletionRequest":{
@@ -1838,8 +534,8 @@
1838
534
  },
1839
535
  "CiphertextType":{
1840
536
  "type":"blob",
1841
- "min":1,
1842
- "max":6144
537
+ "max":6144,
538
+ "min":1
1843
539
  },
1844
540
  "CreateAliasRequest":{
1845
541
  "type":"structure",
@@ -1925,10 +621,6 @@
1925
621
  "members":{
1926
622
  "message":{"shape":"ErrorMessageType"}
1927
623
  },
1928
- "error":{
1929
- "code":"DependencyTimeout",
1930
- "httpStatusCode":503
1931
- },
1932
624
  "exception":true,
1933
625
  "fault":true
1934
626
  },
@@ -1948,8 +640,8 @@
1948
640
  },
1949
641
  "DescriptionType":{
1950
642
  "type":"string",
1951
- "min":0,
1952
- "max":8192
643
+ "max":8192,
644
+ "min":0
1953
645
  },
1954
646
  "DisableKeyRequest":{
1955
647
  "type":"structure",
@@ -1970,11 +662,6 @@
1970
662
  "members":{
1971
663
  "message":{"shape":"ErrorMessageType"}
1972
664
  },
1973
- "error":{
1974
- "code":"Disabled",
1975
- "httpStatusCode":409,
1976
- "senderFault":true
1977
- },
1978
665
  "exception":true
1979
666
  },
1980
667
  "EnableKeyRequest":{
@@ -2107,8 +794,8 @@
2107
794
  },
2108
795
  "GrantIdType":{
2109
796
  "type":"string",
2110
- "min":1,
2111
- "max":128
797
+ "max":128,
798
+ "min":1
2112
799
  },
2113
800
  "GrantList":{
2114
801
  "type":"list",
@@ -2130,8 +817,8 @@
2130
817
  },
2131
818
  "GrantNameType":{
2132
819
  "type":"string",
2133
- "min":1,
2134
820
  "max":256,
821
+ "min":1,
2135
822
  "pattern":"^[a-zA-Z0-9:/_-]+$"
2136
823
  },
2137
824
  "GrantOperation":{
@@ -2155,24 +842,19 @@
2155
842
  "GrantTokenList":{
2156
843
  "type":"list",
2157
844
  "member":{"shape":"GrantTokenType"},
2158
- "min":0,
2159
- "max":10
845
+ "max":10,
846
+ "min":0
2160
847
  },
2161
848
  "GrantTokenType":{
2162
849
  "type":"string",
2163
- "min":1,
2164
- "max":8192
850
+ "max":8192,
851
+ "min":1
2165
852
  },
2166
853
  "InvalidAliasNameException":{
2167
854
  "type":"structure",
2168
855
  "members":{
2169
856
  "message":{"shape":"ErrorMessageType"}
2170
857
  },
2171
- "error":{
2172
- "code":"InvalidAliasName",
2173
- "httpStatusCode":400,
2174
- "senderFault":true
2175
- },
2176
858
  "exception":true
2177
859
  },
2178
860
  "InvalidArnException":{
@@ -2180,11 +862,6 @@
2180
862
  "members":{
2181
863
  "message":{"shape":"ErrorMessageType"}
2182
864
  },
2183
- "error":{
2184
- "code":"InvalidArn",
2185
- "httpStatusCode":400,
2186
- "senderFault":true
2187
- },
2188
865
  "exception":true
2189
866
  },
2190
867
  "InvalidCiphertextException":{
@@ -2192,11 +869,6 @@
2192
869
  "members":{
2193
870
  "message":{"shape":"ErrorMessageType"}
2194
871
  },
2195
- "error":{
2196
- "code":"InvalidCiphertext",
2197
- "httpStatusCode":400,
2198
- "senderFault":true
2199
- },
2200
872
  "exception":true
2201
873
  },
2202
874
  "InvalidGrantIdException":{
@@ -2204,11 +876,6 @@
2204
876
  "members":{
2205
877
  "message":{"shape":"ErrorMessageType"}
2206
878
  },
2207
- "error":{
2208
- "code":"InvalidGrantId",
2209
- "httpStatusCode":400,
2210
- "senderFault":true
2211
- },
2212
879
  "exception":true
2213
880
  },
2214
881
  "InvalidGrantTokenException":{
@@ -2216,11 +883,6 @@
2216
883
  "members":{
2217
884
  "message":{"shape":"ErrorMessageType"}
2218
885
  },
2219
- "error":{
2220
- "code":"InvalidGrantToken",
2221
- "httpStatusCode":400,
2222
- "senderFault":true
2223
- },
2224
886
  "exception":true
2225
887
  },
2226
888
  "InvalidKeyUsageException":{
@@ -2228,11 +890,6 @@
2228
890
  "members":{
2229
891
  "message":{"shape":"ErrorMessageType"}
2230
892
  },
2231
- "error":{
2232
- "code":"InvalidKeyUsage",
2233
- "httpStatusCode":400,
2234
- "senderFault":true
2235
- },
2236
893
  "exception":true
2237
894
  },
2238
895
  "InvalidMarkerException":{
@@ -2240,11 +897,6 @@
2240
897
  "members":{
2241
898
  "message":{"shape":"ErrorMessageType"}
2242
899
  },
2243
- "error":{
2244
- "code":"InvalidMarker",
2245
- "httpStatusCode":400,
2246
- "senderFault":true
2247
- },
2248
900
  "exception":true
2249
901
  },
2250
902
  "KMSInternalException":{
@@ -2252,10 +904,6 @@
2252
904
  "members":{
2253
905
  "message":{"shape":"ErrorMessageType"}
2254
906
  },
2255
- "error":{
2256
- "code":"KMSInternal",
2257
- "httpStatusCode":500
2258
- },
2259
907
  "exception":true
2260
908
  },
2261
909
  "KMSInvalidStateException":{
@@ -2263,17 +911,12 @@
2263
911
  "members":{
2264
912
  "message":{"shape":"ErrorMessageType"}
2265
913
  },
2266
- "error":{
2267
- "code":"KMSInvalidStateException",
2268
- "httpStatusCode":409,
2269
- "senderFault":true
2270
- },
2271
914
  "exception":true
2272
915
  },
2273
916
  "KeyIdType":{
2274
917
  "type":"string",
2275
- "min":1,
2276
- "max":256
918
+ "max":256,
919
+ "min":1
2277
920
  },
2278
921
  "KeyList":{
2279
922
  "type":"list",
@@ -2314,10 +957,6 @@
2314
957
  "members":{
2315
958
  "message":{"shape":"ErrorMessageType"}
2316
959
  },
2317
- "error":{
2318
- "code":"KeyUnavailable",
2319
- "httpStatusCode":500
2320
- },
2321
960
  "exception":true,
2322
961
  "fault":true
2323
962
  },
@@ -2330,17 +969,12 @@
2330
969
  "members":{
2331
970
  "message":{"shape":"ErrorMessageType"}
2332
971
  },
2333
- "error":{
2334
- "code":"LimitExceeded",
2335
- "httpStatusCode":400,
2336
- "senderFault":true
2337
- },
2338
972
  "exception":true
2339
973
  },
2340
974
  "LimitType":{
2341
975
  "type":"integer",
2342
- "min":1,
2343
- "max":1000
976
+ "max":1000,
977
+ "min":1
2344
978
  },
2345
979
  "ListAliasesRequest":{
2346
980
  "type":"structure",
@@ -2420,17 +1054,12 @@
2420
1054
  "members":{
2421
1055
  "message":{"shape":"ErrorMessageType"}
2422
1056
  },
2423
- "error":{
2424
- "code":"MalformedPolicyDocument",
2425
- "httpStatusCode":400,
2426
- "senderFault":true
2427
- },
2428
1057
  "exception":true
2429
1058
  },
2430
1059
  "MarkerType":{
2431
1060
  "type":"string",
2432
- "min":1,
2433
1061
  "max":320,
1062
+ "min":1,
2434
1063
  "pattern":"[\\u0020-\\u00FF]*"
2435
1064
  },
2436
1065
  "NotFoundException":{
@@ -2438,27 +1067,22 @@
2438
1067
  "members":{
2439
1068
  "message":{"shape":"ErrorMessageType"}
2440
1069
  },
2441
- "error":{
2442
- "code":"NotFound",
2443
- "httpStatusCode":404,
2444
- "senderFault":true
2445
- },
2446
1070
  "exception":true
2447
1071
  },
2448
1072
  "NumberOfBytesType":{
2449
1073
  "type":"integer",
2450
- "min":1,
2451
- "max":1024
1074
+ "max":1024,
1075
+ "min":1
2452
1076
  },
2453
1077
  "PendingWindowInDaysType":{
2454
1078
  "type":"integer",
2455
- "min":1,
2456
- "max":365
1079
+ "max":365,
1080
+ "min":1
2457
1081
  },
2458
1082
  "PlaintextType":{
2459
1083
  "type":"blob",
2460
- "min":1,
2461
1084
  "max":4096,
1085
+ "min":1,
2462
1086
  "sensitive":true
2463
1087
  },
2464
1088
  "PolicyNameList":{
@@ -2467,20 +1091,20 @@
2467
1091
  },
2468
1092
  "PolicyNameType":{
2469
1093
  "type":"string",
2470
- "min":1,
2471
1094
  "max":128,
1095
+ "min":1,
2472
1096
  "pattern":"[\\w]+"
2473
1097
  },
2474
1098
  "PolicyType":{
2475
1099
  "type":"string",
2476
- "min":1,
2477
1100
  "max":131072,
1101
+ "min":1,
2478
1102
  "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
2479
1103
  },
2480
1104
  "PrincipalIdType":{
2481
1105
  "type":"string",
2482
- "min":1,
2483
- "max":256
1106
+ "max":256,
1107
+ "min":1
2484
1108
  },
2485
1109
  "PutKeyPolicyRequest":{
2486
1110
  "type":"structure",
@@ -2556,11 +1180,6 @@
2556
1180
  "members":{
2557
1181
  "message":{"shape":"ErrorMessageType"}
2558
1182
  },
2559
- "error":{
2560
- "code":"UnsupportedOperation",
2561
- "httpStatusCode":400,
2562
- "senderFault":true
2563
- },
2564
1183
  "exception":true
2565
1184
  },
2566
1185
  "UpdateAliasRequest":{