aws-sdk-core 2.3.17 → 2.3.18

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
+ }
@@ -312,10 +312,6 @@
312
312
  {
313
313
  "shape":"InvalidRequestException",
314
314
  "exception":true
315
- },
316
- {
317
- "shape":"InvalidFleetStatusException",
318
- "exception":true
319
315
  }
320
316
  ]
321
317
  },
@@ -658,6 +654,34 @@
658
654
  }
659
655
  ]
660
656
  },
657
+ "DescribeRuntimeConfiguration":{
658
+ "name":"DescribeRuntimeConfiguration",
659
+ "http":{
660
+ "method":"POST",
661
+ "requestUri":"/"
662
+ },
663
+ "input":{"shape":"DescribeRuntimeConfigurationInput"},
664
+ "output":{"shape":"DescribeRuntimeConfigurationOutput"},
665
+ "errors":[
666
+ {
667
+ "shape":"UnauthorizedException",
668
+ "exception":true
669
+ },
670
+ {
671
+ "shape":"NotFoundException",
672
+ "exception":true
673
+ },
674
+ {
675
+ "shape":"InternalServiceException",
676
+ "exception":true,
677
+ "fault":true
678
+ },
679
+ {
680
+ "shape":"InvalidRequestException",
681
+ "exception":true
682
+ }
683
+ ]
684
+ },
661
685
  "DescribeScalingPolicies":{
662
686
  "name":"DescribeScalingPolicies",
663
687
  "http":{
@@ -1089,6 +1113,38 @@
1089
1113
  "exception":true
1090
1114
  }
1091
1115
  ]
1116
+ },
1117
+ "UpdateRuntimeConfiguration":{
1118
+ "name":"UpdateRuntimeConfiguration",
1119
+ "http":{
1120
+ "method":"POST",
1121
+ "requestUri":"/"
1122
+ },
1123
+ "input":{"shape":"UpdateRuntimeConfigurationInput"},
1124
+ "output":{"shape":"UpdateRuntimeConfigurationOutput"},
1125
+ "errors":[
1126
+ {
1127
+ "shape":"UnauthorizedException",
1128
+ "exception":true
1129
+ },
1130
+ {
1131
+ "shape":"NotFoundException",
1132
+ "exception":true
1133
+ },
1134
+ {
1135
+ "shape":"InternalServiceException",
1136
+ "exception":true,
1137
+ "fault":true
1138
+ },
1139
+ {
1140
+ "shape":"InvalidRequestException",
1141
+ "exception":true
1142
+ },
1143
+ {
1144
+ "shape":"InvalidFleetStatusException",
1145
+ "exception":true
1146
+ }
1147
+ ]
1092
1148
  }
1093
1149
  },
1094
1150
  "shapes":{
@@ -1202,7 +1258,6 @@
1202
1258
  "required":[
1203
1259
  "Name",
1204
1260
  "BuildId",
1205
- "ServerLaunchPath",
1206
1261
  "EC2InstanceType"
1207
1262
  ],
1208
1263
  "members":{
@@ -1214,7 +1269,8 @@
1214
1269
  "LogPaths":{"shape":"StringList"},
1215
1270
  "EC2InstanceType":{"shape":"EC2InstanceType"},
1216
1271
  "EC2InboundPermissions":{"shape":"IpPermissionsList"},
1217
- "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"}
1272
+ "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"},
1273
+ "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
1218
1274
  }
1219
1275
  },
1220
1276
  "CreateFleetOutput":{
@@ -1474,6 +1530,19 @@
1474
1530
  "NextToken":{"shape":"NonZeroAndMaxString"}
1475
1531
  }
1476
1532
  },
1533
+ "DescribeRuntimeConfigurationInput":{
1534
+ "type":"structure",
1535
+ "required":["FleetId"],
1536
+ "members":{
1537
+ "FleetId":{"shape":"FleetId"}
1538
+ }
1539
+ },
1540
+ "DescribeRuntimeConfigurationOutput":{
1541
+ "type":"structure",
1542
+ "members":{
1543
+ "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
1544
+ }
1545
+ },
1477
1546
  "DescribeScalingPoliciesInput":{
1478
1547
  "type":"structure",
1479
1548
  "required":["FleetId"],
@@ -1652,6 +1721,7 @@
1652
1721
  "type":"structure",
1653
1722
  "members":{
1654
1723
  "FleetId":{"shape":"FleetId"},
1724
+ "ActiveServerProcessCount":{"shape":"WholeNumber"},
1655
1725
  "ActiveGameSessionCount":{"shape":"WholeNumber"},
1656
1726
  "CurrentPlayerSessionCount":{"shape":"WholeNumber"},
1657
1727
  "MaximumPlayerSessionCount":{"shape":"WholeNumber"}
@@ -1699,6 +1769,7 @@
1699
1769
  "Status":{"shape":"GameSessionStatus"},
1700
1770
  "GameProperties":{"shape":"GamePropertyList"},
1701
1771
  "IpAddress":{"shape":"IpAddress"},
1772
+ "Port":{"shape":"PortNumber"},
1702
1773
  "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"}
1703
1774
  }
1704
1775
  },
@@ -1908,7 +1979,8 @@
1908
1979
  "CreationTime":{"shape":"Timestamp"},
1909
1980
  "TerminationTime":{"shape":"Timestamp"},
1910
1981
  "Status":{"shape":"PlayerSessionStatus"},
1911
- "IpAddress":{"shape":"IpAddress"}
1982
+ "IpAddress":{"shape":"IpAddress"},
1983
+ "Port":{"shape":"PortNumber"}
1912
1984
  }
1913
1985
  },
1914
1986
  "PlayerSessionCreationPolicy":{
@@ -2026,6 +2098,12 @@
2026
2098
  "TERMINAL"
2027
2099
  ]
2028
2100
  },
2101
+ "RuntimeConfiguration":{
2102
+ "type":"structure",
2103
+ "members":{
2104
+ "ServerProcesses":{"shape":"ServerProcessList"}
2105
+ }
2106
+ },
2029
2107
  "S3Location":{
2030
2108
  "type":"structure",
2031
2109
  "members":{
@@ -2072,6 +2150,24 @@
2072
2150
  "ERROR"
2073
2151
  ]
2074
2152
  },
