aws-sdk-core 2.6.7 → 2.6.9

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: 028e18c0b15cd244ef559291075108f883c20345
4
- data.tar.gz: 2eee48978e4baaf502e3fe8450a84757148a8d99
3
+ metadata.gz: dd221db596b66bd6b45c6a738579f1f2cb7622bc
4
+ data.tar.gz: 8683ed13d316ebf1371c69a767a58dafe2671212
5
5
  SHA512:
6
- metadata.gz: 4170183fe1a3d77051e784ba00aee5acca29609c9517d57a923449ccbdaa1958b26e60912f97360296521c7db3d00f1804672f965ca300276f9c63489fb4215d
7
- data.tar.gz: 2d650252a014909a905ddc245cb9e26ec6c520c163e5c8f63182433503b749196e5c5a41091b22485550c8985a1adffa34b82a70eebce8d751e4d62ca969def4
6
+ metadata.gz: fdb02b1bec71631d2893e0cdd6204df640edc20ecef0daffa6c5125ebcf66a8a7604796371b896d24ecaf75e285013ad1b4631cf531fadfcea38cf52c6c28aea
7
+ data.tar.gz: 3d7d4823eb513ecaabeb6d1703b013f6eca8bd43a2e325cb3f414c042abb633553c55e18fd27d825c360f3d9d690dd380b1184f0919fd7e2f00416f79805db7e
@@ -65,6 +65,19 @@
65
65
  {"shape":"InvalidArnException"}
66
66
  ]
67
67
  },
68
+ "ImportCertificate":{
69
+ "name":"ImportCertificate",
70
+ "http":{
71
+ "method":"POST",
72
+ "requestUri":"/"
73
+ },
74
+ "input":{"shape":"ImportCertificateRequest"},
75
+ "output":{"shape":"ImportCertificateResponse"},
76
+ "errors":[
77
+ {"shape":"ResourceNotFoundException"},
78
+ {"shape":"LimitExceededException"}
79
+ ]
80
+ },
68
81
  "ListCertificates":{
69
82
  "name":"ListCertificates",
70
83
  "http":{
@@ -148,16 +161,26 @@
148
161
  },
149
162
  "CertificateBody":{
150
163
  "type":"string",
151
- "max":524288,
164
+ "max":32768,
152
165
  "min":1,
153
166
  "pattern":"-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}(\\u000D?\\u000A)?"
154
167
  },
168
+ "CertificateBodyBlob":{
169
+ "type":"blob",
170
+ "max":32768,
171
+ "min":1
172
+ },
155
173
  "CertificateChain":{
156
174
  "type":"string",
157
175
  "max":2097152,
158
176
  "min":1,
159
177
  "pattern":"(-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}\\u000D?\\u000A)*-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}(\\u000D?\\u000A)?"
160
178
  },
179
+ "CertificateChainBlob":{
180
+ "type":"blob",
181
+ "max":2097152,
182
+ "min":1
183
+ },
161
184
  "CertificateDetail":{
162
185
  "type":"structure",
163
186
  "members":{
@@ -170,6 +193,7 @@
170
193
  "Issuer":{"shape":"String"},
171
194
  "CreatedAt":{"shape":"TStamp"},
172
195
  "IssuedAt":{"shape":"TStamp"},
196
+ "ImportedAt":{"shape":"TStamp"},
173
197
  "Status":{"shape":"CertificateStatus"},
174
198
  "RevokedAt":{"shape":"TStamp"},
175
199
  "RevocationReason":{"shape":"RevocationReason"},
@@ -178,7 +202,8 @@
178
202
  "KeyAlgorithm":{"shape":"KeyAlgorithm"},
179
203
  "SignatureAlgorithm":{"shape":"String"},
180
204
  "InUseBy":{"shape":"InUseList"},
181
- "FailureReason":{"shape":"FailureReason"}
205
+ "FailureReason":{"shape":"FailureReason"},
206
+ "Type":{"shape":"CertificateType"}
182
207
  }
183
208
  },
184
209
  "CertificateStatus":{
@@ -208,6 +233,13 @@
208
233
  "type":"list",
209
234
  "member":{"shape":"CertificateSummary"}
210
235
  },
236
+ "CertificateType":{
237
+ "type":"string",
238
+ "enum":[
239
+ "IMPORTED",
240
+ "AMAZON_ISSUED"
241
+ ]
242
+ },
211
243
  "DeleteCertificateRequest":{
212
244
  "type":"structure",
213
245
  "required":["CertificateArn"],
@@ -302,6 +334,25 @@
302
334
  "min":1,
303
335
  "pattern":"\\w+"
304
336
  },
337
+ "ImportCertificateRequest":{
338
+ "type":"structure",
339
+ "required":[
340
+ "Certificate",
341
+ "PrivateKey"
342
+ ],
343
+ "members":{
344
+ "CertificateArn":{"shape":"Arn"},
345
+ "Certificate":{"shape":"CertificateBodyBlob"},
346
+ "PrivateKey":{"shape":"PrivateKeyBlob"},
347
+ "CertificateChain":{"shape":"CertificateChainBlob"}
348
+ }
349
+ },
350
+ "ImportCertificateResponse":{
351
+ "type":"structure",
352
+ "members":{
353
+ "CertificateArn":{"shape":"Arn"}
354
+ }
355
+ },
305
356
  "InUseList":{
306
357
  "type":"list",
307
358
  "member":{"shape":"String"}
@@ -338,6 +389,7 @@
338
389
  "type":"string",
339
390
  "enum":[
340
391
  "RSA_2048",
392
+ "RSA_1024",
341
393
  "EC_prime256v1"
342
394
  ]
343
395
  },
@@ -387,6 +439,12 @@
387
439
  "min":1,
388
440
  "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]*"
389
441
  },
