aws-sdk-core 2.11.418 → 2.11.419

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: e104e82599f96f034fca5d216593d4695479df66
4
- data.tar.gz: e6044058e772d56832c1e448db30745b7966c70c
3
+ metadata.gz: 6403f886dfd6e1ee05dada47a949daf073d7779e
4
+ data.tar.gz: 612f09f29d9caac481d8b87d386be35ad8120cf1
5
5
  SHA512:
6
- metadata.gz: 708c6edceb94b37d99a9b00c7b87952d92a0872dffe7281bb150cdf55e55dd87c55cdacb66c3e3edfd90211702038ff537722523814aeab19473e9d51a771eae
7
- data.tar.gz: 137f86d323f31efb76321f9f6e7b04472de3745270e2fd45e85830d88cd35cd3ebd19d7e1a7f4302fc8c8bcad56883be19c6cf197fc4cc6634091ed1e5b88f9e
6
+ metadata.gz: e4ab170128787210d2337aa15725a36fe842f0dc5f87a1c0107ed48677de796daf7026fb656a38a6b10d212c0769011811fe09bf9c7e9ac0f6df0f965bf913b8
7
+ data.tar.gz: '0759a398f85084c08b451f6ba19c641c3b2d8453cfdd59213cf0303a00bd43eea14f381a111d541a9b61c2b807a8adb9e2a61fbe7a558e49ad920e63e6e2c2cc'
@@ -0,0 +1,194 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2019-12-01",
5
+ "endpointPrefix":"codestar-connections",
6
+ "jsonVersion":"1.0",
7
+ "protocol":"json",
8
+ "serviceFullName":"AWS CodeStar connections",
9
+ "serviceId":"CodeStar connections",
10
+ "signatureVersion":"v4",
11
+ "signingName":"codestar-connections",
12
+ "targetPrefix":"com.amazonaws.codestar.connections.CodeStar_connections_20191201",
13
+ "uid":"codestar-connections-2019-12-01"
14
+ },
15
+ "operations":{
16
+ "CreateConnection":{
17
+ "name":"CreateConnection",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/"
21
+ },
22
+ "input":{"shape":"CreateConnectionInput"},
23
+ "output":{"shape":"CreateConnectionOutput"},
24
+ "errors":[
25
+ {"shape":"LimitExceededException"}
26
+ ]
27
+ },
28
+ "DeleteConnection":{
29
+ "name":"DeleteConnection",
30
+ "http":{
31
+ "method":"POST",
32
+ "requestUri":"/"
33
+ },
34
+ "input":{"shape":"DeleteConnectionInput"},
35
+ "output":{"shape":"DeleteConnectionOutput"},
36
+ "errors":[
37
+ {"shape":"ResourceNotFoundException"}
38
+ ]
39
+ },
40
+ "GetConnection":{
41
+ "name":"GetConnection",
42
+ "http":{
43
+ "method":"POST",
44
+ "requestUri":"/"
45
+ },
46
+ "input":{"shape":"GetConnectionInput"},
47
+ "output":{"shape":"GetConnectionOutput"},
48
+ "errors":[
49
+ {"shape":"ResourceNotFoundException"}
50
+ ]
51
+ },
52
+ "ListConnections":{
53
+ "name":"ListConnections",
54
+ "http":{
55
+ "method":"POST",
56
+ "requestUri":"/"
57
+ },
58
+ "input":{"shape":"ListConnectionsInput"},
59
+ "output":{"shape":"ListConnectionsOutput"}
60
+ }
61
+ },
62
+ "shapes":{
63
+ "AccountId":{
64
+ "type":"string",
65
+ "max":12,
66
+ "min":12,
67
+ "pattern":"[0-9]{12}"
68
+ },
69
+ "Connection":{
70
+ "type":"structure",
71
+ "members":{
72
+ "ConnectionName":{"shape":"ConnectionName"},
73
+ "ConnectionArn":{"shape":"ConnectionArn"},
74
+ "ProviderType":{"shape":"ProviderType"},
75
+ "OwnerAccountId":{"shape":"AccountId"},
76
+ "ConnectionStatus":{"shape":"ConnectionStatus"}
77
+ }
78
+ },
79
+ "ConnectionArn":{
80
+ "type":"string",
81
+ "max":256,
82
+ "min":0,
83
+ "pattern":"arn:aws(-[\\w]+)*:.+:.+:[0-9]{12}:.+"
84
+ },
85
+ "ConnectionList":{
86
+ "type":"list",
87
+ "member":{"shape":"Connection"}
88
+ },
89
+ "ConnectionName":{
90
+ "type":"string",
91
+ "max":32,
92
+ "min":1
93
+ },
94
+ "ConnectionStatus":{
95
+ "type":"string",
96
+ "enum":[
97
+ "PENDING",
98
+ "AVAILABLE",
99
+ "ERROR"
100
+ ]
101
+ },
102
+ "CreateConnectionInput":{
103
+ "type":"structure",
104
+ "required":[
105
+ "ProviderType",
106
+ "ConnectionName"
107
+ ],
108
+ "members":{
109
+ "ProviderType":{"shape":"ProviderType"},
110
+ "ConnectionName":{"shape":"ConnectionName"}
111
+ }
112
+ },
113
+ "CreateConnectionOutput":{
114
+ "type":"structure",
115
+ "required":["ConnectionArn"],
116
+ "members":{
117
+ "ConnectionArn":{"shape":"ConnectionArn"}
118
+ }
119
+ },
120
+ "DeleteConnectionInput":{
121
+ "type":"structure",
122
+ "required":["ConnectionArn"],
123
+ "members":{
124
+ "ConnectionArn":{"shape":"ConnectionArn"}
125
+ }
126
+ },
127
+ "DeleteConnectionOutput":{
128
+ "type":"structure",
129
+ "members":{
130
+ }
131
+ },
132
+ "ErrorMessage":{
133
+ "type":"string",
134
+ "max":600
135
+ },
136
+ "GetConnectionInput":{
137
+ "type":"structure",
138
+ "required":["ConnectionArn"],
139
+ "members":{
140
+ "ConnectionArn":{"shape":"ConnectionArn"}
141
+ }
142
+ },
143
+ "GetConnectionOutput":{
144
+ "type":"structure",
145
+ "members":{
146
+ "Connection":{"shape":"Connection"}
147
+ }
148
+ },
149
+ "LimitExceededException":{
150
+ "type":"structure",
151
+ "members":{
152
+ "Message":{"shape":"ErrorMessage"}
153
+ },
154
+ "exception":true
155
+ },
156
+ "ListConnectionsInput":{
157
+ "type":"structure",
158
+ "members":{
159
+ "ProviderTypeFilter":{"shape":"ProviderType"},
160
+ "MaxResults":{"shape":"MaxResults"},
161
+ "NextToken":{"shape":"NextToken"}
162
+ }
163
+ },
164
+ "ListConnectionsOutput":{
165
+ "type":"structure",
166
+ "members":{
167
+ "Connections":{"shape":"ConnectionList"},
168
+ "NextToken":{"shape":"NextToken"}
169
+ }
170
+ },
171
+ "MaxResults":{
172
+ "type":"integer",
173
+ "max":50,
174
+ "min":1
175
+ },
176
+ "NextToken":{
177
+ "type":"string",
178
+ "max":1024,
179
+ "min":1,
180
+ "pattern":"[a-zA-Z0-9=\\-\\\\/]+"
181
+ },
182
+ "ProviderType":{
183
+ "type":"string",
184
+ "enum":["Bitbucket"]
185
+ },
186
+ "ResourceNotFoundException":{
187
+ "type":"structure",
188
+ "members":{
189
+ "Message":{"shape":"ErrorMessage"}
190
+ },
191
+ "exception":true
192
+ }
193
+ }
194
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "pagination": {
3
+ "ListConnections": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ }
8
+ }
9
+ }
@@ -141,7 +141,14 @@
141
141
  "max":10,