2153
+ "ServerProcess":{
2154
+ "type":"structure",
2155
+ "required":[
2156
+ "LaunchPath",
2157
+ "ConcurrentExecutions"
2158
+ ],
2159
+ "members":{
2160
+ "LaunchPath":{"shape":"NonZeroAndMaxString"},
2161
+ "Parameters":{"shape":"NonZeroAndMaxString"},
2162
+ "ConcurrentExecutions":{"shape":"PositiveInteger"}
2163
+ }
2164
+ },
2165
+ "ServerProcessList":{
2166
+ "type":"list",
2167
+ "member":{"shape":"ServerProcess"},
2168
+ "min":1,
2169
+ "max":50
2170
+ },
2075
2171
  "StringList":{
2076
2172
  "type":"list",
2077
2173
  "member":{"shape":"NonZeroAndMaxString"}
@@ -2186,6 +2282,23 @@
2186
2282
  "GameSession":{"shape":"GameSession"}
2187
2283
  }
2188
2284
  },
2285
+ "UpdateRuntimeConfigurationInput":{
2286
+ "type":"structure",
2287
+ "required":[
2288
+ "FleetId",
2289
+ "RuntimeConfiguration"
2290
+ ],
2291
+ "members":{
2292
+ "FleetId":{"shape":"FleetId"},
2293
+ "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
2294
+ }
2295
+ },
2296
+ "UpdateRuntimeConfigurationOutput":{
2297
+ "type":"structure",
2298
+ "members":{
2299
+ "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
2300
+ }
2301
+ },
2189
2302
  "WholeNumber":{
2190
2303
  "type":"integer",
2191
2304
  "min":0
@@ -2753,6 +2753,7 @@
2753
2753
  "members":{
2754
2754
  "tableName":{"shape":"TableName"},
2755
2755
  "roleArn":{"shape":"AwsArn"},
2756
+ "operation":{"shape":"DynamoOperation"},
2756
2757
  "hashKeyField":{"shape":"HashKeyField"},
2757
2758
  "hashKeyValue":{"shape":"HashKeyValue"},
2758
2759
  "hashKeyType":{"shape":"DynamoKeyType"},
@@ -2769,6 +2770,7 @@
2769
2770
  "NUMBER"
2770
2771
  ]
2771
2772
  },
2773
+ "DynamoOperation":{"type":"string"},
2772
2774
  "ElasticsearchAction":{
2773
2775
  "type":"structure",
2774
2776
  "required":[
@@ -225,7 +225,8 @@
225
225
  {"shape":"NoSuchHostedZone"},
226
226
  {"shape":"HostedZoneNotEmpty"},
227
227
  {"shape":"PriorRequestNotComplete"},
228
- {"shape":"InvalidInput"}
228
+ {"shape":"InvalidInput"},
229
+ {"shape":"InvalidDomainName"}
229
230
  ]
230
231
  },
231
232
  "DeleteReusableDelegationSet":{
@@ -2787,7 +2788,8 @@
2787
2788
  "ap-northeast-1",
2788
2789
  "ap-northeast-2",
2789
2790
  "sa-east-1",
2790
- "cn-north-1"
2791
+ "cn-north-1",
2792
+ "ap-south-1"
2791
2793
  ],
2792
2794
  "max":64,
2793
2795
  "min":1
@@ -3222,6 +3224,7 @@
3222
3224
  "eu-central-1",
3223
3225
  "ap-southeast-1",
3224
3226
  "ap-southeast-2",
3227
+ "ap-south-1",
3225
3228
  "ap-northeast-1",
3226
3229
  "ap-northeast-2",
3227
3230
  "sa-east-1",
@@ -1,12 +1,13 @@
1
1
  {
2
+ "version":"2.0",
2
3
  "metadata":{
3
4
  "apiVersion":"2010-03-31",
4
5
  "endpointPrefix":"sns",
6
+ "protocol":"query",
5
7
  "serviceAbbreviation":"Amazon SNS",
6
8
  "serviceFullName":"Amazon Simple Notification Service",
7
9
  "signatureVersion":"v4",
8
- "xmlNamespace":"http://sns.amazonaws.com/doc/2010-03-31/",
9
- "protocol":"query"
10
+ "xmlNamespace":"http://sns.amazonaws.com/doc/2010-03-31/"
10
11
  },
11
12
  "operations":{
12
13
  "AddPermission":{
@@ -17,42 +18,27 @@
17
18
  },
18
19
  "input":{"shape":"AddPermissionInput"},
19
20
  "errors":[
20
- {
21
- "shape":"InvalidParameterException",
22
- "error":{
23
- "code":"InvalidParameter",
24
- "httpStatusCode":400,
25
- "senderFault":true
26
- },
27
- "exception":true
28
- },
29
- {
30
- "shape":"InternalErrorException",
31
- "error":{
32
- "code":"InternalError",
33
- "httpStatusCode":500
34
- },
35
- "exception":true,
36
- "fault":true
37
- },
38
- {
39
- "shape":"AuthorizationErrorException",
40
- "error":{
41
- "code":"AuthorizationError",
42
- "httpStatusCode":403,
43
- "senderFault":true
44
- },
45
- "exception":true
46
- },
47
- {
48
- "shape":"NotFoundException",
49
- "error":{
50
- "code":"NotFound",
51
- "httpStatusCode":404,
52
- "senderFault":true
53
- },
54
- "exception":true
55
- }
21
+ {"shape":"InvalidParameterException"},
22
+ {"shape":"InternalErrorException"},
23
+ {"shape":"AuthorizationErrorException"},
24
+ {"shape":"NotFoundException"}
25
+ ]
26
+ },
27
+ "CheckIfPhoneNumberIsOptedOut":{
28
+ "name":"CheckIfPhoneNumberIsOptedOut",
29
+ "http":{
30
+ "method":"POST",
31
+ "requestUri":"/"
32
+ },
33
+ "input":{"shape":"CheckIfPhoneNumberIsOptedOutInput"},
34
+ "output":{
35
+ "shape":"CheckIfPhoneNumberIsOptedOutResponse",
36
+ "resultWrapper":"CheckIfPhoneNumberIsOptedOutResult"
37
+ },
38
+ "errors":[
39
+ {"shape":"ThrottledException"},
40
+ {"shape":"InternalErrorException"},
41
+ {"shape":"InvalidParameterException"}
56
42
  ]
57
43
  },
58
44
  "ConfirmSubscription":{
@@ -67,51 +53,11 @@
67
53
  "resultWrapper":"ConfirmSubscriptionResult"
68
54
  },
69
55
  "errors":[
70
- {
71
- "shape":"SubscriptionLimitExceededException",
72
- "error":{
73
- "code":"SubscriptionLimitExceeded",
74
- "httpStatusCode":403,
75
- "senderFault":true
76
- },
77
- "exception":true
78
- },
79
- {
80
- "shape":"InvalidParameterException",
81
- "error":{
82
- "code":"InvalidParameter",
83
- "httpStatusCode":400,
84
- "senderFault":true
85
- },
86
- "exception":true
87
- },
88
- {
89
- "shape":"NotFoundException",
90
- "error":{
91
- "code":"NotFound",
92
- "httpStatusCode":404,
93
- "senderFault":true
94
- },
95
- "exception":true
96
- },
97
- {
98
- "shape":"InternalErrorException",
99
- "error":{
100
- "code":"InternalError",
101
- "httpStatusCode":500
102
- },
103
- "exception":true,
104
- "fault":true
105
- },
106
- {
107
- "shape":"AuthorizationErrorException",
108
- "error":{
109
- "code":"AuthorizationError",
110
- "httpStatusCode":403,
111
- "senderFault":true
112
- },
113
- "exception":true
114
- }
56
+ {"shape":"SubscriptionLimitExceededException"},
57
+ {"shape":"InvalidParameterException"},
58
+ {"shape":"NotFoundException"},
59
+ {"shape":"InternalErrorException"},
60
+ {"shape":"AuthorizationErrorException"}
115
61
  ]
116
62
  },
