aws-sdk-core 2.11.159 → 2.11.160

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "pagination": {
3
+ "ListAccounts": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
8
+ "ListUsers": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ }
13
+ }
14
+ }
@@ -0,0 +1,336 @@
1
+ {
2
+ "version":2,
3
+ "waiters":{
4
+ "TestConnectionSucceeds":{
5
+ "acceptors":[
6
+ {
7
+ "argument":"Connection.Status",
8
+ "expected":"successful",
9
+ "matcher":"path",
10
+ "state":"success"
11
+ },
12
+ {
13
+ "argument":"Connection.Status",
14
+ "expected":"failed",
15
+ "matcher":"path",
16
+ "state":"failure"
17
+ }
18
+ ],
19
+ "delay":5,
20
+ "description":"Wait until testing connection succeeds.",
21
+ "maxAttempts":60,
22
+ "operation":"TestConnection"
23
+ },
24
+ "EndpointDeleted":{
25
+ "acceptors":[
26
+ {
27
+ "expected":"ResourceNotFoundFault",
28
+ "matcher":"error",
29
+ "state":"success"
30
+ },
31
+ {
32
+ "argument":"Endpoints[].Status",
33
+ "expected":"active",
34
+ "matcher":"pathAny",
35
+ "state":"failure"
36
+ },
37
+ {
38
+ "argument":"Endpoints[].Status",
39
+ "expected":"creating",
40
+ "matcher":"pathAny",
41
+ "state":"failure"
42
+ }
43
+ ],
44
+ "delay":5,
45
+ "description":"Wait until testing endpoint is deleted.",
46
+ "maxAttempts":60,
47
+ "operation":"DescribeEndpoints"
48
+ },
49
+ "ReplicationInstanceAvailable":{
50
+ "acceptors":[
51
+ {
52
+ "argument":"ReplicationInstances[].ReplicationInstanceStatus",
53
+ "expected":"available",
54
+ "matcher":"pathAll",
55
+ "state":"success"
56
+ },
57
+ {
58
+ "argument":"ReplicationInstances[].ReplicationInstanceStatus",
59
+ "expected":"deleting",
60
+ "matcher":"pathAny",
61
+ "state":"failure"
62
+ },
63
+ {
64
+ "argument":"ReplicationInstances[].ReplicationInstanceStatus",
65
+ "expected":"incompatible-credentials",
66
+ "matcher":"pathAny",
67
+ "state":"failure"
68
+ },
69
+ {
70
+ "argument":"ReplicationInstances[].ReplicationInstanceStatus",
71
+ "expected":"incompatible-network",
72
+ "matcher":"pathAny",
73
+ "state":"failure"
74
+ },
75
+ {
76
+ "argument":"ReplicationInstances[].ReplicationInstanceStatus",
77
+ "expected":"inaccessible-encryption-credentials",
78
+ "matcher":"pathAny",
79
+ "state":"failure"
80
+ }
81
+ ],
82
+ "delay":60,
83
+ "description":"Wait until DMS replication instance is available.",
84
+ "maxAttempts":60,
85
+ "operation":"DescribeReplicationInstances"
86
+ },
87
+ "ReplicationInstanceDeleted":{
88
+ "acceptors":[
89
+ {
90
+ "argument":"ReplicationInstances[].ReplicationInstanceStatus",
91
+ "expected":"available",
92
+ "matcher":"pathAny",
93
+ "state":"failure"
94
+ },
95
+ {
96
+ "expected":"ResourceNotFoundFault",
97
+ "matcher":"error",
98
+ "state":"success"
99
+ }
100
+ ],
101
+ "delay":15,
102
+ "description":"Wait until DMS replication instance is deleted.",
103
+ "maxAttempts":60,
104
+ "operation":"DescribeReplicationInstances"
105
+ },
106
+ "ReplicationTaskReady":{
107
+ "acceptors":[
108
+ {
109
+ "argument":"ReplicationTasks[].Status",
110
+ "expected":"ready",
111
+ "matcher":"pathAll",
112
+ "state":"success"
113
+ },
114
+ {
115
+ "argument":"ReplicationTasks[].Status",
116
+ "expected":"starting",
117
+ "matcher":"pathAny",
118
+ "state":"failure"
119
+ },
120
+ {
121
+ "argument":"ReplicationTasks[].Status",
122
+ "expected":"running",
123
+ "matcher":"pathAny",
124
+ "state":"failure"
125
+ },
126
+ {
127
+ "argument":"ReplicationTasks[].Status",
128
+ "expected":"stopping",
129
+ "matcher":"pathAny",
130
+ "state":"failure"
131
+ },
132
+ {
133
+ "argument":"ReplicationTasks[].Status",
134
+ "expected":"stopped",
135
+ "matcher":"pathAny",
136
+ "state":"failure"
137
+ },
138
+ {
139
+ "argument":"ReplicationTasks[].Status",
140
+ "expected":"failed",
141
+ "matcher":"pathAny",
142
+ "state":"failure"
143
+ },
144
+ {
145
+ "argument":"ReplicationTasks[].Status",
146
+ "expected":"modifying",
147
+ "matcher":"pathAny",
148
+ "state":"failure"
149
+ },
150
+ {
151
+ "argument":"ReplicationTasks[].Status",
152
+ "expected":"testing",
153
+ "matcher":"pathAny",
154
+ "state":"failure"
155
+ },
156
+ {
157
+ "argument":"ReplicationTasks[].Status",
158
+ "expected":"deleting",
159
+ "matcher":"pathAny",
160
+ "state":"failure"
161
+ }
162
+ ],
163
+ "delay":15,
164
+ "description":"Wait until DMS replication task is ready.",
165
+ "maxAttempts":60,
166
+ "operation":"DescribeReplicationTasks"
167
+ },
168
+ "ReplicationTaskStopped":{
169
+ "acceptors":[
170
+ {
171
+ "argument":"ReplicationTasks[].Status",
172
+ "expected":"stopped",
173
+ "matcher":"pathAll",
174
+ "state":"success"
175
+ },
176
+ {
177
+ "argument":"ReplicationTasks[].Status",
178
+ "expected":"ready",
179
+ "matcher":"pathAny",
180
+ "state":"failure"
181
+ },
182
+ {
183
+ "argument":"ReplicationTasks[].Status",
184
+ "expected":"creating",
185
+ "matcher":"pathAny",
186
+ "state":"failure"
187
+ },
188
+ {
189
+ "argument":"ReplicationTasks[].Status",
190
+ "expected":"starting",
191
+ "matcher":"pathAny",
192
+ "state":"failure"
193
+ },
194
+ {
195
+ "argument":"ReplicationTasks[].Status",
196
+ "expected":"running",
197
+ "matcher":"pathAny",
198
+ "state":"failure"
199
+ },
200
+ {
201
+ "argument":"ReplicationTasks[].Status",
202
+ "expected":"failed",
203
+ "matcher":"pathAny",
204
+ "state":"failure"
205
+ },
206
+ {
207
+ "argument":"ReplicationTasks[].Status",
208
+ "expected":"modifying",
209
+ "matcher":"pathAny",
210
+ "state":"failure"
211
+ },
212
+ {
213
+ "argument":"ReplicationTasks[].Status",
214
+ "expected":"testing",
215
+ "matcher":"pathAny",
216
+ "state":"failure"
217
+ },
218
+ {
219
+ "argument":"ReplicationTasks[].Status",
220
+ "expected":"deleting",
221
+ "matcher":"pathAny",
222
+ "state":"failure"
223
+ }
224
+ ],
225
+ "delay":15,
226
+ "description":"Wait until DMS replication task is stopped.",
227
+ "maxAttempts":60,
228
+ "operation":"DescribeReplicationTasks"
229
+ },
230
+ "ReplicationTaskRunning":{
231
+ "acceptors":[
232
+ {
233
+ "argument":"ReplicationTasks[].Status",
234
+ "expected":"running",
235
+ "matcher":"pathAll",
236
+ "state":"success"
237
+ },
238
+ {
239
+ "argument":"ReplicationTasks[].Status",
240
+ "expected":"ready",
241
+ "matcher":"pathAny",
242
+ "state":"failure"
243
+ },
244
+ {
245
+ "argument":"ReplicationTasks[].Status",
246
+ "expected":"creating",
247
+ "matcher":"pathAny",
248
+ "state":"failure"
249
+ },
250
+ {
251
+ "argument":"ReplicationTasks[].Status",
252
+ "expected":"stopping",
253
+ "matcher":"pathAny",
254
+ "state":"failure"
255
+ },
256
+ {
257
+ "argument":"ReplicationTasks[].Status",
258
+ "expected":"stopped",
259
+ "matcher":"pathAny",
260
+ "state":"failure"
261
+ },
262
+ {
263
+ "argument":"ReplicationTasks[].Status",
264
+ "expected":"failed",
265
+ "matcher":"pathAny",
266
+ "state":"failure"
267
+ },
268
+ {
269
+ "argument":"ReplicationTasks[].Status",
270
+ "expected":"modifying",
271
+ "matcher":"pathAny",
272
+ "state":"failure"
273
+ },
274
+ {
275
+ "argument":"ReplicationTasks[].Status",
276
+ "expected":"testing",
277
+ "matcher":"pathAny",
278
+ "state":"failure"
279
+ },
280
+ {
281
+ "argument":"ReplicationTasks[].Status",
282
+ "expected":"deleting",
283
+ "matcher":"pathAny",
284
+ "state":"failure"
285
+ }
286
+ ],
287
+ "delay":15,
288
+ "description":"Wait until DMS replication task is running.",
289
+ "maxAttempts":60,
290
+ "operation":"DescribeReplicationTasks"
291
+ },
292
+ "ReplicationTaskDeleted":{
293
+ "acceptors":[
294
+ {
295
+ "argument":"ReplicationTasks[].Status",
296
+ "expected":"ready",
297
+ "matcher":"pathAny",
298
+ "state":"failure"
299
+ },
300
+ {
301
+ "argument":"ReplicationTasks[].Status",
302
+ "expected":"creating",
303
+ "matcher":"pathAny",
304
+ "state":"failure"
305
+ },
306
+ {
307
+ "argument":"ReplicationTasks[].Status",
308
+ "expected":"stopped",
309
+ "matcher":"pathAny",
310
+ "state":"failure"
311
+ },
312
+ {
313
+ "argument":"ReplicationTasks[].Status",
314
+ "expected":"running",
315
+ "matcher":"pathAny",
316
+ "state":"failure"
317
+ },
318
+ {
319
+ "argument":"ReplicationTasks[].Status",
320
+ "expected":"failed",
321
+ "matcher":"pathAny",
322
+ "state":"failure"
323
+ },
324
+ {
325
+ "expected":"ResourceNotFoundFault",
326
+ "matcher":"error",
327
+ "state":"success"
328
+ }
329
+ ],
330
+ "delay":15,
331
+ "description":"Wait until DMS replication task is deleted.",
332
+ "maxAttempts":60,
333
+ "operation":"DescribeReplicationTasks"
334
+ }
335
+ }
336
+ }
@@ -2793,7 +2793,8 @@
2793
2793
  "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"},