142
142
  "min":1
143
143
  },
144
+ "CmkArn":{
145
+ "type":"string",
146
+ "max":2048,
147
+ "min":0,
148
+ "pattern":"arn:aws(-[a-z]{1,3}){0,2}:kms:([a-z]+-){2,3}\\d:\\d+:key/.*"
149
+ },
144
150
  "CopyTags":{"type":"boolean"},
151
+ "CopyTagsNullable":{"type":"boolean"},
145
152
  "Count":{
146
153
  "type":"integer",
147
154
  "max":1000,
@@ -181,6 +188,33 @@
181
188
  "Times":{"shape":"TimesList"}
182
189
  }
183
190
  },
191
+ "CrossRegionCopyRetainRule":{
192
+ "type":"structure",
193
+ "members":{
194
+ "Interval":{"shape":"Interval"},
195
+ "IntervalUnit":{"shape":"RetentionIntervalUnitValues"}
196
+ }
197
+ },
198
+ "CrossRegionCopyRule":{
199
+ "type":"structure",
200
+ "required":[
201
+ "TargetRegion",
202
+ "Encrypted"
203
+ ],
204
+ "members":{
205
+ "TargetRegion":{"shape":"TargetRegion"},
206
+ "Encrypted":{"shape":"Encrypted"},
207
+ "CmkArn":{"shape":"CmkArn"},
208
+ "CopyTags":{"shape":"CopyTagsNullable"},
209
+ "RetainRule":{"shape":"CrossRegionCopyRetainRule"}
210
+ }
211
+ },
212
+ "CrossRegionCopyRules":{
213
+ "type":"list",
214
+ "member":{"shape":"CrossRegionCopyRule"},
215
+ "max":3,
216
+ "min":0
217
+ },
184
218
  "DeleteLifecyclePolicyRequest":{
185
219
  "type":"structure",
186
220
  "required":["PolicyId"],
@@ -197,6 +231,7 @@
197
231
  "members":{
198
232
  }
199
233
  },
234
+ "Encrypted":{"type":"boolean"},
200
235
  "ErrorCode":{"type":"string"},
201
236
  "ErrorMessage":{"type":"string"},
202
237
  "ExcludeBootVolume":{"type":"boolean"},
@@ -373,6 +408,8 @@
373
408
  },
374
409
  "PolicyArn":{
375
410
  "type":"string",
411
+ "max":2048,
412
+ "min":0,
376
413
  "pattern":"^arn:aws:dlm:[A-Za-z0-9_/.-]{0,63}:\\d+:policy/[0-9A-Za-z_-]{1,128}$"
377
414
  },