442
+ "PrivateKeyBlob":{
443
+ "type":"blob",
444
+ "max":524288,
445
+ "min":1,
446
+ "sensitive":true
447
+ },
390
448
  "RemoveTagsFromCertificateRequest":{
391
449
  "type":"structure",
392
450
  "required":[
@@ -577,6 +577,7 @@
577
577
  "ApplicationName":{"shape":"ApplicationName"},
578
578
  "Description":{"shape":"Description"},
579
579
  "VersionLabel":{"shape":"VersionLabel"},
580
+ "SourceBuildInformation":{"shape":"SourceBuildInformation"},
580
581
  "SourceBundle":{"shape":"S3Location"},
581
582
  "DateCreated":{"shape":"CreationDate"},
582
583
  "DateUpdated":{"shape":"UpdateDate"},
@@ -596,7 +597,8 @@
596
597
  "ApplicationVersionDescriptionsMessage":{
597
598
  "type":"structure",
598
599
  "members":{
599
- "ApplicationVersions":{"shape":"ApplicationVersionDescriptionList"}
600
+ "ApplicationVersions":{"shape":"ApplicationVersionDescriptionList"},
601
+ "NextToken":{"shape":"Token"}
600
602
  }
601
603
  },
602
604
  "ApplicationVersionProccess":{"type":"boolean"},
@@ -811,6 +813,7 @@
811
813
  "ApplicationName":{"shape":"ApplicationName"},
812
814
  "VersionLabel":{"shape":"VersionLabel"},
813
815
  "Description":{"shape":"Description"},
816
+ "SourceBuildInformation":{"shape":"SourceBuildInformation"},
814
817
  "SourceBundle":{"shape":"S3Location"},
815
818
  "AutoCreateApplication":{"shape":"AutoCreateApplication"},
816
819
  "Process":{"shape":"ApplicationVersionProccess"}
@@ -924,7 +927,9 @@
924
927
  "type":"structure",
925
928
  "members":{
926
929
  "ApplicationName":{"shape":"ApplicationName"},
927
- "VersionLabels":{"shape":"VersionLabelsList"}
930
+ "VersionLabels":{"shape":"VersionLabelsList"},
931
+ "MaxRecords":{"shape":"MaxRecords"},
932
+ "NextToken":{"shape":"Token"}
928
933
  }
929
934
  },
930
935
  "DescribeApplicationsMessage":{
@@ -1651,6 +1656,19 @@
1651
1656
  "type":"string",
1652
1657
  "max":100
1653
1658
  },
1659
+ "SourceBuildInformation":{
1660
+ "type":"structure",
1661
+ "required":[
1662
+ "SourceType",
1663
+ "SourceRepository",
1664
+ "SourceLocation"
1665
+ ],
1666
+ "members":{
1667
+ "SourceType":{"shape":"SourceType"},
1668
+ "SourceRepository":{"shape":"SourceRepository"},
1669
+ "SourceLocation":{"shape":"SourceLocation"}
1670
+ }
1671
+ },
1654
1672
  "SourceBundleDeletionException":{
1655
1673
  "type":"structure",
1656
1674
  "members":{
@@ -1669,6 +1687,20 @@
1669
1687
  "TemplateName":{"shape":"ConfigurationTemplateName"}
1670
1688
  }
1671
1689
  },
1690
+ "SourceLocation":{
1691
+ "type":"string",
1692
+ "max":255,
1693
+ "min":3,
1694
+ "pattern":".+/.+"
1695
+ },
1696
+ "SourceRepository":{
1697
+ "type":"string",
1698
+ "enum":["CodeCommit"]
1699
+ },
1700
+ "SourceType":{
1701
+ "type":"string",
1702
+ "enum":["Git"]
1703
+ },
1672
1704
  "StatusCodes":{
1673
1705
  "type":"structure",
1674
1706
  "members":{
@@ -4,10 +4,10 @@
4
4
  "apiVersion":"2015-10-01",
5
5
  "endpointPrefix":"gamelift",
6
6
  "jsonVersion":"1.1",
7
+ "protocol":"json",
7
8
  "serviceFullName":"Amazon GameLift",
8
9
  "signatureVersion":"v4",
9
- "targetPrefix":"GameLift",
10
- "protocol":"json"
10
+ "targetPrefix":"GameLift"
11
11
  },
12
12
  "operations":{
13
13
  "CreateAlias":{
@@ -19,27 +19,11 @@
19
19
  "input":{"shape":"CreateAliasInput"},
20
20
  "output":{"shape":"CreateAliasOutput"},
21
21
  "errors":[
22
- {
23
- "shape":"UnauthorizedException",
24
- "exception":true
25
- },
26
- {
27
- "shape":"InvalidRequestException",
28
- "exception":true
29
- },
30
- {
31
- "shape":"ConflictException",
32
- "exception":true
33
- },
34
- {
35
- "shape":"InternalServiceException",
36
- "exception":true,
37
- "fault":true
38
- },
39
- {
40
- "shape":"LimitExceededException",
41
- "exception":true
42
- }
22
+ {"shape":"UnauthorizedException"},
23
+ {"shape":"InvalidRequestException"},
24
+ {"shape":"ConflictException"},
25
+ {"shape":"InternalServiceException"},
26
+ {"shape":"LimitExceededException"}
43
27
  ]
44
28
  },
45
29
  "CreateBuild":{
@@ -51,23 +35,10 @@
51
35
  "input":{"shape":"CreateBuildInput"},
52
36
  "output":{"shape":"CreateBuildOutput"},
53
37
  "errors":[
54
- {
55
- "shape":"UnauthorizedException",
56
- "exception":true
57
- },
58
- {
59
- "shape":"InvalidRequestException",
60
- "exception":true
61
- },
62
- {
63
- "shape":"ConflictException",
64
- "exception":true
65
- },
66
- {
67
- "shape":"InternalServiceException",
68
- "exception":true,
69
- "fault":true
70
- }
38
+ {"shape":"UnauthorizedException"},
39
+ {"shape":"InvalidRequestException"},
40
+ {"shape":"ConflictException"},
41
+ {"shape":"InternalServiceException"}
71
42
  ]
72
43
  },
73
44
  "CreateFleet":{
@@ -79,31 +50,12 @@
79
50
  "input":{"shape":"CreateFleetInput"},
80
51
  "output":{"shape":"CreateFleetOutput"},
81
52
  "errors":[
82
- {
83
- "shape":"InternalServiceException",
84
- "exception":true,
85
- "fault":true
86
- },
87
- {
88
- "shape":"NotFoundException",
89
- "exception":true
90
- },
91
- {
92
- "shape":"ConflictException",
93
- "exception":true
94
- },
95
- {
96
- "shape":"LimitExceededException",
97
- "exception":true
98
- },
99
- {
100
- "shape":"InvalidRequestException",
101
- "exception":true
102
- },
103
- {
104
- "shape":"UnauthorizedException",
105
- "exception":true
106
- }
53
+ {"shape":"InternalServiceException"},
54
+ {"shape":"NotFoundException"},
55
+ {"shape":"ConflictException"},
56
+ {"shape":"LimitExceededException"},
57
+ {"shape":"InvalidRequestException"},
58
+ {"shape":"UnauthorizedException"}
107
59
  ]
108
60
  },
109
61
  "CreateGameSession":{
@@ -115,39 +67,16 @@
115
67
  "input":{"shape":"CreateGameSessionInput"},
116
68
  "output":{"shape":"CreateGameSessionOutput"},
117
69
  "errors":[
118
- {
119
- "shape":"ConflictException",
120
- "exception":true
121
- },
122
- {
123
- "shape":"InternalServiceException",
124
- "exception":true,
125
- "fault":true
126
- },
127
- {
128
- "shape":"UnauthorizedException",
129
- "exception":true
130
- },
131
- {
132
- "shape":"InvalidFleetStatusException",
133
- "exception":true
134
- },
135
- {
136
- "shape":"TerminalRoutingStrategyException",
137
- "exception":true
138
- },
139
- {
140
- "shape":"InvalidRequestException",
141
- "exception":true
142
- },
143
- {
144
- "shape":"NotFoundException",
145
- "exception":true
146
- },
147
- {
148
- "shape":"FleetCapacityExceededException",
149
- "exception":true
150
- }
70
+ {"shape":"ConflictException"},
71
+ {"shape":"InternalServiceException"},
72
+ {"shape":"UnauthorizedException"},
73
+ {"shape":"InvalidFleetStatusException"},
74
+ {"shape":"TerminalRoutingStrategyException"},
75
+ {"shape":"InvalidRequestException"},
76
+ {"shape":"NotFoundException"},
77
+ {"shape":"FleetCapacityExceededException"},
78
+ {"shape":"LimitExceededException"},
79
+ {"shape":"IdempotentParameterMismatchException"}
151
80
  ]
152
81
  },
153
82
  "CreatePlayerSession":{
@@ -159,35 +88,13 @@
159
88
  "input":{"shape":"CreatePlayerSessionInput"},
160
89
  "output":{"shape":"CreatePlayerSessionOutput"},
161
90
  "errors":[
162
- {
163
- "shape":"InternalServiceException",
164
- "exception":true,
165
- "fault":true
166
- },
167
- {
168
- "shape":"UnauthorizedException",
169
- "exception":true
170
- },
171
- {
172
- "shape":"InvalidGameSessionStatusException",
173
- "exception":true
174
- },
175
- {
176
- "shape":"GameSessionFullException",
177
- "exception":true
178
- },
179
- {
180
- "shape":"TerminalRoutingStrategyException",
181
- "exception":true
182
- },
183
- {
184
- "shape":"InvalidRequestException",
185
- "exception":true
186
- },
187
- {
188
- "shape":"NotFoundException",
189
- "exception":true
190
- }
91
+ {"shape":"InternalServiceException"},
92
+ {"shape":"UnauthorizedException"},
93
+ {"shape":"InvalidGameSessionStatusException"},
94
+ {"shape":"GameSessionFullException"},
95
+ {"shape":"TerminalRoutingStrategyException"},
96
+ {"shape":"InvalidRequestException"},
97
+ {"shape":"NotFoundException"}
191
98
  ]
192
99
  },
193
100
  "CreatePlayerSessions":{
@@ -199,35 +106,13 @@
199
106
  "input":{"shape":"CreatePlayerSessionsInput"},
200
107
  "output":{"shape":"CreatePlayerSessionsOutput"},
201
108
  "errors":[
202
- {
203
- "shape":"InternalServiceException",
204
- "exception":true,
205
- "fault":true
206
- },
207
- {
208
- "shape":"UnauthorizedException",
209
- "exception":true
210
- },
211
- {
212
- "shape":"InvalidGameSessionStatusException",
213
- "exception":true
214
- },
215
- {
216
- "shape":"GameSessionFullException",
217
- "exception":true
218
- },
219
- {
220
- "shape":"TerminalRoutingStrategyException",
221
- "exception":true
222
- },
223
- {
224
- "shape":"InvalidRequestException",
225
- "exception":true
226
- },
227
- {
228
- "shape":"NotFoundException",
229
- "exception":true
230
- }
109
+ {"shape":"InternalServiceException"},
110
+ {"shape":"UnauthorizedException"},
111
+ {"shape":"InvalidGameSessionStatusException"},
112
+ {"shape":"GameSessionFullException"},
113
+ {"shape":"TerminalRoutingStrategyException"},
114
+ {"shape":"InvalidRequestException"},
115
+ {"shape":"NotFoundException"}
231
116
  ]
232
117
  },
233
118
  "DeleteAlias":{
@@ -238,23 +123,10 @@
238
123
  },
239
124
  "input":{"shape":"DeleteAliasInput"},
240
125
  "errors":[
241
- {
242
- "shape":"UnauthorizedException",
243
- "exception":true
244
- },
245
- {
246
- "shape":"NotFoundException",
247
- "exception":true
248
- },
249
- {
250
- "shape":"InvalidRequestException",
251
- "exception":true
252
- },
253
- {
254
- "shape":"InternalServiceException",
255
- "exception":true,
256
- "fault":true
257
- }
126
+ {"shape":"UnauthorizedException"},
127
+ {"shape":"NotFoundException"},
128
+ {"shape":"InvalidRequestException"},
129
+ {"shape":"InternalServiceException"}
258
130
  ]
259
131
  },
260
132
  "DeleteBuild":{
@@ -265,23 +137,10 @@
265
137
  },
266
138
  "input":{"shape":"DeleteBuildInput"},
267
139
  "errors":[
268
- {
269
- "shape":"UnauthorizedException",
270
- "exception":true
271
- },
272
- {
273
- "shape":"NotFoundException",
274
- "exception":true
275
- },
276
- {
277
- "shape":"InternalServiceException",
278
- "exception":true,
279
- "fault":true
280
- },
281
- {
282
- "shape":"InvalidRequestException",
283
- "exception":true
284
- }
140
+ {"shape":"UnauthorizedException"},
141
+ {"shape":"NotFoundException"},
142
+ {"shape":"InternalServiceException"},
143
+ {"shape":"InvalidRequestException"}
285
144
  ]
286
145
  },
287
146
  "DeleteFleet":{
@@ -292,27 +151,11 @@
292
151
  },
293
152
  "input":{"shape":"DeleteFleetInput"},
294
153
  "errors":[
295
- {
296
- "shape":"NotFoundException",
297
- "exception":true
298
- },
299
- {
300
- "shape":"InternalServiceException",
301
- "exception":true,
302
- "fault":true
303
- },
304
- {
305
- "shape":"InvalidFleetStatusException",
306
- "exception":true
307
- },
308
- {
309
- "shape":"UnauthorizedException",
310
- "exception":true
311
- },
312
- {
313
- "shape":"InvalidRequestException",
314
- "exception":true
315
- }
154
+ {"shape":"NotFoundException"},
155
+ {"shape":"InternalServiceException"},
156
+ {"shape":"InvalidFleetStatusException"},
157
+ {"shape":"UnauthorizedException"},
158
+ {"shape":"InvalidRequestException"}
316
159
  ]
317
160
  },