117
63
  "CreatePlatformApplication":{
@@ -126,33 +72,9 @@
126
72
  "resultWrapper":"CreatePlatformApplicationResult"
127
73
  },
128
74
  "errors":[
129
- {
130
- "shape":"InvalidParameterException",
131
- "error":{
132
- "code":"InvalidParameter",
133
- "httpStatusCode":400,
134
- "senderFault":true
135
- },
136
- "exception":true
137
- },
138
- {
139
- "shape":"InternalErrorException",
140
- "error":{
141
- "code":"InternalError",
142
- "httpStatusCode":500
143
- },
144
- "exception":true,
145
- "fault":true
146
- },
147
- {
148
- "shape":"AuthorizationErrorException",
149
- "error":{
150
- "code":"AuthorizationError",
151
- "httpStatusCode":403,
152
- "senderFault":true
153
- },
154
- "exception":true
155
- }
75
+ {"shape":"InvalidParameterException"},
76
+ {"shape":"InternalErrorException"},
77
+ {"shape":"AuthorizationErrorException"}
156
78
  ]
157
79
  },
158
80
  "CreatePlatformEndpoint":{
@@ -167,42 +89,10 @@
167
89
  "resultWrapper":"CreatePlatformEndpointResult"
168
90
  },
169
91
  "errors":[
170
- {
171
- "shape":"InvalidParameterException",
172
- "error":{
173
- "code":"InvalidParameter",
174
- "httpStatusCode":400,
175
- "senderFault":true
176
- },
177
- "exception":true
178
- },
179
- {
180
- "shape":"InternalErrorException",
181
- "error":{
182
- "code":"InternalError",
183
- "httpStatusCode":500
184
- },
185
- "exception":true,
186
- "fault":true
187
- },
188
- {
189
- "shape":"AuthorizationErrorException",
190
- "error":{
191
- "code":"AuthorizationError",
192
- "httpStatusCode":403,
193
- "senderFault":true
194
- },
195
- "exception":true
196
- },
197
- {
198
- "shape":"NotFoundException",
199
- "error":{
200
- "code":"NotFound",
201
- "httpStatusCode":404,
202
- "senderFault":true
203
- },
204
- "exception":true
205
- }
92
+ {"shape":"InvalidParameterException"},
93
+ {"shape":"InternalErrorException"},
94
+ {"shape":"AuthorizationErrorException"},
95
+ {"shape":"NotFoundException"}
206
96
  ]
207
97
  },
208
98
  "CreateTopic":{
@@ -217,42 +107,10 @@
217
107
  "resultWrapper":"CreateTopicResult"
218
108
  },
219
109
  "errors":[
220
- {
221
- "shape":"InvalidParameterException",
222
- "error":{
223
- "code":"InvalidParameter",
224
- "httpStatusCode":400,
225
- "senderFault":true
226
- },
227
- "exception":true
228
- },
229
- {
230
- "shape":"TopicLimitExceededException",
231
- "error":{
232
- "code":"TopicLimitExceeded",
233
- "httpStatusCode":403,
234
- "senderFault":true
235
- },
236
- "exception":true
237
- },
238
- {
239
- "shape":"InternalErrorException",
240
- "error":{
241
- "code":"InternalError",
242
- "httpStatusCode":500
243
- },
244
- "exception":true,
245
- "fault":true
246
- },
247
- {
248
- "shape":"AuthorizationErrorException",
249
- "error":{
250
- "code":"AuthorizationError",
251
- "httpStatusCode":403,
252
- "senderFault":true
253
- },
254
- "exception":true
255
- }
110
+ {"shape":"InvalidParameterException"},
111
+ {"shape":"TopicLimitExceededException"},
112
+ {"shape":"InternalErrorException"},
113
+ {"shape":"AuthorizationErrorException"}
256
114
  ]
257
115
  },
258
116
  "DeleteEndpoint":{
@@ -263,33 +121,9 @@
263
121
  },
264
122
  "input":{"shape":"DeleteEndpointInput"},
265
123
  "errors":[
266
- {
267
- "shape":"InvalidParameterException",
268
- "error":{
269
- "code":"InvalidParameter",
270
- "httpStatusCode":400,
271
- "senderFault":true
272
- },
273
- "exception":true
274
- },
275
- {
276
- "shape":"InternalErrorException",
277
- "error":{
278
- "code":"InternalError",
279
- "httpStatusCode":500
280
- },
281
- "exception":true,
282
- "fault":true
283
- },
284
- {
285
- "shape":"AuthorizationErrorException",
286
- "error":{
287
- "code":"AuthorizationError",
288
- "httpStatusCode":403,
289
- "senderFault":true
290
- },
291
- "exception":true
292
- }
124
+ {"shape":"InvalidParameterException"},
125
+ {"shape":"InternalErrorException"},
126
+ {"shape":"AuthorizationErrorException"}
293
127
  ]
294
128
  },
295
129
  "DeletePlatformApplication":{
@@ -300,33 +134,9 @@
300
134
  },
301
135
  "input":{"shape":"DeletePlatformApplicationInput"},
302
136
  "errors":[
303
- {
304
- "shape":"InvalidParameterException",
305
- "error":{
306
- "code":"InvalidParameter",
307
- "httpStatusCode":400,
308
- "senderFault":true
309
- },
310
- "exception":true
311
- },
312
- {
313
- "shape":"InternalErrorException",
314
- "error":{
315
- "code":"InternalError",
316
- "httpStatusCode":500
317
- },
318
- "exception":true,
319
- "fault":true
320
- },
321
- {
322
- "shape":"AuthorizationErrorException",
323
- "error":{
324
- "code":"AuthorizationError",
325
- "httpStatusCode":403,
326
- "senderFault":true
327
- },
328
- "exception":true
329
- }
137
+ {"shape":"InvalidParameterException"},
138
+ {"shape":"InternalErrorException"},
139
+ {"shape":"AuthorizationErrorException"}
330
140
  ]