378
415
  "PolicyDescription":{
@@ -455,7 +492,8 @@
455
492
  "VariableTags":{"shape":"VariableTagsList"},
456
493
  "CreateRule":{"shape":"CreateRule"},
457
494
  "RetainRule":{"shape":"RetainRule"},
458
- "FastRestoreRule":{"shape":"FastRestoreRule"}
495
+ "FastRestoreRule":{"shape":"FastRestoreRule"},
496
+ "CrossRegionCopyRules":{"shape":"CrossRegionCopyRules"}
459
497
  }
460
498
  },
461
499
  "ScheduleList":{
@@ -547,7 +585,8 @@
547
585
  },
548
586
  "TagValue":{
549
587
  "type":"string",
550
- "max":256
588
+ "max":256,
589
+ "pattern":"[\\p{all}]*"
551
590
  },
552
591
  "TagsToAddFilterList":{
553
592
  "type":"list",
@@ -561,6 +600,12 @@
561
600
  "max":50,
562
601
  "min":0
563
602
  },
603
+ "TargetRegion":{
604
+ "type":"string",
605
+ "max":16,
606
+ "min":0,
607
+ "pattern":"([a-z]+-){2,3}\\d"
608
+ },
564
609
  "TargetTagList":{
565
610
  "type":"list",
566
611
  "member":{"shape":"Tag"},
@@ -13448,6 +13448,10 @@
13448
13448
  "InstanceId":{
13449
13449
  "shape":"String",
13450
13450
  "locationName":"instanceId"
13451
+ },
13452
+ "Tags":{
13453
+ "shape":"TagList",
13454
+ "locationName":"tagSet"
13451
13455
  }
13452
13456
  }
13453
13457
  },
@@ -17698,9 +17702,9 @@
17698
17702
  "shape":"UsageClassTypeList",
17699
17703
  "locationName":"supportedUsageClasses"
17700
17704
  },
17701
- "SupportedRootDevices":{
17705
+ "SupportedRootDeviceTypes":{
17702
17706
  "shape":"RootDeviceTypeList",
17703
- "locationName":"supportedRootDevices"
17707
+ "locationName":"supportedRootDeviceTypes"
17704
17708
  },
17705
17709
  "BareMetal":{
17706
17710
  "shape":"BareMetalFlag",
@@ -40,7 +40,8 @@
40
40
  {"shape":"InvalidRequestException"},
41
41
  {"shape":"ConflictException"},
42
42
  {"shape":"InternalServiceException"},
43
- {"shape":"LimitExceededException"}
43
+ {"shape":"LimitExceededException"},
44
+ {"shape":"TaggingFailedException"}
44
45
  ]
45
46
  },
46
47
  "CreateBuild":{
@@ -55,6 +56,7 @@
55
56
  {"shape":"UnauthorizedException"},
56
57
  {"shape":"InvalidRequestException"},
57
58
  {"shape":"ConflictException"},
59
+ {"shape":"TaggingFailedException"},
58
60
  {"shape":"InternalServiceException"}
59
61
  ]
60
62
  },
@@ -72,7 +74,8 @@
72
74
  {"shape":"ConflictException"},
73
75
  {"shape":"LimitExceededException"},
74
76
  {"shape":"InvalidRequestException"},
75
- {"shape":"UnauthorizedException"}
77
+ {"shape":"UnauthorizedException"},
78
+ {"shape":"TaggingFailedException"}
76
79
  ]
77
80
  },
78
81
  "CreateGameSession":{
@@ -108,7 +111,8 @@
108
111
  {"shape":"InternalServiceException"},
109
112
  {"shape":"InvalidRequestException"},
110
113
  {"shape":"UnauthorizedException"},
111
- {"shape":"LimitExceededException"}
114
+ {"shape":"LimitExceededException"},
115
+ {"shape":"TaggingFailedException"}
112
116
  ]
113
117
  },
114
118
  "CreateMatchmakingConfiguration":{
@@ -124,7 +128,8 @@
124
128
  {"shape":"LimitExceededException"},
125
129
  {"shape":"NotFoundException"},
126
130
  {"shape":"InternalServiceException"},
127
- {"shape":"UnsupportedRegionException"}
131
+ {"shape":"UnsupportedRegionException"},
132
+ {"shape":"TaggingFailedException"}
128
133
  ]
129
134
  },
130
135
  "CreateMatchmakingRuleSet":{
@@ -138,7 +143,8 @@
138
143
  "errors":[
139
144
  {"shape":"InvalidRequestException"},
140
145
  {"shape":"InternalServiceException"},
141
- {"shape":"UnsupportedRegionException"}
146
+ {"shape":"UnsupportedRegionException"},
147
+ {"shape":"TaggingFailedException"}
142
148
  ]
143
149
  },
144
150
  "CreatePlayerSession":{
@@ -189,6 +195,7 @@
189
195
  {"shape":"UnauthorizedException"},
190
196
  {"shape":"InvalidRequestException"},
191
197
  {"shape":"ConflictException"},
198
+ {"shape":"TaggingFailedException"},
192
199
  {"shape":"InternalServiceException"}
193
200
  ]
194
201
  },
@@ -233,6 +240,7 @@
233
240
  {"shape":"UnauthorizedException"},
234
241
  {"shape":"NotFoundException"},
235
242
  {"shape":"InvalidRequestException"},
243
+ {"shape":"TaggingFailedException"},
236
244
  {"shape":"InternalServiceException"}
237
245
  ]
238
246
  },
@@ -247,6 +255,7 @@
247
255
  {"shape":"UnauthorizedException"},
248
256
  {"shape":"NotFoundException"},
249
257
  {"shape":"InternalServiceException"},