2794
2794
  "EnabledCloudwatchLogsExports":{"shape":"LogTypeList"},
2795
2795
  "ProcessorFeatures":{"shape":"ProcessorFeatureList"},
2796
- "DeletionProtection":{"shape":"Boolean"}
2796
+ "DeletionProtection":{"shape":"Boolean"},
2797
+ "ListenerEndpoint":{"shape":"Endpoint"}
2797
2798
  },
2798
2799
  "wrapper":true
2799
2800
  },
@@ -284,6 +284,23 @@
284
284
  "isRegionalized" : false,
285
285
  "partitionEndpoint" : "aws-global"
286
286
  },
287
+ "chime" : {
288
+ "defaults" : {
289
+ "protocols" : [ "https" ],
290
+ "sslCommonName" : "service.chime.aws.amazon.com"
291
+ },
292
+ "endpoints" : {
293
+ "aws-global" : {
294
+ "credentialScope" : {
295
+ "region" : "us-east-1"
296
+ },
297
+ "hostname" : "service.chime.aws.amazon.com",
298
+ "protocols" : [ "https" ]
299
+ }
300
+ },
301
+ "isRegionalized" : false,
302
+ "partitionEndpoint" : "aws-global"
303
+ },
287
304
  "cloud9" : {
288
305
  "endpoints" : {
289
306
  "ap-southeast-1" : { },
@@ -359,6 +376,7 @@
359
376
  },
360
377
  "endpoints" : {
361
378
  "ap-northeast-1" : { },
379
+ "ap-northeast-2" : { },
362
380
  "ap-south-1" : { },
363
381
  "ap-southeast-1" : { },
364
382
  "ap-southeast-2" : { },
@@ -366,6 +384,7 @@
366
384
  "eu-central-1" : { },
367
385
  "eu-west-1" : { },
368
386
  "eu-west-2" : { },
387
+ "eu-west-3" : { },
369
388
  "us-east-1" : { },
370
389
  "us-east-2" : { },
371
390
  "us-west-1" : { },
@@ -460,6 +479,12 @@
460
479
  "eu-west-1" : { },
461
480
  "eu-west-2" : { },
462
481
  "eu-west-3" : { },
482
+ "fips" : {
483
+ "credentialScope" : {
484
+ "region" : "ca-central-1"
485
+ },
486
+ "hostname" : "codecommit-fips.ca-central-1.amazonaws.com"
487
+ },
463
488
  "sa-east-1" : { },
464
489
  "us-east-1" : { },
465
490
  "us-east-2" : { },
@@ -481,9 +506,33 @@
481
506
  "eu-west-3" : { },
482
507
  "sa-east-1" : { },
483
508
  "us-east-1" : { },
509
+ "us-east-1-fips" : {
510
+ "credentialScope" : {
511
+ "region" : "us-east-1"
512
+ },
513
+ "hostname" : "codedeploy-fips.us-east-1.amazonaws.com"
514
+ },
484
515
  "us-east-2" : { },
516
+ "us-east-2-fips" : {
517
+ "credentialScope" : {
518
+ "region" : "us-east-2"
519
+ },
520
+ "hostname" : "codedeploy-fips.us-east-2.amazonaws.com"
521
+ },
485
522
  "us-west-1" : { },
486
- "us-west-2" : { }
523
+ "us-west-1-fips" : {
524
+ "credentialScope" : {
525
+ "region" : "us-west-1"
526
+ },
527
+ "hostname" : "codedeploy-fips.us-west-1.amazonaws.com"
528
+ },
529
+ "us-west-2" : { },
530
+ "us-west-2-fips" : {
531
+ "credentialScope" : {
532
+ "region" : "us-west-2"
533
+ },
534
+ "hostname" : "codedeploy-fips.us-west-2.amazonaws.com"
535
+ }
487
536
  }
488
537
  },