331
141
  },
332
142
  "DeleteTopic":{
@@ -337,42 +147,10 @@
337
147
  },
338
148
  "input":{"shape":"DeleteTopicInput"},
339
149
  "errors":[
340
- {
341
- "shape":"InvalidParameterException",
342
- "error":{
343
- "code":"InvalidParameter",
344
- "httpStatusCode":400,
345
- "senderFault":true
346
- },
347
- "exception":true
348
- },
349
- {
350
- "shape":"InternalErrorException",
351
- "error":{
352
- "code":"InternalError",
353
- "httpStatusCode":500
354
- },
355
- "exception":true,
356
- "fault":true
357
- },
358
- {
359
- "shape":"AuthorizationErrorException",
360
- "error":{
361
- "code":"AuthorizationError",
362
- "httpStatusCode":403,
363
- "senderFault":true
364
- },
365
- "exception":true
366
- },
367
- {
368
- "shape":"NotFoundException",
369
- "error":{
370
- "code":"NotFound",
371
- "httpStatusCode":404,
372
- "senderFault":true
373
- },
374
- "exception":true
375
- }
150
+ {"shape":"InvalidParameterException"},
151
+ {"shape":"InternalErrorException"},
152
+ {"shape":"AuthorizationErrorException"},
153
+ {"shape":"NotFoundException"}
376
154
  ]
377
155
  },
378
156
  "GetEndpointAttributes":{
@@ -387,42 +165,10 @@
387
165
  "resultWrapper":"GetEndpointAttributesResult"
388
166
  },
389
167
  "errors":[
390
- {
391
- "shape":"InvalidParameterException",
392
- "error":{
393
- "code":"InvalidParameter",
394
- "httpStatusCode":400,
395
- "senderFault":true
396
- },
397
- "exception":true
398
- },
399
- {
400
- "shape":"InternalErrorException",
401
- "error":{
402
- "code":"InternalError",
403
- "httpStatusCode":500
404
- },
405
- "exception":true,
406
- "fault":true
407
- },
408
- {
409
- "shape":"AuthorizationErrorException",
410
- "error":{
411
- "code":"AuthorizationError",
412
- "httpStatusCode":403,
413
- "senderFault":true
414
- },
415
- "exception":true
416
- },
417
- {
418
- "shape":"NotFoundException",
419
- "error":{
420
- "code":"NotFound",
421
- "httpStatusCode":404,
422
- "senderFault":true
423
- },
424
- "exception":true
425
- }
168
+ {"shape":"InvalidParameterException"},
169
+ {"shape":"InternalErrorException"},
170
+ {"shape":"AuthorizationErrorException"},
171
+ {"shape":"NotFoundException"}
426
172
  ]
427
173
  },
428
174
  "GetPlatformApplicationAttributes":{
@@ -437,42 +183,27 @@
437
183
  "resultWrapper":"GetPlatformApplicationAttributesResult"
438
184
  },
439
185
  "errors":[
440
- {
441
- "shape":"InvalidParameterException",
442
- "error":{
443
- "code":"InvalidParameter",
444
- "httpStatusCode":400,
445
- "senderFault":true
446
- },
447
- "exception":true
448
- },
449
- {
450
- "shape":"InternalErrorException",
451
- "error":{
452
- "code":"InternalError",
453
- "httpStatusCode":500
454
- },
455
- "exception":true,
456
- "fault":true
457
- },
458
- {
459
- "shape":"AuthorizationErrorException",
460
- "error":{
461
- "code":"AuthorizationError",
462
- "httpStatusCode":403,
463
- "senderFault":true
464
- },
465
- "exception":true
466
- },
467
- {
468
- "shape":"NotFoundException",
469
- "error":{
470
- "code":"NotFound",
471
- "httpStatusCode":404,
472
- "senderFault":true
473
- },
474
- "exception":true
475
- }
186
+ {"shape":"InvalidParameterException"},
187
+ {"shape":"InternalErrorException"},
188
+ {"shape":"AuthorizationErrorException"},
189
+ {"shape":"NotFoundException"}
190
+ ]
191
+ },
192
+ "GetSMSAttributes":{
193
+ "name":"GetSMSAttributes",
194
+ "http":{
195
+ "method":"POST",
196
+ "requestUri":"/"
197
+ },
198
+ "input":{"shape":"GetSMSAttributesInput"},
199
+ "output":{
200
+ "shape":"GetSMSAttributesResponse",
201
+ "resultWrapper":"GetSMSAttributesResult"
202
+ },
203
+ "errors":[
204
+ {"shape":"ThrottledException"},
205
+ {"shape":"InternalErrorException"},
206
+ {"shape":"InvalidParameterException"}
476
207
  ]
477
208
  },
478
209
  "GetSubscriptionAttributes":{
@@ -487,42 +218,10 @@
487
218
  "resultWrapper":"GetSubscriptionAttributesResult"
488
219
  },
489
220
  "errors":[
490
- {
491
- "shape":"InvalidParameterException",
492
- "error":{
493
- "code":"InvalidParameter",
494
- "httpStatusCode":400,
495
- "senderFault":true
496
- },
497
- "exception":true
498
- },
499
- {
500
- "shape":"InternalErrorException",
501
- "error":{
502
- "code":"InternalError",
503
- "httpStatusCode":500
504
- },
505
- "exception":true,
506
- "fault":true
507
- },
508
- {
509
- "shape":"NotFoundException",
510
- "error":{
511
- "code":"NotFound",
512
- "httpStatusCode":404,
513
- "senderFault":true
514
- },
515
- "exception":true
516
- },
517
- {
518
- "shape":"AuthorizationErrorException",
519
- "error":{
520
- "code":"AuthorizationError",
521
- "httpStatusCode":403,
522
- "senderFault":true
523
- },
524
- "exception":true
525
- }
221
+ {"shape":"InvalidParameterException"},
222
+ {"shape":"InternalErrorException"},
223
+ {"shape":"NotFoundException"},
224
+ {"shape":"AuthorizationErrorException"}
526
225
  ]
527
226
  },
528
227
  "GetTopicAttributes":{
@@ -537,42 +236,10 @@
537
236
  "resultWrapper":"GetTopicAttributesResult"
538
237
  },