258
+ {"shape":"TaggingFailedException"},
250
259
  {"shape":"InvalidRequestException"}
251
260
  ]
252
261
  },
@@ -262,7 +271,8 @@
262
271
  {"shape":"InternalServiceException"},
263
272
  {"shape":"InvalidFleetStatusException"},
264
273
  {"shape":"UnauthorizedException"},
265
- {"shape":"InvalidRequestException"}
274
+ {"shape":"InvalidRequestException"},
275
+ {"shape":"TaggingFailedException"}
266
276
  ]
267
277
  },
268
278
  "DeleteGameSessionQueue":{
@@ -277,7 +287,8 @@
277
287
  {"shape":"InternalServiceException"},
278
288
  {"shape":"InvalidRequestException"},
279
289
  {"shape":"NotFoundException"},
280
- {"shape":"UnauthorizedException"}
290
+ {"shape":"UnauthorizedException"},
291
+ {"shape":"TaggingFailedException"}
281
292
  ]
282
293
  },
283
294
  "DeleteMatchmakingConfiguration":{
@@ -292,7 +303,8 @@
292
303
  {"shape":"InvalidRequestException"},
293
304
  {"shape":"NotFoundException"},
294
305
  {"shape":"InternalServiceException"},
295
- {"shape":"UnsupportedRegionException"}
306
+ {"shape":"UnsupportedRegionException"},
307
+ {"shape":"TaggingFailedException"}
296
308
  ]
297
309
  },
298
310
  "DeleteMatchmakingRuleSet":{
@@ -307,7 +319,8 @@
307
319
  {"shape":"InvalidRequestException"},
308
320
  {"shape":"InternalServiceException"},
309
321
  {"shape":"UnsupportedRegionException"},
310
- {"shape":"NotFoundException"}
322
+ {"shape":"NotFoundException"},
323
+ {"shape":"TaggingFailedException"}
311
324
  ]
312
325
  },
313
326
  "DeleteScalingPolicy":{
@@ -335,6 +348,7 @@
335
348
  {"shape":"InvalidRequestException"},
336
349
  {"shape":"UnauthorizedException"},
337
350
  {"shape":"NotFoundException"},
351
+ {"shape":"TaggingFailedException"},
338
352
  {"shape":"InternalServiceException"}
339
353
  ]
340
354
  },
@@ -783,6 +797,21 @@
783
797
  {"shape":"InternalServiceException"}
784
798
  ]
785
799
  },
800
+ "ListTagsForResource":{
801
+ "name":"ListTagsForResource",
802
+ "http":{
803
+ "method":"POST",
804
+ "requestUri":"/"
805
+ },
806
+ "input":{"shape":"ListTagsForResourceRequest"},
807
+ "output":{"shape":"ListTagsForResourceResponse"},
808
+ "errors":[
809
+ {"shape":"NotFoundException"},
810
+ {"shape":"InvalidRequestException"},
811
+ {"shape":"TaggingFailedException"},
812
+ {"shape":"InternalServiceException"}
813
+ ]
814
+ },
786
815
  "PutScalingPolicy":{
787
816
  "name":"PutScalingPolicy",
788
817
  "http":{
@@ -950,6 +979,36 @@
950
979
  {"shape":"UnsupportedRegionException"}
951
980
  ]
952
981
  },
982
+ "TagResource":{
983
+ "name":"TagResource",
984
+ "http":{
985
+ "method":"POST",
986
+ "requestUri":"/"
987
+ },
988
+ "input":{"shape":"TagResourceRequest"},
989
+ "output":{"shape":"TagResourceResponse"},
990
+ "errors":[
991
+ {"shape":"NotFoundException"},
992
+ {"shape":"InvalidRequestException"},
993
+ {"shape":"TaggingFailedException"},
994
+ {"shape":"InternalServiceException"}
995
+ ]
996
+ },
997
+ "UntagResource":{
998
+ "name":"UntagResource",
999
+ "http":{
1000
+ "method":"POST",
1001
+ "requestUri":"/"
1002
+ },
1003
+ "input":{"shape":"UntagResourceRequest"},
1004
+ "output":{"shape":"UntagResourceResponse"},
1005
+ "errors":[
1006
+ {"shape":"NotFoundException"},
1007
+ {"shape":"InvalidRequestException"},
1008
+ {"shape":"TaggingFailedException"},
1009
+ {"shape":"InternalServiceException"}
1010
+ ]
1011
+ },
953
1012
  "UpdateAlias":{
954
1013
  "name":"UpdateAlias",
955
1014
  "http":{
@@ -1167,12 +1226,17 @@
1167
1226
  },
1168
1227
  "AliasId":{
1169
1228
  "type":"string",
1170
- "pattern":"^alias-\\S+"
1229
+ "pattern":"^alias-\\S+|^arn:.*:alias\\/alias-\\S+"
1171
1230
  },
1172
1231
  "AliasList":{
1173
1232
  "type":"list",
1174
1233
  "member":{"shape":"Alias"}
1175
1234
  },
1235
+ "AmazonResourceName":{
1236
+ "type":"string",
1237
+ "max":1011,
1238
+ "min":1
1239
+ },
1176
1240
  "ArnStringModel":{
1177
1241
  "type":"string",
1178
1242
  "max":256,
@@ -1209,6 +1273,7 @@
1209
1273
  "type":"structure",
1210
1274
  "members":{
1211
1275
  "BuildId":{"shape":"BuildId"},
1276
+ "BuildArn":{"shape":"BuildArn"},
1212
1277
  "Name":{"shape":"FreeText"},
1213
1278
  "Version":{"shape":"FreeText"},
1214
1279
  "Status":{"shape":"BuildStatus"},
@@ -1217,9 +1282,13 @@
1217
1282
  "CreationTime":{"shape":"Timestamp"}
1218
1283
  }
1219
1284
  },
1285
+ "BuildArn":{
1286
+ "type":"string",
1287
+ "pattern":"^arn:.*:build\\/build-\\S+"
1288
+ },
1220
1289
  "BuildId":{
1221
1290
  "type":"string",
1222
- "pattern":"^build-\\S+"
1291
+ "pattern":"^build-\\S+|^arn:.*:build\\/build-\\S+"
1223
1292
  },
1224
1293
  "BuildList":{
1225
1294
  "type":"list",
@@ -1272,7 +1341,8 @@
1272
1341
  "members":{
1273
1342
  "Name":{"shape":"NonBlankAndLengthConstraintString"},
1274
1343
  "Description":{"shape":"NonZeroAndMaxString"},
1275
- "RoutingStrategy":{"shape":"RoutingStrategy"}
1344
+ "RoutingStrategy":{"shape":"RoutingStrategy"},
1345
+ "Tags":{"shape":"TagList"}
1276
1346
  }
1277
1347
  },
1278
1348
  "CreateAliasOutput":{
@@ -1287,7 +1357,8 @@
1287
1357
  "Name":{"shape":"NonZeroAndMaxString"},
1288
1358
  "Version":{"shape":"NonZeroAndMaxString"},
1289
1359
  "StorageLocation":{"shape":"S3Location"},
1290
- "OperatingSystem":{"shape":"OperatingSystem"}
1360
+ "OperatingSystem":{"shape":"OperatingSystem"},
1361
+ "Tags":{"shape":"TagList"}
1291
1362
  }
1292
1363
  },