318
161
  "DeleteScalingPolicy":{
@@ -323,23 +166,10 @@
323
166
  },
324
167
  "input":{"shape":"DeleteScalingPolicyInput"},
325
168
  "errors":[
326
- {
327
- "shape":"InternalServiceException",
328
- "exception":true,
329
- "fault":true
330
- },
331
- {
332
- "shape":"InvalidRequestException",
333
- "exception":true
334
- },
335
- {
336
- "shape":"UnauthorizedException",
337
- "exception":true
338
- },
339
- {
340
- "shape":"NotFoundException",
341
- "exception":true
342
- }
169
+ {"shape":"InternalServiceException"},
170
+ {"shape":"InvalidRequestException"},
171
+ {"shape":"UnauthorizedException"},
172
+ {"shape":"NotFoundException"}
343
173
  ]
344
174
  },
345
175
  "DescribeAlias":{
@@ -351,23 +181,10 @@
351
181
  "input":{"shape":"DescribeAliasInput"},
352
182
  "output":{"shape":"DescribeAliasOutput"},
353
183
  "errors":[
354
- {
355
- "shape":"UnauthorizedException",
356
- "exception":true
357
- },
358
- {
359
- "shape":"InvalidRequestException",
360
- "exception":true
361
- },
362
- {
363
- "shape":"NotFoundException",
364
- "exception":true
365
- },
366
- {
367
- "shape":"InternalServiceException",
368
- "exception":true,
369
- "fault":true
370
- }
184
+ {"shape":"UnauthorizedException"},
185
+ {"shape":"InvalidRequestException"},
186
+ {"shape":"NotFoundException"},
187
+ {"shape":"InternalServiceException"}
371
188
  ]
372
189
  },
373
190
  "DescribeBuild":{
@@ -379,23 +196,10 @@
379
196
  "input":{"shape":"DescribeBuildInput"},
380
197
  "output":{"shape":"DescribeBuildOutput"},
381
198
  "errors":[
382
- {
383
- "shape":"UnauthorizedException",
384
- "exception":true
385
- },
386
- {
387
- "shape":"InvalidRequestException",
388
- "exception":true
389
- },
390
- {
391
- "shape":"NotFoundException",
392
- "exception":true
393
- },
394
- {
395
- "shape":"InternalServiceException",
396
- "exception":true,
397
- "fault":true
398
- }
199
+ {"shape":"UnauthorizedException"},
200
+ {"shape":"InvalidRequestException"},
201
+ {"shape":"NotFoundException"},
202
+ {"shape":"InternalServiceException"}
399
203
  ]
400
204
  },
401
205
  "DescribeEC2InstanceLimits":{
@@ -407,19 +211,9 @@
407
211
  "input":{"shape":"DescribeEC2InstanceLimitsInput"},
408
212
  "output":{"shape":"DescribeEC2InstanceLimitsOutput"},
409
213
  "errors":[
410
- {
411
- "shape":"InvalidRequestException",
412
- "exception":true
413
- },
414
- {
415
- "shape":"InternalServiceException",
416
- "exception":true,
417
- "fault":true
418
- },
419
- {
420
- "shape":"UnauthorizedException",
421
- "exception":true
422
- }
214
+ {"shape":"InvalidRequestException"},
215
+ {"shape":"InternalServiceException"},
216
+ {"shape":"UnauthorizedException"}
423
217
  ]
424
218
  },