539
238
  "errors":[
540
- {
541
- "shape":"InvalidParameterException",
542
- "error":{
543
- "code":"InvalidParameter",
544
- "httpStatusCode":400,
545
- "senderFault":true
546
- },
547
- "exception":true
548
- },
549
- {
550
- "shape":"InternalErrorException",
551
- "error":{
552
- "code":"InternalError",
553
- "httpStatusCode":500
554
- },
555
- "exception":true,
556
- "fault":true
557
- },
558
- {
559
- "shape":"NotFoundException",
560
- "error":{
561
- "code":"NotFound",
562
- "httpStatusCode":404,
563
- "senderFault":true
564
- },
565
- "exception":true
566
- },
567
- {
568
- "shape":"AuthorizationErrorException",
569
- "error":{
570
- "code":"AuthorizationError",
571
- "httpStatusCode":403,
572
- "senderFault":true
573
- },
574
- "exception":true
575
- }
239
+ {"shape":"InvalidParameterException"},
240
+ {"shape":"InternalErrorException"},
241
+ {"shape":"NotFoundException"},
242
+ {"shape":"AuthorizationErrorException"}
576
243
  ]
577
244
  },
578
245
  "ListEndpointsByPlatformApplication":{
@@ -587,42 +254,27 @@
587
254
  "resultWrapper":"ListEndpointsByPlatformApplicationResult"
588
255
  },
589
256
  "errors":[
590
- {
591
- "shape":"InvalidParameterException",
592
- "error":{
593
- "code":"InvalidParameter",
594
- "httpStatusCode":400,
595
- "senderFault":true
596
- },
597
- "exception":true
598
- },
599
- {
600
- "shape":"InternalErrorException",
601
- "error":{
602
- "code":"InternalError",
603
- "httpStatusCode":500
604
- },
605
- "exception":true,
606
- "fault":true
607
- },
608
- {
609
- "shape":"AuthorizationErrorException",
610
- "error":{
611
- "code":"AuthorizationError",
612
- "httpStatusCode":403,
613
- "senderFault":true
614
- },
615
- "exception":true
616
- },
617
- {
618
- "shape":"NotFoundException",
619
- "error":{
620
- "code":"NotFound",
621
- "httpStatusCode":404,
622
- "senderFault":true
623
- },
624
- "exception":true
625
- }
257
+ {"shape":"InvalidParameterException"},
258
+ {"shape":"InternalErrorException"},
259
+ {"shape":"AuthorizationErrorException"},
260
+ {"shape":"NotFoundException"}
261
+ ]
262
+ },
263
+ "ListPhoneNumbersOptedOut":{
264
+ "name":"ListPhoneNumbersOptedOut",
265
+ "http":{
266
+ "method":"POST",
267
+ "requestUri":"/"
268
+ },
269
+ "input":{"shape":"ListPhoneNumbersOptedOutInput"},
270
+ "output":{
271
+ "shape":"ListPhoneNumbersOptedOutResponse",
272
+ "resultWrapper":"ListPhoneNumbersOptedOutResult"
273
+ },
274
+ "errors":[
275
+ {"shape":"ThrottledException"},
276
+ {"shape":"InternalErrorException"},
277
+ {"shape":"InvalidParameterException"}
626
278
  ]
627
279
  },
628
280
  "ListPlatformApplications":{
@@ -637,33 +289,9 @@
637
289
  "resultWrapper":"ListPlatformApplicationsResult"
638
290
  },
639
291
  "errors":[
640
- {
641
- "shape":"InvalidParameterException",
642
- "error":{
643
- "code":"InvalidParameter",
644
- "httpStatusCode":400,
645
- "senderFault":true
646
- },
647
- "exception":true
648
- },
649
- {
650
- "shape":"InternalErrorException",
651
- "error":{
652
- "code":"InternalError",
653
- "httpStatusCode":500
654
- },
655
- "exception":true,
656
- "fault":true
657
- },
658
- {
659
- "shape":"AuthorizationErrorException",
660
- "error":{
661
- "code":"AuthorizationError",
662
- "httpStatusCode":403,
663
- "senderFault":true
664
- },
665
- "exception":true
666
- }
292
+ {"shape":"InvalidParameterException"},
293
+ {"shape":"InternalErrorException"},
294
+ {"shape":"AuthorizationErrorException"}
667
295
  ]
668
296
  },
669
297
  "ListSubscriptions":{
@@ -678,33 +306,9 @@
678
306
  "resultWrapper":"ListSubscriptionsResult"
679
307
  },
680
308
  "errors":[
681
- {
682
- "shape":"InvalidParameterException",
683
- "error":{
684
- "code":"InvalidParameter",
685
- "httpStatusCode":400,
686
- "senderFault":true
687
- },
688
- "exception":true
689
- },
690
- {
691
- "shape":"InternalErrorException",
692
- "error":{
693
- "code":"InternalError",
694
- "httpStatusCode":500
695
- },
696
- "exception":true,
697
- "fault":true
698
- },
699
- {
700
- "shape":"AuthorizationErrorException",
701
- "error":{
702
- "code":"AuthorizationError",
703
- "httpStatusCode":403,
704
- "senderFault":true
705
- },
706
- "exception":true
707
- }
309
+ {"shape":"InvalidParameterException"},
310
+ {"shape":"InternalErrorException"},
311
+ {"shape":"AuthorizationErrorException"}
708
312
  ]
709
313
  },
710
314
  "ListSubscriptionsByTopic":{
@@ -719,42 +323,10 @@
719
323
  "resultWrapper":"ListSubscriptionsByTopicResult"
720
324
  },
721
325
  "errors":[
722
- {
723
- "shape":"InvalidParameterException",
724
- "error":{
725
- "code":"InvalidParameter",
726
- "httpStatusCode":400,
727
- "senderFault":true
728
- },
729
- "exception":true
730
- },
731
- {
732
- "shape":"InternalErrorException",
733
- "error":{
734
- "code":"InternalError",
735
- "httpStatusCode":500
736
- },
737
- "exception":true,
738
- "fault":true
739
- },
740
- {
741
- "shape":"NotFoundException",
742
- "error":{
743
- "code":"NotFound",
744
- "httpStatusCode":404,
745
- "senderFault":true
746
- },
747
- "exception":true
748
- },
749
- {
750
- "shape":"AuthorizationErrorException",
751
- "error":{
752
- "code":"AuthorizationError",
753
- "httpStatusCode":403,
754
- "senderFault":true
755
- },
756
- "exception":true
757
- }
326
+ {"shape":"InvalidParameterException"},
327
+ {"shape":"InternalErrorException"},
328
+ {"shape":"NotFoundException"},
329
+ {"shape":"AuthorizationErrorException"}
758
330
  ]
759
331
  },
760
332
  "ListTopics":{
@@ -769,33 +341,26 @@
769
341
  "resultWrapper":"ListTopicsResult"
770
342
  },