1293
1364
  "CreateBuildOutput":{
@@ -1322,7 +1393,8 @@
1322
1393
  "PeerVpcId":{"shape":"NonZeroAndMaxString"},
1323
1394
  "FleetType":{"shape":"FleetType"},
1324
1395
  "InstanceRoleArn":{"shape":"NonEmptyString"},
1325
- "CertificateConfiguration":{"shape":"CertificateConfiguration"}
1396
+ "CertificateConfiguration":{"shape":"CertificateConfiguration"},
1397
+ "Tags":{"shape":"TagList"}
1326
1398
  }
1327
1399
  },
1328
1400
  "CreateFleetOutput":{
@@ -1359,7 +1431,8 @@
1359
1431
  "Name":{"shape":"GameSessionQueueName"},
1360
1432
  "TimeoutInSeconds":{"shape":"WholeNumber"},
1361
1433
  "PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
1362
- "Destinations":{"shape":"GameSessionQueueDestinationList"}
1434
+ "Destinations":{"shape":"GameSessionQueueDestinationList"},
1435
+ "Tags":{"shape":"TagList"}
1363
1436
  }
1364
1437
  },
1365
1438
  "CreateGameSessionQueueOutput":{
@@ -1384,13 +1457,14 @@
1384
1457
  "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
1385
1458
  "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
1386
1459
  "AcceptanceRequired":{"shape":"BooleanModel"},
1387
- "RuleSetName":{"shape":"MatchmakingIdStringModel"},
1460
+ "RuleSetName":{"shape":"MatchmakingRuleSetName"},
1388
1461
  "NotificationTarget":{"shape":"SnsArnStringModel"},
1389
1462
  "AdditionalPlayerCount":{"shape":"WholeNumber"},
1390
1463
  "CustomEventData":{"shape":"CustomEventData"},
1391
1464
  "GameProperties":{"shape":"GamePropertyList"},
1392
1465
  "GameSessionData":{"shape":"GameSessionData"},
1393
- "BackfillMode":{"shape":"BackfillMode"}
1466
+ "BackfillMode":{"shape":"BackfillMode"},
1467
+ "Tags":{"shape":"TagList"}
1394
1468
  }
1395
1469
  },
1396
1470
  "CreateMatchmakingConfigurationOutput":{
@@ -1407,7 +1481,8 @@
1407
1481
  ],
1408
1482
  "members":{
1409
1483
  "Name":{"shape":"MatchmakingIdStringModel"},
1410
- "RuleSetBody":{"shape":"RuleSetBody"}
1484
+ "RuleSetBody":{"shape":"RuleSetBody"},
1485
+ "Tags":{"shape":"TagList"}
1411
1486
  }
1412
1487
  },
1413
1488
  "CreateMatchmakingRuleSetOutput":{
@@ -1459,7 +1534,8 @@
1459
1534
  "Name":{"shape":"NonZeroAndMaxString"},
1460
1535
  "Version":{"shape":"NonZeroAndMaxString"},
1461
1536
  "StorageLocation":{"shape":"S3Location"},
1462
- "ZipFile":{"shape":"ZipBlob"}
1537
+ "ZipFile":{"shape":"ZipBlob"},
1538
+ "Tags":{"shape":"TagList"}
1463
1539
  }
1464
1540
  },
1465
1541
  "CreateScriptOutput":{
@@ -1545,7 +1621,7 @@
1545
1621
  "type":"structure",
1546
1622
  "required":["Name"],
1547
1623
  "members":{
1548
- "Name":{"shape":"MatchmakingIdStringModel"}
1624
+ "Name":{"shape":"MatchmakingConfigurationName"}
1549
1625
  }
1550
1626
  },
