aws-sdk-core 2.11.554 → 2.11.555

Sign up to get free protection for your applications and to get access to all the features.
@@ -432,6 +432,20 @@
432
432
  {"shape":"InternalServerErrorException"}
433
433
  ]
434
434
  },
435
+ "GetMemberDetectors":{
436
+ "name":"GetMemberDetectors",
437
+ "http":{
438
+ "method":"POST",
439
+ "requestUri":"/detector/{detectorId}/member/detector/get",
440
+ "responseCode":200
441
+ },
442
+ "input":{"shape":"GetMemberDetectorsRequest"},
443
+ "output":{"shape":"GetMemberDetectorsResponse"},
444
+ "errors":[
445
+ {"shape":"BadRequestException"},
446
+ {"shape":"InternalServerErrorException"}
447
+ ]
448
+ },
435
449
  "GetMembers":{
436
450
  "name":"GetMembers",
437
451
  "http":{
@@ -740,6 +754,20 @@
740
754
  {"shape":"InternalServerErrorException"}
741
755
  ]
742
756
  },
757
+ "UpdateMemberDetectors":{
758
+ "name":"UpdateMemberDetectors",
759
+ "http":{
760
+ "method":"POST",
761
+ "requestUri":"/detector/{detectorId}/member/detector/update",
762
+ "responseCode":200
763
+ },
764
+ "input":{"shape":"UpdateMemberDetectorsRequest"},
765
+ "output":{"shape":"UpdateMemberDetectorsResponse"},
766
+ "errors":[
767
+ {"shape":"BadRequestException"},
768
+ {"shape":"InternalServerErrorException"}
769
+ ]
770
+ },
743
771
  "UpdateOrganizationConfiguration":{
744
772
  "name":"UpdateOrganizationConfiguration",
745
773
  "http":{
@@ -1071,6 +1099,16 @@
1071
1099
  "max":64,
1072
1100
  "min":0
1073
1101
  },
1102
+ "CloudTrailConfigurationResult":{
1103
+ "type":"structure",
1104
+ "required":["Status"],
1105
+ "members":{
1106
+ "Status":{
1107
+ "shape":"DataSourceStatus",
1108
+ "locationName":"status"
1109
+ }
1110
+ }
1111
+ },
1074
1112
  "Condition":{
1075
1113
  "type":"structure",
1076
1114
  "members":{
@@ -1165,6 +1203,10 @@
1165
1203
  "shape":"FindingPublishingFrequency",
1166
1204
  "locationName":"findingPublishingFrequency"
1167
1205
  },
1206
+ "DataSources":{
1207
+ "shape":"DataSourceConfigurations",
1208
+ "locationName":"dataSources"
1209
+ },
1168
1210
  "Tags":{
1169
1211
  "shape":"TagMap",
1170
1212
  "locationName":"tags"
@@ -1429,6 +1471,61 @@
1429
1471
  "key":{"shape":"String"},
1430
1472
  "value":{"shape":"Condition"}
1431
1473
  },
1474
+ "DNSLogsConfigurationResult":{
1475
+ "type":"structure",
1476
+ "required":["Status"],
1477
+ "members":{
1478
+ "Status":{
1479
+ "shape":"DataSourceStatus",
1480
+ "locationName":"status"
1481
+ }
1482
+ }
1483
+ },
1484
+ "DataSourceConfigurations":{
1485
+ "type":"structure",
1486
+ "members":{
1487
+ "S3Logs":{
1488
+ "shape":"S3LogsConfiguration",
1489
+ "locationName":"s3Logs"
1490
+ }
1491
+ }
1492
+ },
1493
+ "DataSourceConfigurationsResult":{
1494
+ "type":"structure",
1495
+ "required":[
1496
+ "CloudTrail",
1497
+ "DNSLogs",
1498
+ "FlowLogs",
1499
+ "S3Logs"
1500
+ ],
1501
+ "members":{
1502
+ "CloudTrail":{
1503
+ "shape":"CloudTrailConfigurationResult",
1504
+ "locationName":"cloudTrail"
1505
+ },
1506
+ "DNSLogs":{
1507
+ "shape":"DNSLogsConfigurationResult",
1508
+ "locationName":"dnsLogs"
1509
+ },
1510
+ "FlowLogs":{
1511
+ "shape":"FlowLogsConfigurationResult",
1512
+ "locationName":"flowLogs"
1513
+ },
1514
+ "S3Logs":{
1515
+ "shape":"S3LogsConfigurationResult",
1516
+ "locationName":"s3Logs"
1517
+ }
1518
+ }
1519
+ },
1520
+ "DataSourceStatus":{
1521
+ "type":"string",
1522
+ "enum":[
1523
+ "ENABLED",
1524
+ "DISABLED"
1525
+ ],
1526
+ "max":300,
1527
+ "min":1
1528
+ },
1432
1529
  "DeclineInvitationsRequest":{
1433
1530
  "type":"structure",
1434
1531
  "required":["AccountIds"],
@@ -1647,6 +1744,10 @@
1647
1744
  "MemberAccountLimitReached":{
1648
1745
  "shape":"Boolean",
1649
1746
  "locationName":"memberAccountLimitReached"
1747
+ },
1748
+ "DataSources":{
1749
+ "shape":"OrganizationDataSourceConfigurationsResult",
1750
+ "locationName":"dataSources"
1650
1751
  }
1651
1752
  }
1652
1753
  },
@@ -2059,6 +2160,16 @@
2059
2160
  "max":50,
2060
2161
  "min":0
2061
2162
  },