771
343
  "errors":[
772
- {
773
- "shape":"InvalidParameterException",
774
- "error":{
775
- "code":"InvalidParameter",
776
- "httpStatusCode":400,
777
- "senderFault":true
778
- },
779
- "exception":true
780
- },
781
- {
782
- "shape":"InternalErrorException",
783
- "error":{
784
- "code":"InternalError",
785
- "httpStatusCode":500
786
- },
787
- "exception":true,
788
- "fault":true
789
- },
790
- {
791
- "shape":"AuthorizationErrorException",
792
- "error":{
793
- "code":"AuthorizationError",
794
- "httpStatusCode":403,
795
- "senderFault":true
796
- },
797
- "exception":true
798
- }
344
+ {"shape":"InvalidParameterException"},
345
+ {"shape":"InternalErrorException"},
346
+ {"shape":"AuthorizationErrorException"}
347
+ ]
348
+ },
349
+ "OptInPhoneNumber":{
350
+ "name":"OptInPhoneNumber",
351
+ "http":{
352
+ "method":"POST",
353
+ "requestUri":"/"
354
+ },
355
+ "input":{"shape":"OptInPhoneNumberInput"},
356
+ "output":{
357
+ "shape":"OptInPhoneNumberResponse",
358
+ "resultWrapper":"OptInPhoneNumberResult"
359
+ },
360
+ "errors":[
361
+ {"shape":"ThrottledException"},
362
+ {"shape":"InternalErrorException"},
363
+ {"shape":"InvalidParameterException"}
799
364
  ]
800
365
  },
801
366
  "Publish":{
@@ -810,69 +375,13 @@
810
375
  "resultWrapper":"PublishResult"
811
376
  },
812
377
  "errors":[
813
- {
814
- "shape":"InvalidParameterException",
815
- "error":{
816
- "code":"InvalidParameter",
817
- "httpStatusCode":400,
818
- "senderFault":true
819
- },
820
- "exception":true
821
- },
822
- {
823
- "shape":"InvalidParameterValueException",
824
- "error":{
825
- "code":"ParameterValueInvalid",
826
- "httpStatusCode":400,
827
- "senderFault":true
828
- },
829
- "exception":true
830
- },
831
- {
832
- "shape":"InternalErrorException",
833
- "error":{
834
- "code":"InternalError",
835
- "httpStatusCode":500
836
- },
837
- "exception":true,
838
- "fault":true
839
- },
840
- {
841
- "shape":"NotFoundException",
842
- "error":{
843
- "code":"NotFound",
844
- "httpStatusCode":404,
845
- "senderFault":true
846
- },
847
- "exception":true
848
- },
849
- {
850
- "shape":"EndpointDisabledException",
851
- "error":{
852
- "code":"EndpointDisabled",
853
- "httpStatusCode":400,
854
- "senderFault":true
855
- },
856
- "exception":true
857
- },
858
- {
859
- "shape":"PlatformApplicationDisabledException",
860
- "error":{
861
- "code":"PlatformApplicationDisabled",
862
- "httpStatusCode":400,
863
- "senderFault":true
864
- },
865
- "exception":true
866
- },
867
- {
868
- "shape":"AuthorizationErrorException",
869
- "error":{
870
- "code":"AuthorizationError",
871
- "httpStatusCode":403,
872
- "senderFault":true
873
- },
874
- "exception":true
875
- }
378
+ {"shape":"InvalidParameterException"},
379
+ {"shape":"InvalidParameterValueException"},
380
+ {"shape":"InternalErrorException"},
381
+ {"shape":"NotFoundException"},
382
+ {"shape":"EndpointDisabledException"},
383
+ {"shape":"PlatformApplicationDisabledException"},
384
+ {"shape":"AuthorizationErrorException"}
876
385
  ]
877
386
  },
878
387
  "RemovePermission":{
@@ -883,42 +392,10 @@
883
392
  },
884
393
  "input":{"shape":"RemovePermissionInput"},
885
394
  "errors":[
886
- {
887
- "shape":"InvalidParameterException",
888
- "error":{
889
- "code":"InvalidParameter",
890
- "httpStatusCode":400,
891
- "senderFault":true
892
- },
893
- "exception":true
894
- },
895
- {
896
- "shape":"InternalErrorException",
897
- "error":{
898
- "code":"InternalError",
899
- "httpStatusCode":500
900
- },
901
- "exception":true,
902
- "fault":true
903
- },
904
- {
905
- "shape":"AuthorizationErrorException",
906
- "error":{
907
- "code":"AuthorizationError",
908
- "httpStatusCode":403,
909
- "senderFault":true
910
- },
911
- "exception":true
912
- },
913
- {
914
- "shape":"NotFoundException",
915
- "error":{
916
- "code":"NotFound",
917
- "httpStatusCode":404,
918
- "senderFault":true
919
- },
920
- "exception":true
921
- }
395
+ {"shape":"InvalidParameterException"},
396
+ {"shape":"InternalErrorException"},
397
+ {"shape":"AuthorizationErrorException"},
398
+ {"shape":"NotFoundException"}
922
399
  ]
923
400
  },
924
401
  "SetEndpointAttributes":{
@@ -929,42 +406,10 @@
929
406
  },
930
407
  "input":{"shape":"SetEndpointAttributesInput"},
931
408
  "errors":[
932
- {
933
- "shape":"InvalidParameterException",
934
- "error":{
935
- "code":"InvalidParameter",
936
- "httpStatusCode":400,
937
- "senderFault":true
938
- },
939
- "exception":true
940
- },
941
- {
942
- "shape":"InternalErrorException",
943
- "error":{
944
- "code":"InternalError",
945
- "httpStatusCode":500
946
- },
947
- "exception":true,
948
- "fault":true
949
- },
950
- {
951
- "shape":"AuthorizationErrorException",
952
- "error":{
953
- "code":"AuthorizationError",
954
- "httpStatusCode":403,
955
- "senderFault":true
956
- },
957
- "exception":true
958
- },
959
- {
960
- "shape":"NotFoundException",
961
- "error":{
962
- "code":"NotFound",
963
- "httpStatusCode":404,
964
- "senderFault":true
965
- },
966
- "exception":true
967
- }
409
+ {"shape":"InvalidParameterException"},
410
+ {"shape":"InternalErrorException"},
411
+ {"shape":"AuthorizationErrorException"},
412
+ {"shape":"NotFoundException"}
968
413
  ]
969
414
  },
970
415
  "SetPlatformApplicationAttributes":{
@@ -975,42 +420,27 @@
975
420
  },
976
421
  "input":{"shape":"SetPlatformApplicationAttributesInput"},