1551
1627
  "DeleteMatchmakingConfigurationOutput":{
@@ -1557,7 +1633,7 @@
1557
1633
  "type":"structure",
1558
1634
  "required":["Name"],
1559
1635
  "members":{
1560
- "Name":{"shape":"MatchmakingIdStringModel"}
1636
+ "Name":{"shape":"MatchmakingRuleSetName"}
1561
1637
  }
1562
1638
  },
1563
1639
  "DeleteMatchmakingRuleSetOutput":{
@@ -1813,8 +1889,8 @@
1813
1889
  "DescribeMatchmakingConfigurationsInput":{
1814
1890
  "type":"structure",
1815
1891
  "members":{
1816
- "Names":{"shape":"MatchmakingIdList"},
1817
- "RuleSetName":{"shape":"MatchmakingIdStringModel"},
1892
+ "Names":{"shape":"MatchmakingConfigurationNameList"},
1893
+ "RuleSetName":{"shape":"MatchmakingRuleSetName"},
1818
1894
  "Limit":{"shape":"PositiveInteger"},
1819
1895
  "NextToken":{"shape":"NonZeroAndMaxString"}
1820
1896
  }
@@ -2116,7 +2192,9 @@
2116
2192
  "TerminationTime":{"shape":"Timestamp"},
2117
2193
  "Status":{"shape":"FleetStatus"},
2118
2194
  "BuildId":{"shape":"BuildId"},
2195
+ "BuildArn":{"shape":"BuildArn"},
2119
2196
  "ScriptId":{"shape":"ScriptId"},
2197
+ "ScriptArn":{"shape":"ScriptArn"},
2120
2198
  "ServerLaunchPath":{"shape":"NonZeroAndMaxString"},
2121
2199
  "ServerLaunchParameters":{"shape":"NonZeroAndMaxString"},
2122
2200
  "LogPaths":{"shape":"StringList"},
@@ -2154,7 +2232,7 @@
2154
2232
  },
2155
2233
  "FleetId":{
2156
2234
  "type":"string",
2157
- "pattern":"^fleet-\\S+"
2235
+ "pattern":"^fleet-\\S+|^arn:.*:fleet\\/fleet-\\S+"
2158
2236
  },
2159
2237
  "FleetIdList":{
2160
2238
  "type":"list",
@@ -2228,6 +2306,7 @@
2228
2306
  "GameSessionId":{"shape":"NonZeroAndMaxString"},
2229
2307
  "Name":{"shape":"NonZeroAndMaxString"},
2230
2308
  "FleetId":{"shape":"FleetId"},
2309
+ "FleetArn":{"shape":"ArnStringModel"},
2231
2310
  "CreationTime":{"shape":"Timestamp"},
2232
2311
  "TerminationTime":{"shape":"Timestamp"},
2233
2312
  "CurrentPlayerSessionCount":{"shape":"WholeNumber"},
@@ -2345,9 +2424,9 @@
2345
2424
  },
2346
2425
  "GameSessionQueueName":{
2347
2426
  "type":"string",
2348
- "max":128,
2427
+ "max":256,
2349
2428
  "min":1,
2350
- "pattern":"[a-zA-Z0-9-]+"
2429
+ "pattern":"[a-zA-Z0-9-]+|^arn:.*:gamesessionqueue\\/[a-zA-Z0-9-]+"
2351
2430
  },
2352
2431
  "GameSessionQueueNameList":{
2353
2432
  "type":"list",
@@ -2588,6 +2667,19 @@
2588
2667
  "NextToken":{"shape":"NonEmptyString"}
2589
2668
  }
2590
2669
  },