2163
+ "FlowLogsConfigurationResult":{
2164
+ "type":"structure",
2165
+ "required":["Status"],
2166
+ "members":{
2167
+ "Status":{
2168
+ "shape":"DataSourceStatus",
2169
+ "locationName":"status"
2170
+ }
2171
+ }
2172
+ },
2062
2173
  "GeoLocation":{
2063
2174
  "type":"structure",
2064
2175
  "members":{
@@ -2110,6 +2221,10 @@
2110
2221
  "shape":"String",
2111
2222
  "locationName":"updatedAt"
2112
2223
  },
2224
+ "DataSources":{
2225
+ "shape":"DataSourceConfigurationsResult",
2226
+ "locationName":"dataSources"
2227
+ },
2113
2228
  "Tags":{
2114
2229
  "shape":"TagMap",
2115
2230
  "locationName":"tags"
@@ -2318,6 +2433,41 @@
2318
2433
  }
2319
2434
  }
2320
2435
  },
2436
+ "GetMemberDetectorsRequest":{
2437
+ "type":"structure",
2438
+ "required":[
2439
+ "DetectorId",
2440
+ "AccountIds"
2441
+ ],
2442
+ "members":{
2443
+ "DetectorId":{
2444
+ "shape":"DetectorId",
2445
+ "location":"uri",
2446
+ "locationName":"detectorId"
2447
+ },
2448
+ "AccountIds":{
2449
+ "shape":"AccountIds",
2450
+ "locationName":"accountIds"
2451
+ }
2452
+ }
2453
+ },
2454
+ "GetMemberDetectorsResponse":{
2455
+ "type":"structure",
2456
+ "required":[
2457
+ "MemberDataSourceConfigurations",
2458
+ "UnprocessedAccounts"
2459
+ ],
2460
+ "members":{
2461
+ "MemberDataSourceConfigurations":{
2462
+ "shape":"MemberDataSourceConfigurations",
2463
+ "locationName":"members"
2464
+ },
2465
+ "UnprocessedAccounts":{
2466
+ "shape":"UnprocessedAccounts",
2467
+ "locationName":"unprocessedAccounts"
2468
+ }
2469
+ }
2470
+ },
2321
2471
  "GetMembersRequest":{
2322
2472
  "type":"structure",
2323
2473
  "required":[
@@ -3012,6 +3162,29 @@
3012
3162
  }
3013
3163
  }
3014
3164
  },