977
422
  "errors":[
978
- {
979
- "shape":"InvalidParameterException",
980
- "error":{
981
- "code":"InvalidParameter",
982
- "httpStatusCode":400,
983
- "senderFault":true
984
- },
985
- "exception":true
986
- },
987
- {
988
- "shape":"InternalErrorException",
989
- "error":{
990
- "code":"InternalError",
991
- "httpStatusCode":500
992
- },
993
- "exception":true,
994
- "fault":true
995
- },
996
- {
997
- "shape":"AuthorizationErrorException",
998
- "error":{
999
- "code":"AuthorizationError",
1000
- "httpStatusCode":403,
1001
- "senderFault":true
1002
- },
1003
- "exception":true
1004
- },
1005
- {
1006
- "shape":"NotFoundException",
1007
- "error":{
1008
- "code":"NotFound",
1009
- "httpStatusCode":404,
1010
- "senderFault":true
1011
- },
1012
- "exception":true
1013
- }
423
+ {"shape":"InvalidParameterException"},
424
+ {"shape":"InternalErrorException"},
425
+ {"shape":"AuthorizationErrorException"},
426
+ {"shape":"NotFoundException"}
427
+ ]
428
+ },
429
+ "SetSMSAttributes":{
430
+ "name":"SetSMSAttributes",
431
+ "http":{
432
+ "method":"POST",
433
+ "requestUri":"/"
434
+ },
435
+ "input":{"shape":"SetSMSAttributesInput"},
436
+ "output":{
437
+ "shape":"SetSMSAttributesResponse",
438
+ "resultWrapper":"SetSMSAttributesResult"
439
+ },
440
+ "errors":[
441
+ {"shape":"InvalidParameterException"},
442
+ {"shape":"ThrottledException"},
443
+ {"shape":"InternalErrorException"}
1014
444
  ]
1015
445
  },
1016
446
  "SetSubscriptionAttributes":{
@@ -1021,42 +451,10 @@
1021
451
  },
1022
452
  "input":{"shape":"SetSubscriptionAttributesInput"},
1023
453
  "errors":[
1024
- {
1025
- "shape":"InvalidParameterException",
1026
- "error":{
1027
- "code":"InvalidParameter",
1028
- "httpStatusCode":400,
1029
- "senderFault":true
1030
- },
1031
- "exception":true
1032
- },
1033
- {
1034
- "shape":"InternalErrorException",
1035
- "error":{
1036
- "code":"InternalError",
1037
- "httpStatusCode":500
1038
- },
1039
- "exception":true,
1040
- "fault":true
1041
- },
1042
- {
1043
- "shape":"NotFoundException",
1044
- "error":{
1045
- "code":"NotFound",
1046
- "httpStatusCode":404,
1047
- "senderFault":true
1048
- },
1049
- "exception":true
1050
- },
1051
- {
1052
- "shape":"AuthorizationErrorException",
1053
- "error":{
1054
- "code":"AuthorizationError",
1055
- "httpStatusCode":403,
1056
- "senderFault":true
1057
- },
1058
- "exception":true
1059
- }
454
+ {"shape":"InvalidParameterException"},
455
+ {"shape":"InternalErrorException"},
456
+ {"shape":"NotFoundException"},
457
+ {"shape":"AuthorizationErrorException"}
1060
458
  ]
1061
459
  },
1062
460
  "SetTopicAttributes":{
@@ -1067,42 +465,10 @@
1067
465
  },
1068
466
  "input":{"shape":"SetTopicAttributesInput"},
1069
467
  "errors":[
1070
- {
1071
- "shape":"InvalidParameterException",
1072
- "error":{
1073
- "code":"InvalidParameter",
1074
- "httpStatusCode":400,
1075
- "senderFault":true
1076
- },
1077
- "exception":true
1078
- },
1079
- {
1080
- "shape":"InternalErrorException",
1081
- "error":{
1082
- "code":"InternalError",
1083
- "httpStatusCode":500
1084
- },
1085
- "exception":true,
1086
- "fault":true
1087
- },
1088
- {
1089
- "shape":"NotFoundException",
1090
- "error":{
1091
- "code":"NotFound",
1092
- "httpStatusCode":404,
1093
- "senderFault":true
1094
- },
1095
- "exception":true
1096
- },
1097
- {
1098
- "shape":"AuthorizationErrorException",
1099
- "error":{
1100
- "code":"AuthorizationError",
1101
- "httpStatusCode":403,
1102
- "senderFault":true
1103
- },
1104
- "exception":true
1105
- }
468
+ {"shape":"InvalidParameterException"},
469
+ {"shape":"InternalErrorException"},
470
+ {"shape":"NotFoundException"},
471
+ {"shape":"AuthorizationErrorException"}
1106
472
  ]
1107
473
  },
1108
474
  "Subscribe":{
@@ -1117,51 +483,11 @@
1117
483
  "resultWrapper":"SubscribeResult"
1118
484
  },
1119
485
  "errors":[
1120
- {
1121
- "shape":"SubscriptionLimitExceededException",
1122
- "error":{
1123
- "code":"SubscriptionLimitExceeded",
1124
- "httpStatusCode":403,
1125
- "senderFault":true
1126
- },
1127
- "exception":true
1128
- },
1129
- {
1130
- "shape":"InvalidParameterException",
1131
- "error":{
1132
- "code":"InvalidParameter",
1133
- "httpStatusCode":400,
1134
- "senderFault":true
1135
- },
1136
- "exception":true
1137
- },
1138
- {
1139
- "shape":"InternalErrorException",
1140
- "error":{
1141
- "code":"InternalError",
1142
- "httpStatusCode":500
1143
- },
1144
- "exception":true,
1145
- "fault":true
1146
- },
1147
- {
1148
- "shape":"NotFoundException",
1149
- "error":{
1150
- "code":"NotFound",
1151
- "httpStatusCode":404,
1152
- "senderFault":true
1153
- },
1154
- "exception":true
1155
- },
1156
- {
1157
- "shape":"AuthorizationErrorException",
1158
- "error":{
1159
- "code":"AuthorizationError",
1160
- "httpStatusCode":403,
1161
- "senderFault":true
1162
- },
1163
- "exception":true
1164
- }
486
+ {"shape":"SubscriptionLimitExceededException"},
487
+ {"shape":"InvalidParameterException"},
488
+ {"shape":"InternalErrorException"},
489
+ {"shape":"NotFoundException"},
490
+ {"shape":"AuthorizationErrorException"}
1165
491
  ]
1166
492
  },
1167
493
  "Unsubscribe":{
@@ -1172,42 +498,10 @@
1172
498
  },
1173
499
  "input":{"shape":"UnsubscribeInput"},