2670
+ "ListTagsForResourceRequest":{
2671
+ "type":"structure",
2672
+ "required":["ResourceARN"],
2673
+ "members":{
2674
+ "ResourceARN":{"shape":"AmazonResourceName"}
2675
+ }
2676
+ },
2677
+ "ListTagsForResourceResponse":{
2678
+ "type":"structure",
2679
+ "members":{
2680
+ "Tags":{"shape":"TagList"}
2681
+ }
2682
+ },
2591
2683
  "MatchedPlayerSession":{
2592
2684
  "type":"structure",
2593
2685
  "members":{
@@ -2613,12 +2705,14 @@
2613
2705
  "type":"structure",
2614
2706
  "members":{
2615
2707
  "Name":{"shape":"MatchmakingIdStringModel"},
2708
+ "ConfigurationArn":{"shape":"MatchmakingConfigurationArn"},
2616
2709
  "Description":{"shape":"NonZeroAndMaxString"},
2617
2710
  "GameSessionQueueArns":{"shape":"QueueArnsList"},
2618
2711
  "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
2619
2712
  "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
2620
2713
  "AcceptanceRequired":{"shape":"BooleanModel"},
2621
2714
  "RuleSetName":{"shape":"MatchmakingIdStringModel"},
2715
+ "RuleSetArn":{"shape":"MatchmakingRuleSetArn"},
2622
2716
  "NotificationTarget":{"shape":"SnsArnStringModel"},
2623
2717
  "AdditionalPlayerCount":{"shape":"WholeNumber"},
2624
2718
  "CustomEventData":{"shape":"CustomEventData"},
@@ -2628,10 +2722,24 @@
2628
2722
  "BackfillMode":{"shape":"BackfillMode"}
2629
2723
  }
2630
2724
  },
2725
+ "MatchmakingConfigurationArn":{
2726
+ "type":"string",
2727
+ "pattern":"^arn:.*:matchmakingconfiguration\\/[a-zA-Z0-9-\\.]*"
2728
+ },
2631
2729
  "MatchmakingConfigurationList":{
2632
2730
  "type":"list",
2633
2731
  "member":{"shape":"MatchmakingConfiguration"}
2634
2732
  },
2733
+ "MatchmakingConfigurationName":{
2734
+ "type":"string",
2735
+ "max":256,
2736
+ "min":1,
2737
+ "pattern":"[a-zA-Z0-9-\\.]*|^arn:.*:matchmakingconfiguration\\/[a-zA-Z0-9-\\.]*"
2738
+ },
2739
+ "MatchmakingConfigurationNameList":{
2740
+ "type":"list",
2741
+ "member":{"shape":"MatchmakingConfigurationName"}
2742
+ },
2635
2743
  "MatchmakingConfigurationStatus":{
2636
2744
  "type":"string",
2637
2745
  "enum":[
@@ -2664,17 +2772,28 @@
2664
2772
  "required":["RuleSetBody"],
2665
2773
  "members":{
2666
2774
  "RuleSetName":{"shape":"MatchmakingIdStringModel"},
2775
+ "RuleSetArn":{"shape":"MatchmakingRuleSetArn"},
2667
2776
  "RuleSetBody":{"shape":"RuleSetBody"},
2668
2777
  "CreationTime":{"shape":"Timestamp"}
2669
2778
  }
2670
2779
  },
2780
+ "MatchmakingRuleSetArn":{
2781
+ "type":"string",
2782
+ "pattern":"^arn:.*:matchmakingruleset\\/[a-zA-Z0-9-\\.]*"
2783
+ },
2671
2784
  "MatchmakingRuleSetList":{
2672
2785
  "type":"list",
2673
2786
  "member":{"shape":"MatchmakingRuleSet"}
2674
2787
  },
2788
+ "MatchmakingRuleSetName":{
2789
+ "type":"string",
2790
+ "max":256,
2791
+ "min":1,
2792
+ "pattern":"[a-zA-Z0-9-\\.]*|^arn:.*:matchmakingruleset\\/[a-zA-Z0-9-\\.]*"
2793
+ },
2675
2794
  "MatchmakingRuleSetNameList":{
2676
2795
  "type":"list",
2677
- "member":{"shape":"MatchmakingIdStringModel"},
2796
+ "member":{"shape":"MatchmakingRuleSetName"},
2678
2797
  "max":10,
2679
2798
  "min":1
2680
2799
  },
@@ -2683,6 +2802,7 @@
2683
2802
  "members":{
2684
2803
  "TicketId":{"shape":"MatchmakingIdStringModel"},
2685
2804
  "ConfigurationName":{"shape":"MatchmakingIdStringModel"},
2805
+ "ConfigurationArn":{"shape":"MatchmakingConfigurationArn"},
2686
2806
  "Status":{"shape":"MatchmakingConfigurationStatus"},
2687
2807
  "StatusReason":{"shape":"StringModel"},
2688
2808
  "StatusMessage":{"shape":"StringModel"},
@@ -2837,6 +2957,7 @@
2837
2957
  "PlayerId":{"shape":"NonZeroAndMaxString"},
2838
2958
  "GameSessionId":{"shape":"NonZeroAndMaxString"},
2839
2959
  "FleetId":{"shape":"FleetId"},
2960
+ "FleetArn":{"shape":"ArnStringModel"},
2840
2961
  "CreationTime":{"shape":"Timestamp"},
2841
2962
  "TerminationTime":{"shape":"Timestamp"},
2842
2963
  "Status":{"shape":"PlayerSessionStatus"},
@@ -2951,7 +3072,8 @@
2951
3072
  "ResolveAliasOutput":{
2952
3073
  "type":"structure",
2953
3074
  "members":{
2954
- "FleetId":{"shape":"FleetId"}
3075
+ "FleetId":{"shape":"FleetId"},
3076
+ "FleetArn":{"shape":"ArnStringModel"}
2955
3077
  }
2956
3078
  },
2957
3079
  "ResourceCreationLimitPolicy":{
@@ -3047,6 +3169,7 @@
3047
3169
  "type":"structure",
3048
3170
  "members":{
3049
3171
  "ScriptId":{"shape":"ScriptId"},
3172
+ "ScriptArn":{"shape":"ScriptArn"},
3050
3173
  "Name":{"shape":"NonZeroAndMaxString"},
3051
3174
  "Version":{"shape":"NonZeroAndMaxString"},
3052
3175
  "SizeOnDisk":{"shape":"PositiveLong"},
@@ -3054,9 +3177,13 @@
3054
3177
  "StorageLocation":{"shape":"S3Location"}
3055
3178
  }
3056
3179
  },
3180
+ "ScriptArn":{
3181
+ "type":"string",
3182
+ "pattern":"^arn:.*:script\\/script-\\S+"
3183
+ },
3057
3184
  "ScriptId":{
3058
3185
  "type":"string",
3059
- "pattern":"^script-\\S+|^arn:.*script-\\S+"
3186
+ "pattern":"^script-\\S+|^arn:.*:script\\/script-\\S+"
3060
3187
  },
3061
3188
  "ScriptList":{
3062
3189
  "type":"list",
@@ -3153,7 +3280,7 @@
3153
3280
  ],
3154
3281
  "members":{
3155
3282
  "TicketId":{"shape":"MatchmakingIdStringModel"},
3156
- "ConfigurationName":{"shape":"MatchmakingIdStringModel"},
3283
+ "ConfigurationName":{"shape":"MatchmakingConfigurationName"},
3157
3284
  "GameSessionArn":{"shape":"ArnStringModel"},
3158
3285
  "Players":{"shape":"PlayerList"}
3159
3286
  }
@@ -3172,7 +3299,7 @@
3172
3299
  ],
3173
3300
  "members":{
3174
3301
  "TicketId":{"shape":"MatchmakingIdStringModel"},
3175
- "ConfigurationName":{"shape":"MatchmakingIdStringModel"},
3302
+ "ConfigurationName":{"shape":"MatchmakingConfigurationName"},
3176
3303
  "Players":{"shape":"PlayerList"}
3177
3304
  }
3178
3305
  },
@@ -3233,6 +3360,62 @@
3233
3360
  "member":{"shape":"NonZeroAndMaxString"}
3234
3361
  },