425
219
  "DescribeFleetAttributes":{
@@ -431,23 +225,10 @@
431
225
  "input":{"shape":"DescribeFleetAttributesInput"},
432
226
  "output":{"shape":"DescribeFleetAttributesOutput"},
433
227
  "errors":[
434
- {
435
- "shape":"InternalServiceException",
436
- "exception":true,
437
- "fault":true
438
- },
439
- {
440
- "shape":"NotFoundException",
441
- "exception":true
442
- },
443
- {
444
- "shape":"InvalidRequestException",
445
- "exception":true
446
- },
447
- {
448
- "shape":"UnauthorizedException",
449
- "exception":true
450
- }
228
+ {"shape":"InternalServiceException"},
229
+ {"shape":"NotFoundException"},
230
+ {"shape":"InvalidRequestException"},
231
+ {"shape":"UnauthorizedException"}
451
232
  ]
452
233
  },
453
234
  "DescribeFleetCapacity":{
@@ -459,23 +240,10 @@
459
240
  "input":{"shape":"DescribeFleetCapacityInput"},
460
241
  "output":{"shape":"DescribeFleetCapacityOutput"},
461
242
  "errors":[
462
- {
463
- "shape":"InternalServiceException",
464
- "exception":true,
465
- "fault":true
466
- },
467
- {
468
- "shape":"NotFoundException",
469
- "exception":true
470
- },
471
- {
472
- "shape":"InvalidRequestException",
473
- "exception":true
474
- },
475
- {
476
- "shape":"UnauthorizedException",
477
- "exception":true
478
- }
243
+ {"shape":"InternalServiceException"},
244
+ {"shape":"NotFoundException"},
245
+ {"shape":"InvalidRequestException"},
246
+ {"shape":"UnauthorizedException"}
479
247
  ]
480
248
  },
481
249
  "DescribeFleetEvents":{
@@ -487,23 +255,10 @@
487
255
  "input":{"shape":"DescribeFleetEventsInput"},
488
256
  "output":{"shape":"DescribeFleetEventsOutput"},
489
257
  "errors":[
490
- {
491
- "shape":"NotFoundException",
492
- "exception":true
493
- },
494
- {
495
- "shape":"InternalServiceException",
496
- "exception":true,
497
- "fault":true
498
- },
499
- {
500
- "shape":"UnauthorizedException",
501
- "exception":true
502
- },
503
- {
504
- "shape":"InvalidRequestException",
505
- "exception":true
506
- }
258
+ {"shape":"NotFoundException"},
259
+ {"shape":"InternalServiceException"},
260
+ {"shape":"UnauthorizedException"},
261
+ {"shape":"InvalidRequestException"}
507
262
  ]
508
263
  },
509
264
  "DescribeFleetPortSettings":{
@@ -515,23 +270,10 @@
515
270
  "input":{"shape":"DescribeFleetPortSettingsInput"},
516
271
  "output":{"shape":"DescribeFleetPortSettingsOutput"},
517
272
  "errors":[
518
- {
519
- "shape":"InternalServiceException",
520
- "exception":true,
521
- "fault":true
522
- },
523
- {
524
- "shape":"NotFoundException",
525
- "exception":true
526
- },
527
- {
528
- "shape":"InvalidRequestException",
529
- "exception":true
530
- },
531
- {
532
- "shape":"UnauthorizedException",
533
- "exception":true
534
- }
273
+ {"shape":"InternalServiceException"},
274
+ {"shape":"NotFoundException"},
275
+ {"shape":"InvalidRequestException"},
276
+ {"shape":"UnauthorizedException"}
535
277
  ]
536
278
  },
537
279
  "DescribeFleetUtilization":{
@@ -543,23 +285,10 @@
543
285
  "input":{"shape":"DescribeFleetUtilizationInput"},
544
286
  "output":{"shape":"DescribeFleetUtilizationOutput"},
545
287
  "errors":[
546
- {
547
- "shape":"InternalServiceException",
548
- "exception":true,
549
- "fault":true
550
- },
551
- {
552
- "shape":"NotFoundException",
553
- "exception":true
554
- },
555
- {
556
- "shape":"InvalidRequestException",
557
- "exception":true
558
- },
559
- {
560
- "shape":"UnauthorizedException",
561
- "exception":true
562
- }
288
+ {"shape":"InternalServiceException"},
289
+ {"shape":"NotFoundException"},
290
+ {"shape":"InvalidRequestException"},
291
+ {"shape":"UnauthorizedException"}
563
292
  ]
564
293
  },
565
294
  "DescribeGameSessionDetails":{
@@ -571,27 +300,11 @@
571
300
  "input":{"shape":"DescribeGameSessionDetailsInput"},
572
301
  "output":{"shape":"DescribeGameSessionDetailsOutput"},
573
302
  "errors":[
574
- {
575
- "shape":"InternalServiceException",
576
- "exception":true,
577
- "fault":true
578
- },
579
- {
580
- "shape":"NotFoundException",
581
- "exception":true
582
- },
583
- {
584
- "shape":"InvalidRequestException",
585
- "exception":true
586
- },
587
- {
588
- "shape":"UnauthorizedException",
589
- "exception":true
590
- },
591
- {
592
- "shape":"TerminalRoutingStrategyException",
593
- "exception":true
594
- }
303
+ {"shape":"InternalServiceException"},
304
+ {"shape":"NotFoundException"},
305
+ {"shape":"InvalidRequestException"},
306
+ {"shape":"UnauthorizedException"},
307
+ {"shape":"TerminalRoutingStrategyException"}
595
308
  ]
596
309
  },
597
310
  "DescribeGameSessions":{
@@ -603,27 +316,26 @@
603
316
  "input":{"shape":"DescribeGameSessionsInput"},
604
317
  "output":{"shape":"DescribeGameSessionsOutput"},
605
318
  "errors":[
606
- {
607
- "shape":"InternalServiceException",
608
- "exception":true,
609
- "fault":true
610
- },
611
- {
612
- "shape":"NotFoundException",
613
- "exception":true
614
- },
615
- {
616
- "shape":"InvalidRequestException",
617
- "exception":true
618
- },
619
- {
620
- "shape":"UnauthorizedException",
621
- "exception":true
622
- },
623
- {
624
- "shape":"TerminalRoutingStrategyException",
625
- "exception":true
626
- }
319
+ {"shape":"InternalServiceException"},
320
+ {"shape":"NotFoundException"},
321
+ {"shape":"InvalidRequestException"},
322
+ {"shape":"UnauthorizedException"},
323
+ {"shape":"TerminalRoutingStrategyException"}
324
+ ]
325
+ },
326
+ "DescribeInstances":{
327
+ "name":"DescribeInstances",
328
+ "http":{
329
+ "method":"POST",
330
+ "requestUri":"/"
331
+ },
332
+ "input":{"shape":"DescribeInstancesInput"},
333
+ "output":{"shape":"DescribeInstancesOutput"},
334
+ "errors":[
335
+ {"shape":"UnauthorizedException"},
336
+ {"shape":"InvalidRequestException"},
337
+ {"shape":"NotFoundException"},
338
+ {"shape":"InternalServiceException"}
627
339
  ]
628
340
  },
629
341
  "DescribePlayerSessions":{
@@ -635,23 +347,10 @@
635
347
  "input":{"shape":"DescribePlayerSessionsInput"},
636
348
  "output":{"shape":"DescribePlayerSessionsOutput"},
637
349
  "errors":[
638
- {
639
- "shape":"InternalServiceException",
640
- "exception":true,
641
- "fault":true
642
- },
643
- {
644
- "shape":"NotFoundException",
645
- "exception":true
646
- },
647
- {
648
- "shape":"InvalidRequestException",
649
- "exception":true
650
- },
651
- {
652
- "shape":"UnauthorizedException",
653
- "exception":true
654
- }
350
+ {"shape":"InternalServiceException"},
351
+ {"shape":"NotFoundException"},
352
+ {"shape":"InvalidRequestException"},
353
+ {"shape":"UnauthorizedException"}
655
354
  ]
656
355
  },