1174
500
  "errors":[
1175
- {
1176
- "shape":"InvalidParameterException",
1177
- "error":{
1178
- "code":"InvalidParameter",
1179
- "httpStatusCode":400,
1180
- "senderFault":true
1181
- },
1182
- "exception":true
1183
- },
1184
- {
1185
- "shape":"InternalErrorException",
1186
- "error":{
1187
- "code":"InternalError",
1188
- "httpStatusCode":500
1189
- },
1190
- "exception":true,
1191
- "fault":true
1192
- },
1193
- {
1194
- "shape":"AuthorizationErrorException",
1195
- "error":{
1196
- "code":"AuthorizationError",
1197
- "httpStatusCode":403,
1198
- "senderFault":true
1199
- },
1200
- "exception":true
1201
- },
1202
- {
1203
- "shape":"NotFoundException",
1204
- "error":{
1205
- "code":"NotFound",
1206
- "httpStatusCode":404,
1207
- "senderFault":true
1208
- },
1209
- "exception":true
1210
- }
501
+ {"shape":"InvalidParameterException"},
502
+ {"shape":"InternalErrorException"},
503
+ {"shape":"AuthorizationErrorException"},
504
+ {"shape":"NotFoundException"}
1211
505
  ]
1212
506
  }
1213
507
  },
@@ -1244,6 +538,19 @@
1244
538
  "exception":true
1245
539
  },
1246
540
  "Binary":{"type":"blob"},
541
+ "CheckIfPhoneNumberIsOptedOutInput":{
542
+ "type":"structure",
543
+ "required":["phoneNumber"],
544
+ "members":{
545
+ "phoneNumber":{"shape":"PhoneNumber"}
546
+ }
547
+ },
548
+ "CheckIfPhoneNumberIsOptedOutResponse":{
549
+ "type":"structure",
550
+ "members":{
551
+ "isOptedOut":{"shape":"boolean"}
552
+ }
553
+ },
1247
554
  "ConfirmSubscriptionInput":{
1248
555
  "type":"structure",
1249
556
  "required":[
@@ -1383,6 +690,18 @@
1383
690
  "Attributes":{"shape":"MapStringToString"}
1384
691
  }
1385
692
  },
693
+ "GetSMSAttributesInput":{
694
+ "type":"structure",
695
+ "members":{
696
+ "attributes":{"shape":"ListString"}
697
+ }
698
+ },
699
+ "GetSMSAttributesResponse":{
700
+ "type":"structure",
701
+ "members":{
702
+ "attributes":{"shape":"MapStringToString"}
703
+ }
704
+ },
1386
705
  "GetSubscriptionAttributesInput":{
1387
706
  "type":"structure",
1388
707
  "required":["SubscriptionArn"],
@@ -1468,6 +787,19 @@
1468
787
  "type":"list",
1469
788
  "member":{"shape":"PlatformApplication"}
1470
789
  },
790
+ "ListPhoneNumbersOptedOutInput":{
791
+ "type":"structure",
792
+ "members":{
793
+ "nextToken":{"shape":"string"}
794
+ }
795
+ },
796
+ "ListPhoneNumbersOptedOutResponse":{
797
+ "type":"structure",
798
+ "members":{
799
+ "phoneNumbers":{"shape":"PhoneNumberList"},
800
+ "nextToken":{"shape":"string"}
801
+ }
802
+ },
1471
803
  "ListPlatformApplicationsInput":{
1472
804
  "type":"structure",
1473
805
  "members":{
@@ -1481,6 +813,10 @@
1481
813
  "NextToken":{"shape":"String"}
1482
814
  }
1483
815
  },
816
+ "ListString":{
817
+ "type":"list",
818
+ "member":{"shape":"String"}
819
+ },
1484
820
  "ListSubscriptionsByTopicInput":{
1485
821
  "type":"structure",
1486
822
  "required":["TopicArn"],
@@ -1559,6 +895,23 @@
1559
895
  },
1560
896
  "exception":true
1561
897
  },
898
+ "OptInPhoneNumberInput":{
899
+ "type":"structure",
900
+ "required":["phoneNumber"],
901
+ "members":{
902
+ "phoneNumber":{"shape":"PhoneNumber"}
903
+ }
904
+ },
905
+ "OptInPhoneNumberResponse":{
906
+ "type":"structure",
907
+ "members":{
908
+ }
909
+ },
910
+ "PhoneNumber":{"type":"string"},
911
+ "PhoneNumberList":{
912
+ "type":"list",
913
+ "member":{"shape":"PhoneNumber"}
914
+ },
1562
915
  "PlatformApplication":{
1563
916
  "type":"structure",
1564
917
  "members":{
@@ -1584,6 +937,7 @@
1584
937
  "members":{
1585
938
  "TopicArn":{"shape":"topicARN"},
1586
939
  "TargetArn":{"shape":"String"},
940
+ "PhoneNumber":{"shape":"String"},
1587
941
  "Message":{"shape":"message"},
1588
942
  "Subject":{"shape":"subject"},
1589
943
  "MessageStructure":{"shape":"messageStructure"},
@@ -1629,6 +983,18 @@
1629
983
  "Attributes":{"shape":"MapStringToString"}
1630
984
  }
1631
985
  },
986
+ "SetSMSAttributesInput":{
987
+ "type":"structure",
988
+ "required":["attributes"],
989
+ "members":{
990
+ "attributes":{"shape":"MapStringToString"}
991
+ }
992
+ },
993
+ "SetSMSAttributesResponse":{
994
+ "type":"structure",
995
+ "members":{
996
+ }
997
+ },
1632
998
  "SetSubscriptionAttributesInput":{
1633
999
  "type":"structure",
1634
1000
  "required":[
@@ -1703,6 +1069,18 @@
1703
1069
  "type":"list",
1704
1070
  "member":{"shape":"Subscription"}
1705
1071
  },
1072
+ "ThrottledException":{
1073
+ "type":"structure",
1074
+ "members":{
1075
+ "message":{"shape":"string"}
1076
+ },
1077
+ "error":{
1078
+ "code":"Throttled",
1079
+ "httpStatusCode":429,
1080
+ "senderFault":true
1081
+ },
1082
+ "exception":true
1083
+ },
1706
1084
  "Topic":{
1707
1085
  "type":"structure",
1708
1086
  "members":{
@@ -1742,6 +1120,7 @@
1742
1120
  "attributeName":{"type":"string"},
1743
1121
  "attributeValue":{"type":"string"},
1744
1122
  "authenticateOnUnsubscribe":{"type":"string"},
1123
+ "boolean":{"type":"boolean"},
1745
1124
  "delegate":{"type":"string"},
1746
1125
  "endpoint":{"type":"string"},
1747
1126
  "label":{"type":"string"},