3235
3362
  "StringModel":{"type":"string"},
3363
+ "Tag":{
3364
+ "type":"structure",
3365
+ "required":[
3366
+ "Key",
3367
+ "Value"
3368
+ ],
3369
+ "members":{
3370
+ "Key":{"shape":"TagKey"},
3371
+ "Value":{"shape":"TagValue"}
3372
+ }
3373
+ },
3374
+ "TagKey":{
3375
+ "type":"string",
3376
+ "max":128,
3377
+ "min":1
3378
+ },
3379
+ "TagKeyList":{
3380
+ "type":"list",
3381
+ "member":{"shape":"TagKey"},
3382
+ "max":200,
3383
+ "min":0
3384
+ },
3385
+ "TagList":{
3386
+ "type":"list",
3387
+ "member":{"shape":"Tag"},
3388
+ "max":200,
3389
+ "min":0
3390
+ },
3391
+ "TagResourceRequest":{
3392
+ "type":"structure",
3393
+ "required":[
3394
+ "ResourceARN",
3395
+ "Tags"
3396
+ ],
3397
+ "members":{
3398
+ "ResourceARN":{"shape":"AmazonResourceName"},
3399
+ "Tags":{"shape":"TagList"}
3400
+ }
3401
+ },
3402
+ "TagResourceResponse":{
3403
+ "type":"structure",
3404
+ "members":{
3405
+ }
3406
+ },
3407
+ "TagValue":{
3408
+ "type":"string",
3409
+ "max":256,
3410
+ "min":0
3411
+ },
3412
+ "TaggingFailedException":{
3413
+ "type":"structure",
3414
+ "members":{
3415
+ "Message":{"shape":"NonEmptyString"}
3416
+ },
3417
+ "exception":true
3418
+ },
3236
3419
  "TargetConfiguration":{
3237
3420
  "type":"structure",
3238
3421
  "required":["TargetValue"],
@@ -3262,6 +3445,22 @@
3262
3445
  },
3263
3446
  "exception":true
3264
3447
  },
3448
+ "UntagResourceRequest":{
3449
+ "type":"structure",
3450
+ "required":[
3451
+ "ResourceARN",
3452
+ "TagKeys"
3453
+ ],
3454
+ "members":{
3455
+ "ResourceARN":{"shape":"AmazonResourceName"},
3456
+ "TagKeys":{"shape":"TagKeyList"}
3457
+ }
3458
+ },
3459
+ "UntagResourceResponse":{
3460
+ "type":"structure",
3461
+ "members":{
3462
+ }
3463
+ },
3265
3464
  "UpdateAliasInput":{
3266
3465
  "type":"structure",
3267
3466
  "required":["AliasId"],
@@ -3379,13 +3578,13 @@
3379
3578
  "type":"structure",
3380
3579
  "required":["Name"],
3381
3580
  "members":{
3382
- "Name":{"shape":"MatchmakingIdStringModel"},
3581
+ "Name":{"shape":"MatchmakingConfigurationName"},
3383
3582
  "Description":{"shape":"NonZeroAndMaxString"},
3384
3583
  "GameSessionQueueArns":{"shape":"QueueArnsList"},
3385
3584
  "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
3386
3585
  "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
3387
3586
  "AcceptanceRequired":{"shape":"BooleanModel"},
3388
- "RuleSetName":{"shape":"MatchmakingIdStringModel"},
3587
+ "RuleSetName":{"shape":"MatchmakingRuleSetName"},
3389
3588
  "NotificationTarget":{"shape":"SnsArnStringModel"},
3390
3589
  "AdditionalPlayerCount":{"shape":"WholeNumber"},
3391
3590
  "CustomEventData":{"shape":"CustomEventData"},
@@ -3465,6 +3664,7 @@
3465
3664
  "type":"structure",
3466
3665
  "members":{
3467
3666
  "FleetId":{"shape":"FleetId"},
3667
+ "FleetArn":{"shape":"ArnStringModel"},
3468
3668
  "IpV4CidrBlock":{"shape":"NonZeroAndMaxString"},
3469
3669
  "VpcPeeringConnectionId":{"shape":"NonZeroAndMaxString"},
3470
3670
  "Status":{"shape":"VpcPeeringConnectionStatus"},