3165
+ "MemberDataSourceConfiguration":{
3166
+ "type":"structure",
3167
+ "required":[
3168
+ "AccountId",
3169
+ "DataSources"
3170
+ ],
3171
+ "members":{
3172
+ "AccountId":{
3173
+ "shape":"AccountId",
3174
+ "locationName":"accountId"
3175
+ },
3176
+ "DataSources":{
3177
+ "shape":"DataSourceConfigurationsResult",
3178
+ "locationName":"dataSources"
3179
+ }
3180
+ }
3181
+ },
3182
+ "MemberDataSourceConfigurations":{
3183
+ "type":"list",
3184
+ "member":{"shape":"MemberDataSourceConfiguration"},
3185
+ "max":50,
3186
+ "min":1
3187
+ },
3015
3188
  "Members":{
3016
3189
  "type":"list",
3017
3190
  "member":{"shape":"Member"},
@@ -3141,6 +3314,45 @@
3141
3314
  }
3142
3315
  }
3143
3316
  },
3317
+ "OrganizationDataSourceConfigurations":{
3318
+ "type":"structure",
3319
+ "members":{
3320
+ "S3Logs":{
3321
+ "shape":"OrganizationS3LogsConfiguration",
3322
+ "locationName":"s3Logs"
3323
+ }
3324
+ }
3325
+ },
3326
+ "OrganizationDataSourceConfigurationsResult":{
3327
+ "type":"structure",
3328
+ "required":["S3Logs"],
3329
+ "members":{
3330
+ "S3Logs":{
3331
+ "shape":"OrganizationS3LogsConfigurationResult",
3332
+ "locationName":"s3Logs"
3333
+ }
3334
+ }
3335
+ },
3336
+ "OrganizationS3LogsConfiguration":{
3337
+ "type":"structure",
3338
+ "required":["AutoEnable"],
3339
+ "members":{
3340
+ "AutoEnable":{
3341
+ "shape":"Boolean",
3342
+ "locationName":"autoEnable"
3343
+ }
3344
+ }
3345
+ },
3346
+ "OrganizationS3LogsConfigurationResult":{
3347
+ "type":"structure",
3348
+ "required":["AutoEnable"],
3349
+ "members":{
3350
+ "AutoEnable":{
3351
+ "shape":"Boolean",
3352
+ "locationName":"autoEnable"
3353
+ }
3354
+ }
3355
+ },
3144
3356
  "Owner":{
3145
3357
  "type":"structure",
3146
3358
  "members":{
@@ -3355,6 +3567,26 @@
3355
3567
  "type":"list",
3356
3568
  "member":{"shape":"S3BucketDetail"}
3357
3569
  },
3570
+ "S3LogsConfiguration":{
3571
+ "type":"structure",
3572
+ "required":["Enable"],
3573
+ "members":{
3574
+ "Enable":{
3575
+ "shape":"Boolean",
3576
+ "locationName":"enable"
3577
+ }
3578
+ }
3579
+ },
3580
+ "S3LogsConfigurationResult":{
3581
+ "type":"structure",
3582
+ "required":["Status"],
3583
+ "members":{
3584
+ "Status":{
3585
+ "shape":"DataSourceStatus",
3586
+ "locationName":"status"
3587
+ }
3588
+ }
3589
+ },
3358
3590
  "SecurityGroup":{
3359
3591
  "type":"structure",
3360
3592
  "members":{
@@ -3691,6 +3923,10 @@
3691
3923
  "FindingPublishingFrequency":{
3692
3924
  "shape":"FindingPublishingFrequency",
3693
3925
  "locationName":"findingPublishingFrequency"
3926
+ },
3927
+ "DataSources":{
3928
+ "shape":"DataSourceConfigurations",
3929
+ "locationName":"dataSources"
3694
3930
  }
3695
3931
  }
3696
3932
  },
@@ -3812,6 +4048,38 @@
3812
4048
  "members":{
3813
4049
  }
3814
4050
  },