657
356
  "DescribeRuntimeConfiguration":{
@@ -663,23 +362,10 @@
663
362
  "input":{"shape":"DescribeRuntimeConfigurationInput"},
664
363
  "output":{"shape":"DescribeRuntimeConfigurationOutput"},
665
364
  "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
- }
365
+ {"shape":"UnauthorizedException"},
366
+ {"shape":"NotFoundException"},
367
+ {"shape":"InternalServiceException"},
368
+ {"shape":"InvalidRequestException"}
683
369
  ]
684
370
  },
685
371
  "DescribeScalingPolicies":{
@@ -691,23 +377,10 @@
691
377
  "input":{"shape":"DescribeScalingPoliciesInput"},
692
378
  "output":{"shape":"DescribeScalingPoliciesOutput"},
693
379
  "errors":[
694
- {
695
- "shape":"InternalServiceException",
696
- "exception":true,
697
- "fault":true
698
- },
699
- {
700
- "shape":"InvalidRequestException",
701
- "exception":true
702
- },
703
- {
704
- "shape":"UnauthorizedException",
705
- "exception":true
706
- },
707
- {
708
- "shape":"NotFoundException",
709
- "exception":true
710
- }
380
+ {"shape":"InternalServiceException"},
381
+ {"shape":"InvalidRequestException"},
382
+ {"shape":"UnauthorizedException"},
383
+ {"shape":"NotFoundException"}
711
384
  ]
712
385
  },
713
386
  "GetGameSessionLogUrl":{
@@ -719,23 +392,10 @@
719
392
  "input":{"shape":"GetGameSessionLogUrlInput"},
720
393
  "output":{"shape":"GetGameSessionLogUrlOutput"},
721
394
  "errors":[
722
- {
723
- "shape":"InternalServiceException",
724
- "exception":true,
725
- "fault":true
726
- },
727
- {
728
- "shape":"NotFoundException",
729
- "exception":true
730
- },
731
- {
732
- "shape":"UnauthorizedException",
733
- "exception":true
734
- },
735
- {
736
- "shape":"InvalidRequestException",
737
- "exception":true
738
- }
395
+ {"shape":"InternalServiceException"},
396
+ {"shape":"NotFoundException"},
397
+ {"shape":"UnauthorizedException"},
398
+ {"shape":"InvalidRequestException"}
739
399
  ]
740
400
  },
741
401
  "ListAliases":{
@@ -747,19 +407,9 @@
747
407
  "input":{"shape":"ListAliasesInput"},
748
408
  "output":{"shape":"ListAliasesOutput"},
749
409
  "errors":[
750
- {
751
- "shape":"UnauthorizedException",
752
- "exception":true
753
- },
754
- {
755
- "shape":"InvalidRequestException",
756
- "exception":true
757
- },
758
- {
759
- "shape":"InternalServiceException",
760
- "exception":true,
761
- "fault":true
762
- }
410
+ {"shape":"UnauthorizedException"},
411
+ {"shape":"InvalidRequestException"},
412
+ {"shape":"InternalServiceException"}
763
413
  ]
764
414
  },
765
415
  "ListBuilds":{
@@ -771,19 +421,9 @@
771
421
  "input":{"shape":"ListBuildsInput"},
772
422
  "output":{"shape":"ListBuildsOutput"},
773
423
  "errors":[
774
- {
775
- "shape":"UnauthorizedException",
776
- "exception":true
777
- },
778
- {
779
- "shape":"InvalidRequestException",
780
- "exception":true
781
- },
782
- {
783
- "shape":"InternalServiceException",
784
- "exception":true,
785
- "fault":true
786
- }
424
+ {"shape":"UnauthorizedException"},
425
+ {"shape":"InvalidRequestException"},
426
+ {"shape":"InternalServiceException"}
787
427
  ]
788
428
  },
789
429
  "ListFleets":{
@@ -795,23 +435,10 @@
795
435
  "input":{"shape":"ListFleetsInput"},
796
436
  "output":{"shape":"ListFleetsOutput"},
797
437
  "errors":[
798
- {
799
- "shape":"InternalServiceException",
800
- "exception":true,
801
- "fault":true
802
- },
803
- {
804
- "shape":"NotFoundException",
805
- "exception":true
806
- },
807
- {
808
- "shape":"InvalidRequestException",
809
- "exception":true
810
- },
811
- {
812
- "shape":"UnauthorizedException",
813
- "exception":true
814
- }
438
+ {"shape":"InternalServiceException"},
439
+ {"shape":"NotFoundException"},
440
+ {"shape":"InvalidRequestException"},
441
+ {"shape":"UnauthorizedException"}
815
442
  ]
816
443
  },
817
444
  "PutScalingPolicy":{
@@ -823,23 +450,10 @@
823
450
  "input":{"shape":"PutScalingPolicyInput"},
824
451
  "output":{"shape":"PutScalingPolicyOutput"},
825
452
  "errors":[
826
- {
827
- "shape":"InternalServiceException",
828
- "exception":true,
829
- "fault":true
830
- },
831
- {
832
- "shape":"InvalidRequestException",
833
- "exception":true
834
- },
835
- {
836
- "shape":"UnauthorizedException",
837
- "exception":true
838
- },
839
- {
840
- "shape":"NotFoundException",
841
- "exception":true
842
- }
453
+ {"shape":"InternalServiceException"},
454
+ {"shape":"InvalidRequestException"},
455
+ {"shape":"UnauthorizedException"},
456
+ {"shape":"NotFoundException"}
843
457
  ]
844
458
  },
845
459
  "RequestUploadCredentials":{
@@ -851,23 +465,10 @@
851
465
  "input":{"shape":"RequestUploadCredentialsInput"},
852
466
  "output":{"shape":"RequestUploadCredentialsOutput"},
853
467
  "errors":[
854
- {
855
- "shape":"UnauthorizedException",
856
- "exception":true
857
- },
858
- {
859
- "shape":"InvalidRequestException",
860
- "exception":true
861
- },
862
- {
863
- "shape":"NotFoundException",
864
- "exception":true
865
- },
866
- {
867
- "shape":"InternalServiceException",
868
- "exception":true,
869
- "fault":true
870
- }
468
+ {"shape":"UnauthorizedException"},
469
+ {"shape":"InvalidRequestException"},
470
+ {"shape":"NotFoundException"},
471
+ {"shape":"InternalServiceException"}
871
472
  ]
872
473
  },
873
474
  "ResolveAlias":{
@@ -879,27 +480,11 @@
879
480
  "input":{"shape":"ResolveAliasInput"},
880
481
  "output":{"shape":"ResolveAliasOutput"},
881
482
  "errors":[
882
- {
883
- "shape":"UnauthorizedException",
884
- "exception":true
885
- },
886
- {
887
- "shape":"InvalidRequestException",
888
- "exception":true
889
- },
890
- {
891
- "shape":"NotFoundException",
892
- "exception":true
893
- },
894
- {
895
- "shape":"TerminalRoutingStrategyException",
896
- "exception":true
897
- },
898
- {
899
- "shape":"InternalServiceException",
900
- "exception":true,
901
- "fault":true
902
- }
483
+ {"shape":"UnauthorizedException"},
484
+ {"shape":"InvalidRequestException"},
485
+ {"shape":"NotFoundException"},
486
+ {"shape":"TerminalRoutingStrategyException"},
487
+ {"shape":"InternalServiceException"}
903
488
  ]
904
489
  },
905
490
  "SearchGameSessions":{
@@ -911,27 +496,11 @@
911
496
  "input":{"shape":"SearchGameSessionsInput"},
912
497
  "output":{"shape":"SearchGameSessionsOutput"},
913
498
  "errors":[
914
- {
915
- "shape":"InternalServiceException",
916
- "exception":true,
917
- "fault":true
918
- },
919
- {
920
- "shape":"NotFoundException",
921
- "exception":true
922
- },
923
- {
924
- "shape":"InvalidRequestException",
925
- "exception":true
926
- },
927
- {
928
- "shape":"UnauthorizedException",
929
- "exception":true
930
- },
931
- {
932
- "shape":"TerminalRoutingStrategyException",
933
- "exception":true
934
- }
499
+ {"shape":"InternalServiceException"},
500
+ {"shape":"NotFoundException"},
501
+ {"shape":"InvalidRequestException"},
502
+ {"shape":"UnauthorizedException"},
503
+ {"shape":"TerminalRoutingStrategyException"}
935
504
  ]
936
505
  },