489
538
  "codepipeline" : {
@@ -2383,6 +2432,12 @@
2383
2432
  "cn-northwest-1" : { }
2384
2433
  }
2385
2434
  },
2435
+ "dms" : {
2436
+ "endpoints" : {
2437
+ "cn-north-1" : { },
2438
+ "cn-northwest-1" : { }
2439
+ }
2440
+ },
2386
2441
  "ds" : {
2387
2442
  "endpoints" : {
2388
2443
  "cn-north-1" : { },
@@ -2451,6 +2506,7 @@
2451
2506
  },
2452
2507
  "es" : {
2453
2508
  "endpoints" : {
2509
+ "cn-north-1" : { },
2454
2510
  "cn-northwest-1" : { }
2455
2511
  }
2456
2512
  },
@@ -2682,7 +2738,13 @@
2682
2738
  },
2683
2739
  "codedeploy" : {
2684
2740
  "endpoints" : {
2685
- "us-gov-west-1" : { }
2741
+ "us-gov-west-1" : { },
2742
+ "us-gov-west-1-fips" : {
2743
+ "credentialScope" : {
2744
+ "region" : "us-gov-west-1"
2745
+ },
2746
+ "hostname" : "codedeploy-fips.us-gov-west-1.amazonaws.com"
2747
+ }
2686
2748
  }
2687
2749
  },
2688
2750
  "config" : {
@@ -2784,6 +2846,15 @@
2784
2846
  }
2785
2847
  }
2786
2848
  },
2849
+ "guardduty" : {
2850
+ "defaults" : {
2851
+ "protocols" : [ "https" ]
2852
+ },
2853
+ "endpoints" : {
2854
+ "us-gov-west-1" : { }
2855
+ },
2856
+ "isRegionalized" : true
2857
+ },
2787
2858
  "iam" : {
2788
2859
  "endpoints" : {
2789
2860
  "aws-us-gov-global" : {