4051
+ "UpdateMemberDetectorsRequest":{
4052
+ "type":"structure",
4053
+ "required":[
4054
+ "DetectorId",
4055
+ "AccountIds"
4056
+ ],
4057
+ "members":{
4058
+ "DetectorId":{
4059
+ "shape":"DetectorId",
4060
+ "location":"uri",
4061
+ "locationName":"detectorId"
4062
+ },
4063
+ "AccountIds":{
4064
+ "shape":"AccountIds",
4065
+ "locationName":"accountIds"
4066
+ },
4067
+ "DataSources":{
4068
+ "shape":"DataSourceConfigurations",
4069
+ "locationName":"dataSources"
4070
+ }
4071
+ }
4072
+ },
4073
+ "UpdateMemberDetectorsResponse":{
4074
+ "type":"structure",
4075
+ "required":["UnprocessedAccounts"],
4076
+ "members":{
4077
+ "UnprocessedAccounts":{
4078
+ "shape":"UnprocessedAccounts",
4079
+ "locationName":"unprocessedAccounts"
4080
+ }
4081
+ }
4082
+ },
3815
4083
  "UpdateOrganizationConfigurationRequest":{
3816
4084
  "type":"structure",
3817
4085
  "required":[
@@ -3827,6 +4095,10 @@
3827
4095
  "AutoEnable":{
3828
4096
  "shape":"Boolean",
3829
4097
  "locationName":"autoEnable"
4098
+ },
4099
+ "DataSources":{
4100
+ "shape":"OrganizationDataSourceConfigurations",
4101
+ "locationName":"dataSources"
3830
4102
  }
3831
4103
  }
3832
4104
  },
@@ -31,8 +31,8 @@
31
31
  "DeleteGroup":{
32
32
  "name":"DeleteGroup",
33
33
  "http":{
34
- "method":"DELETE",
35
- "requestUri":"/groups/{GroupName}"
34
+ "method":"POST",
35
+ "requestUri":"/delete-group"
36
36
  },
37
37
  "input":{"shape":"DeleteGroupInput"},
38
38
  "output":{"shape":"DeleteGroupOutput"},
@@ -48,8 +48,8 @@
48
48
  "GetGroup":{
49
49
  "name":"GetGroup",
50
50
  "http":{
51
- "method":"GET",
52
- "requestUri":"/groups/{GroupName}"
51
+ "method":"POST",
52
+ "requestUri":"/get-group"
53
53
  },
54
54
  "input":{"shape":"GetGroupInput"},
55
55
  "output":{"shape":"GetGroupOutput"},
@@ -62,11 +62,28 @@
62
62
  {"shape":"InternalServerErrorException"}
63
63
  ]
64
64
  },
65
+ "GetGroupConfiguration":{
66
+ "name":"GetGroupConfiguration",
67
+ "http":{
68
+ "method":"POST",
69
+ "requestUri":"/get-group-configuration"
70
+ },
71
+ "input":{"shape":"GetGroupConfigurationInput"},
72
+ "output":{"shape":"GetGroupConfigurationOutput"},
73
+ "errors":[
74
+ {"shape":"BadRequestException"},
75
+ {"shape":"ForbiddenException"},
76
+ {"shape":"NotFoundException"},
77
+ {"shape":"MethodNotAllowedException"},
78
+ {"shape":"TooManyRequestsException"},
79
+ {"shape":"InternalServerErrorException"}
80
+ ]
81
+ },
65
82
  "GetGroupQuery":{
66
83
  "name":"GetGroupQuery",
67
84
  "http":{
68
- "method":"GET",
69
- "requestUri":"/groups/{GroupName}/query"
85
+ "method":"POST",
86
+ "requestUri":"/get-group-query"
70
87
  },
71
88
  "input":{"shape":"GetGroupQueryInput"},
72
89
  "output":{"shape":"GetGroupQueryOutput"},
@@ -96,11 +113,28 @@
96
113
  {"shape":"InternalServerErrorException"}
97
114
  ]
98
115
  },