937
506
  "UpdateAlias":{
@@ -943,23 +512,10 @@
943
512
  "input":{"shape":"UpdateAliasInput"},
944
513
  "output":{"shape":"UpdateAliasOutput"},
945
514
  "errors":[
946
- {
947
- "shape":"UnauthorizedException",
948
- "exception":true
949
- },
950
- {
951
- "shape":"InvalidRequestException",
952
- "exception":true
953
- },
954
- {
955
- "shape":"NotFoundException",
956
- "exception":true
957
- },
958
- {
959
- "shape":"InternalServiceException",
960
- "exception":true,
961
- "fault":true
962
- }
515
+ {"shape":"UnauthorizedException"},
516
+ {"shape":"InvalidRequestException"},
517
+ {"shape":"NotFoundException"},
518
+ {"shape":"InternalServiceException"}
963
519
  ]
964
520
  },
965
521
  "UpdateBuild":{
@@ -971,23 +527,10 @@
971
527
  "input":{"shape":"UpdateBuildInput"},
972
528
  "output":{"shape":"UpdateBuildOutput"},
973
529
  "errors":[
974
- {
975
- "shape":"UnauthorizedException",
976
- "exception":true
977
- },
978
- {
979
- "shape":"InvalidRequestException",
980
- "exception":true
981
- },
982
- {
983
- "shape":"NotFoundException",
984
- "exception":true
985
- },
986
- {
987
- "shape":"InternalServiceException",
988
- "exception":true,
989
- "fault":true
990
- }
530
+ {"shape":"UnauthorizedException"},
531
+ {"shape":"InvalidRequestException"},
532
+ {"shape":"NotFoundException"},
533
+ {"shape":"InternalServiceException"}
991
534
  ]
992
535
  },
993
536
  "UpdateFleetAttributes":{
@@ -999,35 +542,13 @@
999
542
  "input":{"shape":"UpdateFleetAttributesInput"},
1000
543
  "output":{"shape":"UpdateFleetAttributesOutput"},
1001
544
  "errors":[
1002
- {
1003
- "shape":"NotFoundException",
1004
- "exception":true
1005
- },
1006
- {
1007
- "shape":"ConflictException",
1008
- "exception":true
1009
- },
1010
- {
1011
- "shape":"InvalidFleetStatusException",
1012
- "exception":true
1013
- },
1014
- {
1015
- "shape":"LimitExceededException",
1016
- "exception":true
1017
- },
1018
- {
1019
- "shape":"InternalServiceException",
1020
- "exception":true,
1021
- "fault":true
1022
- },
1023
- {
1024
- "shape":"InvalidRequestException",
1025
- "exception":true
1026
- },
1027
- {
1028
- "shape":"UnauthorizedException",
1029
- "exception":true
1030
- }
545
+ {"shape":"NotFoundException"},
546
+ {"shape":"ConflictException"},
547
+ {"shape":"InvalidFleetStatusException"},
548
+ {"shape":"LimitExceededException"},
549
+ {"shape":"InternalServiceException"},
550
+ {"shape":"InvalidRequestException"},
551
+ {"shape":"UnauthorizedException"}
1031
552
  ]
1032
553
  },
1033
554
  "UpdateFleetCapacity":{
@@ -1039,35 +560,13 @@
1039
560
  "input":{"shape":"UpdateFleetCapacityInput"},
1040
561
  "output":{"shape":"UpdateFleetCapacityOutput"},
1041
562
  "errors":[
1042
- {
1043
- "shape":"NotFoundException",
1044
- "exception":true
1045
- },
1046
- {
1047
- "shape":"ConflictException",
1048
- "exception":true
1049
- },
1050
- {
1051
- "shape":"LimitExceededException",
1052
- "exception":true
1053
- },
1054
- {
1055
- "shape":"InvalidFleetStatusException",
1056
- "exception":true
1057
- },
1058
- {
1059
- "shape":"InternalServiceException",
1060
- "exception":true,
1061
- "fault":true
1062
- },
1063
- {
1064
- "shape":"InvalidRequestException",
1065
- "exception":true
1066
- },
1067
- {
1068
- "shape":"UnauthorizedException",
1069
- "exception":true
1070
- }
563
+ {"shape":"NotFoundException"},
564
+ {"shape":"ConflictException"},
565
+ {"shape":"LimitExceededException"},
566
+ {"shape":"InvalidFleetStatusException"},
567
+ {"shape":"InternalServiceException"},
568
+ {"shape":"InvalidRequestException"},
569
+ {"shape":"UnauthorizedException"}
1071
570
  ]
1072
571
  },
1073
572
  "UpdateFleetPortSettings":{
@@ -1079,35 +578,13 @@
1079
578
  "input":{"shape":"UpdateFleetPortSettingsInput"},
1080
579
  "output":{"shape":"UpdateFleetPortSettingsOutput"},
1081
580
  "errors":[
1082
- {
1083
- "shape":"NotFoundException",
1084
- "exception":true
1085
- },
1086
- {
1087
- "shape":"ConflictException",
1088
- "exception":true
1089
- },
1090
- {
1091
- "shape":"InvalidFleetStatusException",
1092
- "exception":true
1093
- },
1094
- {
1095
- "shape":"LimitExceededException",
1096
- "exception":true
1097
- },
1098
- {
1099
- "shape":"InternalServiceException",
1100
- "exception":true,
1101
- "fault":true
1102
- },
1103
- {
1104
- "shape":"InvalidRequestException",
1105
- "exception":true
1106
- },
1107
- {
1108
- "shape":"UnauthorizedException",
1109
- "exception":true
1110
- }
581
+ {"shape":"NotFoundException"},
582
+ {"shape":"ConflictException"},
583
+ {"shape":"InvalidFleetStatusException"},
584
+ {"shape":"LimitExceededException"},
585
+ {"shape":"InternalServiceException"},
586
+ {"shape":"InvalidRequestException"},
587
+ {"shape":"UnauthorizedException"}
1111
588
  ]
1112
589
  },
1113
590
  "UpdateGameSession":{
@@ -1119,31 +596,12 @@
1119
596
  "input":{"shape":"UpdateGameSessionInput"},
1120
597
  "output":{"shape":"UpdateGameSessionOutput"},
1121
598
  "errors":[
1122
- {
1123
- "shape":"NotFoundException",
1124
- "exception":true
1125
- },
1126
- {
1127
- "shape":"ConflictException",
1128
- "exception":true
1129
- },
1130
- {
1131
- "shape":"InternalServiceException",
1132
- "exception":true,
1133
- "fault":true
1134
- },
1135
- {
1136
- "shape":"UnauthorizedException",
1137
- "exception":true
1138
- },
1139
- {
1140
- "shape":"InvalidGameSessionStatusException",
1141
- "exception":true
1142
- },
1143
- {
1144
- "shape":"InvalidRequestException",
1145
- "exception":true
1146
- }
599
+ {"shape":"NotFoundException"},
600
+ {"shape":"ConflictException"},
601
+ {"shape":"InternalServiceException"},
602
+ {"shape":"UnauthorizedException"},
603
+ {"shape":"InvalidGameSessionStatusException"},
604
+ {"shape":"InvalidRequestException"}
1147
605
  ]
1148
606
  },