116
+ "GroupResources":{
117
+ "name":"GroupResources",
118
+ "http":{
119
+ "method":"POST",
120
+ "requestUri":"/group-resources"
121
+ },
122
+ "input":{"shape":"GroupResourcesInput"},
123
+ "output":{"shape":"GroupResourcesOutput"},
124
+ "errors":[
125
+ {"shape":"BadRequestException"},
126
+ {"shape":"ForbiddenException"},
127
+ {"shape":"NotFoundException"},
128
+ {"shape":"MethodNotAllowedException"},
129
+ {"shape":"TooManyRequestsException"},
130
+ {"shape":"InternalServerErrorException"}
131
+ ]
132
+ },
99
133
  "ListGroupResources":{
100
134
  "name":"ListGroupResources",
101
135
  "http":{
102
136
  "method":"POST",
103
- "requestUri":"/groups/{GroupName}/resource-identifiers-list"
137
+ "requestUri":"/list-group-resources"
104
138
  },
105
139
  "input":{"shape":"ListGroupResourcesInput"},
106
140
  "output":{"shape":"ListGroupResourcesOutput"},
@@ -164,6 +198,23 @@
164
198
  {"shape":"InternalServerErrorException"}
165
199
  ]
166
200
  },
201
+ "UngroupResources":{
202
+ "name":"UngroupResources",
203
+ "http":{
204
+ "method":"POST",
205
+ "requestUri":"/ungroup-resources"
206
+ },
207
+ "input":{"shape":"UngroupResourcesInput"},
208
+ "output":{"shape":"UngroupResourcesOutput"},
209
+ "errors":[
210
+ {"shape":"BadRequestException"},
211
+ {"shape":"ForbiddenException"},
212
+ {"shape":"NotFoundException"},
213
+ {"shape":"MethodNotAllowedException"},
214
+ {"shape":"TooManyRequestsException"},
215
+ {"shape":"InternalServerErrorException"}
216
+ ]
217
+ },
167
218
  "Untag":{
168
219
  "name":"Untag",
169
220
  "http":{
@@ -184,8 +235,8 @@
184
235
  "UpdateGroup":{
185
236
  "name":"UpdateGroup",
186
237
  "http":{
187
- "method":"PUT",
188
- "requestUri":"/groups/{GroupName}"
238
+ "method":"POST",
239
+ "requestUri":"/update-group"
189
240
  },
190
241
  "input":{"shape":"UpdateGroupInput"},
191
242
  "output":{"shape":"UpdateGroupOutput"},
@@ -201,8 +252,8 @@
201
252
  "UpdateGroupQuery":{
202
253
  "name":"UpdateGroupQuery",
203
254
  "http":{
204
- "method":"PUT",
205
- "requestUri":"/groups/{GroupName}/query"
255
+ "method":"POST",
256
+ "requestUri":"/update-group-query"
206
257
  },
207
258
  "input":{"shape":"UpdateGroupQueryInput"},
208
259
  "output":{"shape":"UpdateGroupQueryOutput"},
@@ -227,15 +278,13 @@
227
278
  },
228
279
  "CreateGroupInput":{
229
280
  "type":"structure",
230
- "required":[
231
- "Name",
232
- "ResourceQuery"
233
- ],
281
+ "required":["Name"],
234
282
  "members":{
235
283
  "Name":{"shape":"GroupName"},
236
- "Description":{"shape":"GroupDescription"},
284
+ "Description":{"shape":"Description"},
237
285
  "ResourceQuery":{"shape":"ResourceQuery"},
238
- "Tags":{"shape":"Tags"}
286
+ "Tags":{"shape":"Tags"},
287
+ "Configuration":{"shape":"GroupConfigurationList"}
239
288
  }
240
289
  },
241
290
  "CreateGroupOutput":{
@@ -243,18 +292,19 @@
243
292
  "members":{
244
293
  "Group":{"shape":"Group"},
245
294
  "ResourceQuery":{"shape":"ResourceQuery"},
246
- "Tags":{"shape":"Tags"}
295
+ "Tags":{"shape":"Tags"},
296
+ "GroupConfiguration":{"shape":"GroupConfiguration"}
247
297
  }
248
298
  },
249
299
  "DeleteGroupInput":{
250
300
  "type":"structure",
251
- "required":["GroupName"],
252
301
  "members":{
253
302
  "GroupName":{
254
303
  "shape":"GroupName",
255
- "location":"uri",
256
- "locationName":"GroupName"
257
- }
304
+ "deprecated":true,
305
+ "deprecatedMessage":"This field is deprecated, use Group instead."
306
+ },
307
+ "Group":{"shape":"GroupString"}
258
308
  }
259
309
  },
260
310
  "DeleteGroupOutput":{
@@ -263,11 +313,33 @@
263
313
  "Group":{"shape":"Group"}
264
314
  }
265
315
  },
316
+ "Description":{
317
+ "type":"string",
318
+ "max":512,
319
+ "pattern":"[\\sa-zA-Z0-9_\\.-]*"
320
+ },
321
+ "ErrorCode":{
322
+ "type":"string",
323
+ "max":128,
324
+ "min":1
325
+ },
266
326
  "ErrorMessage":{
267
327
  "type":"string",
268
328
  "max":1024,
269
329
  "min":1
270
330
  },
331
+ "FailedResource":{
332
+ "type":"structure",
333
+ "members":{
334
+ "ResourceArn":{"shape":"ResourceArn"},
335
+ "ErrorMessage":{"shape":"ErrorMessage"},
336
+ "ErrorCode":{"shape":"ErrorCode"}
337
+ }
338
+ },
339
+ "FailedResourceList":{
340
+ "type":"list",
341
+ "member":{"shape":"FailedResource"}
342
+ },
271
343
  "ForbiddenException":{
272
344
  "type":"structure",
273
345
  "members":{
@@ -276,15 +348,27 @@
276
348
  "error":{"httpStatusCode":403},
277
349
  "exception":true
278
350
  },
351
+ "GetGroupConfigurationInput":{
352
+ "type":"structure",
353
+ "members":{
354
+ "Group":{"shape":"GroupString"}
355
+ }
356
+ },
357
+ "GetGroupConfigurationOutput":{
358
+ "type":"structure",
359
+ "members":{
360
+ "GroupConfiguration":{"shape":"GroupConfiguration"}
361
+ }
362
+ },
279
363
  "GetGroupInput":{
280
364
  "type":"structure",
281
- "required":["GroupName"],
282
365
  "members":{
283
366
  "GroupName":{
284
367
  "shape":"GroupName",
285
- "location":"uri",
286
- "locationName":"GroupName"
287
- }
368
+ "deprecated":true,
369
+ "deprecatedMessage":"This field is deprecated, use Group instead."
370
+ },
371
+ "Group":{"shape":"GroupString"}
288
372
  }
289
373
  },
290
374
  "GetGroupOutput":{
@@ -295,13 +379,13 @@
295
379
  },
296
380
  "GetGroupQueryInput":{
297
381
  "type":"structure",
298
- "required":["GroupName"],
299
382
  "members":{
300
383
  "GroupName":{
301
384
  "shape":"GroupName",
302
- "location":"uri",
303
- "locationName":"GroupName"
304
- }
385
+ "deprecated":true,
386
+ "deprecatedMessage":"This field is deprecated, use Group instead."
387
+ },
388
+ "Group":{"shape":"GroupString"}
305
389
  }
306
390
  },