1149
607
  "UpdateRuntimeConfiguration":{
@@ -1155,27 +613,11 @@
1155
613
  "input":{"shape":"UpdateRuntimeConfigurationInput"},
1156
614
  "output":{"shape":"UpdateRuntimeConfigurationOutput"},
1157
615
  "errors":[
1158
- {
1159
- "shape":"UnauthorizedException",
1160
- "exception":true
1161
- },
1162
- {
1163
- "shape":"NotFoundException",
1164
- "exception":true
1165
- },
1166
- {
1167
- "shape":"InternalServiceException",
1168
- "exception":true,
1169
- "fault":true
1170
- },
1171
- {
1172
- "shape":"InvalidRequestException",
1173
- "exception":true
1174
- },
1175
- {
1176
- "shape":"InvalidFleetStatusException",
1177
- "exception":true
1178
- }
616
+ {"shape":"UnauthorizedException"},
617
+ {"shape":"NotFoundException"},
618
+ {"shape":"InternalServiceException"},
619
+ {"shape":"InvalidRequestException"},
620
+ {"shape":"InvalidFleetStatusException"}
1179
621
  ]
1180
622
  }
1181
623
  },
@@ -1184,7 +626,7 @@
1184
626
  "type":"structure",
1185
627
  "members":{
1186
628
  "AliasId":{"shape":"AliasId"},
1187
- "Name":{"shape":"FreeText"},
629
+ "Name":{"shape":"NonBlankAndLengthConstraintString"},
1188
630
  "Description":{"shape":"FreeText"},
1189
631
  "RoutingStrategy":{"shape":"RoutingStrategy"},
1190
632
  "CreationTime":{"shape":"Timestamp"},
@@ -1199,6 +641,12 @@
1199
641
  "type":"list",
1200
642
  "member":{"shape":"Alias"}
1201
643
  },
644
+ "ArnStringModel":{
645
+ "type":"string",
646
+ "max":256,
647
+ "min":1,
648
+ "pattern":"[a-zA-Z0-9:/-]+"
649
+ },
1202
650
  "AwsCredentials":{
1203
651
  "type":"structure",
1204
652
  "members":{
@@ -1259,7 +707,7 @@
1259
707
  "RoutingStrategy"
1260
708
  ],
1261
709
  "members":{
1262
- "Name":{"shape":"NonZeroAndMaxString"},
710
+ "Name":{"shape":"NonBlankAndLengthConstraintString"},
1263
711
  "Description":{"shape":"NonZeroAndMaxString"},
1264
712
  "RoutingStrategy":{"shape":"RoutingStrategy"}
1265
713
  }
@@ -1304,7 +752,8 @@
1304
752
  "EC2InstanceType":{"shape":"EC2InstanceType"},
1305
753
  "EC2InboundPermissions":{"shape":"IpPermissionsList"},
1306
754
  "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"},
1307
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
755
+ "RuntimeConfiguration":{"shape":"RuntimeConfiguration"},
756
+ "ResourceCreationLimitPolicy":{"shape":"ResourceCreationLimitPolicy"}
1308
757
  }
1309
758
  },
1310
759
  "CreateFleetOutput":{
@@ -1321,7 +770,9 @@
1321
770
  "AliasId":{"shape":"AliasId"},
1322
771
  "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
1323
772
  "Name":{"shape":"NonZeroAndMaxString"},
1324
- "GameProperties":{"shape":"GamePropertyList"}
773
+ "GameProperties":{"shape":"GamePropertyList"},
774
+ "CreatorId":{"shape":"NonZeroAndMaxString"},
775
+ "GameSessionId":{"shape":"IdStringModel"}
1325
776
  }
1326
777
  },
1327
778
  "CreateGameSessionOutput":{
@@ -1337,7 +788,7 @@
1337
788
  "PlayerId"
1338
789
  ],
1339
790
  "members":{
1340
- "GameSessionId":{"shape":"GameSessionId"},
791
+ "GameSessionId":{"shape":"ArnStringModel"},
1341
792
  "PlayerId":{"shape":"NonZeroAndMaxString"}
1342
793
  }
1343
794
  },
@@ -1354,7 +805,7 @@
1354
805
  "PlayerIds"
1355
806
  ],
1356
807
  "members":{
1357
- "GameSessionId":{"shape":"GameSessionId"},
808
+ "GameSessionId":{"shape":"ArnStringModel"},
1358
809
  "PlayerIds":{"shape":"PlayerIdList"}
1359
810
  }
1360
811
  },
@@ -1514,7 +965,7 @@
1514
965
  "type":"structure",
1515
966
  "members":{
1516
967
  "FleetId":{"shape":"FleetId"},
1517
- "GameSessionId":{"shape":"GameSessionId"},
968
+ "GameSessionId":{"shape":"ArnStringModel"},
1518
969
  "AliasId":{"shape":"AliasId"},
1519
970
  "StatusFilter":{"shape":"NonZeroAndMaxString"},
1520
971
  "Limit":{"shape":"PositiveInteger"},
@@ -1532,7 +983,7 @@
1532
983
  "type":"structure",
1533
984
  "members":{
1534
985
  "FleetId":{"shape":"FleetId"},
1535
- "GameSessionId":{"shape":"GameSessionId"},
986
+ "GameSessionId":{"shape":"ArnStringModel"},
1536
987
  "AliasId":{"shape":"AliasId"},
1537
988
  "StatusFilter":{"shape":"NonZeroAndMaxString"},
1538
989
  "Limit":{"shape":"PositiveInteger"},
@@ -1546,10 +997,27 @@
1546
997
  "NextToken":{"shape":"NonZeroAndMaxString"}
1547
998
  }
1548
999
  },
1000
+ "DescribeInstancesInput":{
1001
+ "type":"structure",
1002
+ "required":["FleetId"],
1003
+ "members":{
1004
+ "FleetId":{"shape":"FleetId"},
1005
+ "InstanceId":{"shape":"InstanceId"},
1006
+ "Limit":{"shape":"PositiveInteger"},
1007
+ "NextToken":{"shape":"NonZeroAndMaxString"}
1008
+ }
1009
+ },
1010
+ "DescribeInstancesOutput":{
1011
+ "type":"structure",
1012
+ "members":{
1013
+ "Instances":{"shape":"InstanceList"},
1014
+ "NextToken":{"shape":"NonZeroAndMaxString"}
1015
+ }
1016
+ },
1549
1017
  "DescribePlayerSessionsInput":{
1550
1018
  "type":"structure",
1551
1019
  "members":{
1552
- "GameSessionId":{"shape":"GameSessionId"},
1020
+ "GameSessionId":{"shape":"ArnStringModel"},
1553
1021
  "PlayerId":{"shape":"NonZeroAndMaxString"},
1554
1022
  "PlayerSessionId":{"shape":"PlayerSessionId"},
1555
1023
  "PlayerSessionStatusFilter":{"shape":"NonZeroAndMaxString"},
@@ -1703,7 +1171,8 @@
1703
1171
  "ServerLaunchParameters":{"shape":"NonZeroAndMaxString"},
1704
1172
  "LogPaths":{"shape":"StringList"},
1705
1173
  "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"},
1706
- "OperatingSystem":{"shape":"OperatingSystem"}
1174
+ "OperatingSystem":{"shape":"OperatingSystem"},
1175
+ "ResourceCreationLimitPolicy":{"shape":"ResourceCreationLimitPolicy"}
1707
1176
  }
1708
1177
  },
1709
1178
  "FleetAttributesList":{
@@ -1794,7 +1263,7 @@
1794
1263
  "GameSession":{
1795
1264
  "type":"structure",
1796
1265
  "members":{
1797
- "GameSessionId":{"shape":"GameSessionId"},
1266
+ "GameSessionId":{"shape":"NonZeroAndMaxString"},
1798
1267
  "Name":{"shape":"NonZeroAndMaxString"},
1799
1268
  "FleetId":{"shape":"FleetId"},
1800
1269
  "CreationTime":{"shape":"Timestamp"},
@@ -1805,7 +1274,8 @@
1805
1274
  "GameProperties":{"shape":"GamePropertyList"},
1806
1275
  "IpAddress":{"shape":"IpAddress"},
1807
1276
  "Port":{"shape":"PortNumber"},
1808
- "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"}
1277
+ "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"},
1278
+ "CreatorId":{"shape":"NonZeroAndMaxString"}
1809
1279
  }