307
391
  "GetGroupQueryOutput":{
@@ -337,19 +421,74 @@
337
421
  "members":{
338
422
  "GroupArn":{"shape":"GroupArn"},
339
423
  "Name":{"shape":"GroupName"},
340
- "Description":{"shape":"GroupDescription"}
424
+ "Description":{"shape":"Description"}
341
425
  }
342
426
  },
343
427
  "GroupArn":{
344
428
  "type":"string",
345
429
  "max":1600,
346
430
  "min":12,
347
- "pattern":"arn:aws(-[a-z]+)*:resource-groups:[a-z]{2}-[a-z]+-\\d{1}:[0-9]{12}:group/[a-zA-Z0-9_\\.-]{1,128}"
431
+ "pattern":"arn:aws(-[a-z]+)*:resource-groups:[a-z]{2}(-[a-z]+)+-\\d{1}:[0-9]{12}:group/[a-zA-Z0-9_\\.-]{1,128}"
432
+ },
433
+ "GroupConfiguration":{
434
+ "type":"structure",
435
+ "members":{
436
+ "Configuration":{"shape":"GroupConfigurationList"},
437
+ "ProposedConfiguration":{"shape":"GroupConfigurationList"},
438
+ "Status":{"shape":"GroupConfigurationStatus"},
439
+ "FailureReason":{"shape":"GroupConfigurationFailureReason"}
440
+ }
441
+ },
442
+ "GroupConfigurationFailureReason":{"type":"string"},
443
+ "GroupConfigurationItem":{
444
+ "type":"structure",
445
+ "required":["Type"],
446
+ "members":{
447
+ "Type":{"shape":"GroupConfigurationType"},
448
+ "Parameters":{"shape":"GroupParameterList"}
449
+ }
450
+ },
451
+ "GroupConfigurationList":{
452
+ "type":"list",
453
+ "member":{"shape":"GroupConfigurationItem"},
454
+ "max":2
348
455
  },