1810
1280
  },
1811
1281
  "GameSessionDetail":{
@@ -1826,10 +1296,6 @@
1826
1296
  },
1827
1297
  "exception":true
1828
1298
  },
1829
- "GameSessionId":{
1830
- "type":"string",
1831
- "pattern":"^(gamei-|gsess-)\\S+"
1832
- },
1833
1299
  "GameSessionList":{
1834
1300
  "type":"list",
1835
1301
  "member":{"shape":"GameSession"}
@@ -1840,14 +1306,15 @@
1840
1306
  "ACTIVE",
1841
1307
  "ACTIVATING",
1842
1308
  "TERMINATED",
1843
- "TERMINATING"
1309
+ "TERMINATING",
1310
+ "ERROR"
1844
1311
  ]
1845
1312
  },
1846
1313
  "GetGameSessionLogUrlInput":{
1847
1314
  "type":"structure",
1848
1315
  "required":["GameSessionId"],
1849
1316
  "members":{
1850
- "GameSessionId":{"shape":"GameSessionId"}
1317
+ "GameSessionId":{"shape":"ArnStringModel"}
1851
1318
  }
1852
1319
  },
1853
1320
  "GetGameSessionLogUrlOutput":{
@@ -1856,6 +1323,47 @@
1856
1323
  "PreSignedUrl":{"shape":"NonZeroAndMaxString"}
1857
1324
  }
1858
1325
  },
1326
+ "IdStringModel":{
1327
+ "type":"string",
1328
+ "max":48,
1329
+ "min":1,
1330
+ "pattern":"[a-zA-Z0-9-]+"
1331
+ },
1332
+ "IdempotentParameterMismatchException":{
1333
+ "type":"structure",
1334
+ "members":{
1335
+ "Message":{"shape":"NonEmptyString"}
1336
+ },
1337
+ "exception":true
1338
+ },
1339
+ "Instance":{
1340
+ "type":"structure",
1341
+ "members":{
1342
+ "FleetId":{"shape":"FleetId"},
1343
+ "InstanceId":{"shape":"InstanceId"},
1344
+ "IpAddress":{"shape":"IpAddress"},
1345
+ "OperatingSystem":{"shape":"OperatingSystem"},
1346
+ "Type":{"shape":"EC2InstanceType"},
1347
+ "Status":{"shape":"InstanceStatus"},
1348
+ "CreationTime":{"shape":"Timestamp"}
1349
+ }
1350
+ },
1351
+ "InstanceId":{
1352
+ "type":"string",
1353
+ "pattern":"[a-zA-Z0-9\\.-]+"
1354
+ },
1355
+ "InstanceList":{
1356
+ "type":"list",
1357
+ "member":{"shape":"Instance"}
1358
+ },
1359
+ "InstanceStatus":{
1360
+ "type":"string",
1361
+ "enum":[
1362
+ "PENDING",
1363
+ "ACTIVE",
1364
+ "TERMINATING"
1365
+ ]
1366
+ },
1859
1367
  "Integer":{"type":"integer"},
1860
1368
  "InternalServiceException":{
1861
1369
  "type":"structure",
@@ -1978,6 +1486,12 @@
1978
1486
  "IdleInstances"
1979
1487
  ]
1980
1488
  },
1489
+ "NonBlankAndLengthConstraintString":{
1490
+ "type":"string",
1491
+ "max":1024,
1492
+ "min":1,
1493
+ "pattern":".*\\S.*"
1494
+ },
1981
1495
  "NonBlankString":{
1982
1496
  "type":"string",
1983
1497
  "pattern":"[^\\s]+"
@@ -1988,8 +1502,8 @@
1988
1502
  },
1989
1503
  "NonZeroAndMaxString":{
1990
1504
  "type":"string",
1991
- "min":1,
1992
- "max":1024
1505
+ "max":1024,
1506
+ "min":1
1993
1507
  },
1994
1508
  "NotFoundException":{
1995
1509
  "type":"structure",
@@ -2008,15 +1522,15 @@
2008
1522
  "PlayerIdList":{
2009
1523
  "type":"list",
2010
1524
  "member":{"shape":"NonZeroAndMaxString"},
2011
- "min":1,
2012
- "max":25
1525
+ "max":25,
1526
+ "min":1
2013
1527
  },
2014
1528
  "PlayerSession":{
2015
1529
  "type":"structure",
2016
1530
  "members":{
2017
1531
  "PlayerSessionId":{"shape":"PlayerSessionId"},
2018
1532
  "PlayerId":{"shape":"NonZeroAndMaxString"},
2019
- "GameSessionId":{"shape":"GameSessionId"},
1533
+ "GameSessionId":{"shape":"NonZeroAndMaxString"},
2020
1534
  "FleetId":{"shape":"FleetId"},
2021
1535
  "CreationTime":{"shape":"Timestamp"},
2022
1536
  "TerminationTime":{"shape":"Timestamp"},
@@ -2051,8 +1565,8 @@
2051
1565
  },
2052
1566
  "PortNumber":{
2053
1567
  "type":"integer",
2054
- "min":1025,
2055
- "max":60000
1568
+ "max":60000,
1569
+ "min":1
2056
1570
  },
2057
1571
  "PositiveInteger":{
2058
1572
  "type":"integer",
@@ -2125,6 +1639,13 @@
2125
1639
  "FleetId":{"shape":"FleetId"}
2126
1640
  }
2127
1641
  },
1642
+ "ResourceCreationLimitPolicy":{
1643
+ "type":"structure",
1644
+ "members":{
1645
+ "NewGameSessionsPerCreator":{"shape":"WholeNumber"},
1646
+ "PolicyPeriodInMinutes":{"shape":"WholeNumber"}
1647
+ }
1648
+ },
2128
1649
  "RoutingStrategy":{
2129
1650
  "type":"structure",
2130
1651
  "members":{
@@ -2225,8 +1746,8 @@
2225
1746
  "ServerProcessList":{
2226
1747
  "type":"list",
2227
1748
  "member":{"shape":"ServerProcess"},
2228
- "min":1,
2229
- "max":50
1749
+ "max":50,
1750
+ "min":1
2230
1751
  },
2231
1752
  "StringList":{
2232
1753
  "type":"list",
@@ -2252,7 +1773,7 @@
2252
1773
  "required":["AliasId"],
2253
1774
  "members":{
2254
1775
  "AliasId":{"shape":"AliasId"},
2255
- "Name":{"shape":"NonZeroAndMaxString"},
1776
+ "Name":{"shape":"NonBlankAndLengthConstraintString"},
2256
1777
  "Description":{"shape":"NonZeroAndMaxString"},
2257
1778
  "RoutingStrategy":{"shape":"RoutingStrategy"}
2258
1779
  }
@@ -2285,7 +1806,8 @@
2285
1806
  "FleetId":{"shape":"FleetId"},
2286
1807
  "Name":{"shape":"NonZeroAndMaxString"},
2287
1808
  "Description":{"shape":"NonZeroAndMaxString"},
2288
- "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"}
1809
+ "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"},
1810
+ "ResourceCreationLimitPolicy":{"shape":"ResourceCreationLimitPolicy"}
2289
1811
  }
2290
1812
  },
2291
1813
  "UpdateFleetAttributesOutput":{
@@ -2329,7 +1851,7 @@
2329
1851
  "type":"structure",
2330
1852
  "required":["GameSessionId"],
2331
1853
  "members":{
2332
- "GameSessionId":{"shape":"GameSessionId"},
1854
+ "GameSessionId":{"shape":"ArnStringModel"},
2333
1855
  "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
2334
1856
  "Name":{"shape":"NonZeroAndMaxString"},
2335
1857
  "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"},