349
- "GroupDescription":{
456
+ "GroupConfigurationParameter":{
457
+ "type":"structure",
458
+ "required":["Name"],
459
+ "members":{
460
+ "Name":{"shape":"GroupConfigurationParameterName"},
461
+ "Values":{"shape":"GroupConfigurationParameterValueList"}
462
+ }
463
+ },
464
+ "GroupConfigurationParameterName":{
350
465
  "type":"string",
351
- "max":512,
352
- "pattern":"[\\sa-zA-Z0-9_\\.-]*"
466
+ "max":40,
467
+ "min":1,
468
+ "pattern":"[a-z-]+"
469
+ },
470
+ "GroupConfigurationParameterValue":{
471
+ "type":"string",
472
+ "max":40,
473
+ "min":1,
474
+ "pattern":"[a-zA-Z0-9:]+"
475
+ },
476
+ "GroupConfigurationParameterValueList":{
477
+ "type":"list",
478
+ "member":{"shape":"GroupConfigurationParameterValue"}
479
+ },
480
+ "GroupConfigurationStatus":{
481
+ "type":"string",
482
+ "enum":[
483
+ "UPDATING",
484
+ "UPDATE_COMPLETE",
485
+ "UPDATE_FAILED"
486
+ ]
487
+ },
488
+ "GroupConfigurationType":{
489
+ "type":"string",
490
+ "max":40,
491
+ "pattern":"AWS::[a-zA-Z0-9]+::[a-zA-Z0-9]+"
353
492
  },
354
493
  "GroupFilter":{
355
494
  "type":"structure",
@@ -368,7 +507,10 @@
368
507
  },
369
508
  "GroupFilterName":{
370
509
  "type":"string",
371
- "enum":["resource-type"]
510
+ "enum":[
511
+ "resource-type",
512
+ "configuration-type"
513
+ ]
372
514
  },
373
515
  "GroupFilterValue":{
374
516
  "type":"string",
@@ -403,6 +545,10 @@
403
545
  "min":1,
404
546
  "pattern":"[a-zA-Z0-9_\\.-]+"
405
547
  },
548
+ "GroupParameterList":{
549
+ "type":"list",
550
+ "member":{"shape":"GroupConfigurationParameter"}
551
+ },
406
552
  "GroupQuery":{
407
553
  "type":"structure",
408
554
  "required":[
@@ -414,6 +560,30 @@
414
560
  "ResourceQuery":{"shape":"ResourceQuery"}
415
561
  }
416
562
  },
563
+ "GroupResourcesInput":{
564
+ "type":"structure",
565
+ "required":[
566
+ "Group",
567
+ "ResourceArns"
568
+ ],
569
+ "members":{
570
+ "Group":{"shape":"GroupString"},
571
+ "ResourceArns":{"shape":"ResourceArnList"}
572
+ }
573
+ },
574
+ "GroupResourcesOutput":{
575
+ "type":"structure",
576
+ "members":{
577
+ "Succeeded":{"shape":"ResourceArnList"},
578
+ "Failed":{"shape":"FailedResourceList"}
579
+ }
580
+ },
581
+ "GroupString":{
582
+ "type":"string",
583
+ "max":1600,
584
+ "min":1,
585
+ "pattern":"(arn:aws(-[a-z]+)*:resource-groups:[a-z]{2}(-[a-z]+)+-\\d{1}:[0-9]{12}:group/)?[a-zA-Z0-9_\\.-]{1,128}"
586
+ },
417
587
  "InternalServerErrorException":{
418
588
  "type":"structure",
419
589
  "members":{
@@ -424,24 +594,16 @@
424
594
  },
425
595
  "ListGroupResourcesInput":{
426
596
  "type":"structure",
427
- "required":["GroupName"],
428
597
  "members":{
429
598
  "GroupName":{
430
599
  "shape":"GroupName",
431
- "location":"uri",
432
- "locationName":"GroupName"
600
+ "deprecated":true,
601
+ "deprecatedMessage":"This field is deprecated, use Group instead."
433
602
  },
603
+ "Group":{"shape":"GroupString"},
434
604
  "Filters":{"shape":"ResourceFilterList"},
435
- "MaxResults":{
436
- "shape":"MaxResults",
437
- "location":"querystring",
438
- "locationName":"maxResults"
439
- },
440
- "NextToken":{
441
- "shape":"NextToken",
442
- "location":"querystring",
443
- "locationName":"nextToken"
444
- }
605
+ "MaxResults":{"shape":"MaxResults"},
606
+ "NextToken":{"shape":"NextToken"}
445
607
  }
446
608
  },
447
609
  "ListGroupResourcesOutput":{
@@ -543,7 +705,13 @@
543
705
  },
544
706
  "ResourceArn":{
545
707
  "type":"string",
546
- "pattern":"arn:aws(-[a-z]+)*:[a-z0-9\\-]*:([a-z]{2}-[a-z]+-\\d{1})?:([0-9]{12})?:.+"
708
+ "pattern":"arn:aws(-[a-z]+)*:[a-z0-9\\-]*:([a-z]{2}(-[a-z]+)+-\\d{1})?:([0-9]{12})?:.+"
709
+ },
710
+ "ResourceArnList":{
711
+ "type":"list",
712
+ "member":{"shape":"ResourceArn"},
713
+ "max":10,
714
+ "min":1
547
715
  },
548
716
  "ResourceFilter":{
549
717
  "type":"structure",
@@ -678,6 +846,24 @@
678
846
  "error":{"httpStatusCode":401},
679
847
  "exception":true
680
848
  },
849
+ "UngroupResourcesInput":{
850
+ "type":"structure",
851
+ "required":[
852
+ "Group",
853
+ "ResourceArns"
854
+ ],
855
+ "members":{
856
+ "Group":{"shape":"GroupString"},
857
+ "ResourceArns":{"shape":"ResourceArnList"}
858
+ }
859
+ },
860
+ "UngroupResourcesOutput":{
861
+ "type":"structure",
862
+ "members":{
863
+ "Succeeded":{"shape":"ResourceArnList"},
864
+ "Failed":{"shape":"FailedResourceList"}
865
+ }
866
+ },
681
867
  "UntagInput":{
682
868
  "type":"structure",
683
869
  "required":[
@@ -702,14 +888,14 @@
702
888
  },
703
889
  "UpdateGroupInput":{
704
890
  "type":"structure",
705
- "required":["GroupName"],
706
891
  "members":{
707
892
  "GroupName":{
708
893
  "shape":"GroupName",
709
- "location":"uri",
710
- "locationName":"GroupName"
894
+ "deprecated":true,
895
+ "deprecatedMessage":"This field is deprecated, use Group instead."
711
896
  },
712
- "Description":{"shape":"GroupDescription"}
897
+ "Group":{"shape":"GroupString"},
898
+ "Description":{"shape":"Description"}
713
899
  }
714
900
  },
715
901
  "UpdateGroupOutput":{
@@ -720,16 +906,14 @@
720
906
  },
721
907
  "UpdateGroupQueryInput":{
722
908
  "type":"structure",
723
- "required":[
724
- "GroupName",
725
- "ResourceQuery"
726
- ],
909
+ "required":["ResourceQuery"],
727
910
  "members":{
728
911
  "GroupName":{
729
912
  "shape":"GroupName",
730
- "location":"uri",
731
- "locationName":"GroupName"
913
+ "deprecated":true,
914
+ "deprecatedMessage":"This field is deprecated, use Group instead."
732
915
  },
916
+ "Group":{"shape":"GroupString"},
733
917
  "ResourceQuery":{"shape":"ResourceQuery"}
734
918
  }
735
919
  },