aws-sdk-core 2.11.547 → 2.11.552

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/apis/cloudfront/2020-05-31/api-2.json +5095 -0
  3. data/apis/cloudfront/2020-05-31/examples-1.json +5 -0
  4. data/apis/cloudfront/2020-05-31/paginators-1.json +32 -0
  5. data/apis/cloudfront/2020-05-31/smoke.json +20 -0
  6. data/apis/cloudfront/2020-05-31/waiters-2.json +47 -0
  7. data/apis/codebuild/2016-10-06/api-2.json +13 -3
  8. data/apis/codeguruprofiler/2019-07-18/api-2.json +120 -3
  9. data/apis/config/2014-11-12/api-2.json +12 -5
  10. data/apis/ec2/2016-11-15/api-2.json +13 -1
  11. data/apis/fms/2018-01-01/api-2.json +515 -1
  12. data/apis/frauddetector/2019-11-15/api-2.json +881 -243
  13. data/apis/frauddetector/2019-11-15/paginators-1.json +20 -0
  14. data/apis/fsx/2018-03-01/api-2.json +35 -2
  15. data/apis/glue/2017-03-31/api-2.json +4 -1
  16. data/apis/groundstation/2019-05-23/api-2.json +53 -1
  17. data/apis/kendra/2019-02-03/api-2.json +38 -4
  18. data/apis/lightsail/2016-11-28/api-2.json +748 -2
  19. data/apis/macie2/2020-01-01/api-2.json +23 -2
  20. data/apis/mediaconnect/2018-11-14/api-2.json +19 -0
  21. data/apis/medialive/2017-10-14/api-2.json +136 -51
  22. data/apis/mediapackage/2017-10-12/api-2.json +5 -4
  23. data/apis/monitoring/2010-08-01/api-2.json +6 -1
  24. data/apis/mq/2017-11-27/api-2.json +202 -0
  25. data/apis/mq/2017-11-27/paginators-1.json +8 -1
  26. data/apis/quicksight/2018-04-01/api-2.json +625 -3
  27. data/apis/quicksight/2018-04-01/paginators-1.json +5 -0
  28. data/apis/rds/2014-10-31/api-2.json +5 -2
  29. data/apis/sagemaker/2017-07-24/api-2.json +286 -34
  30. data/apis/sagemaker/2017-07-24/paginators-1.json +6 -0
  31. data/apis/workspaces/2015-04-08/api-2.json +90 -1
  32. data/endpoints.json +11 -0
  33. data/lib/aws-sdk-core/cloudfront.rb +5 -5
  34. data/lib/aws-sdk-core/version.rb +1 -1
  35. data/service-models.json +1 -1
  36. metadata +7 -2
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "pagination": {
3
+ "ListCloudFrontOriginAccessIdentities": {
4
+ "input_token": "Marker",
5
+ "limit_key": "MaxItems",
6
+ "more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
7
+ "output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
8
+ "result_key": "CloudFrontOriginAccessIdentityList.Items"
9
+ },
10
+ "ListDistributions": {
11
+ "input_token": "Marker",
12
+ "limit_key": "MaxItems",
13
+ "more_results": "DistributionList.IsTruncated",
14
+ "output_token": "DistributionList.NextMarker",
15
+ "result_key": "DistributionList.Items"
16
+ },
17
+ "ListInvalidations": {
18
+ "input_token": "Marker",
19
+ "limit_key": "MaxItems",
20
+ "more_results": "InvalidationList.IsTruncated",
21
+ "output_token": "InvalidationList.NextMarker",
22
+ "result_key": "InvalidationList.Items"
23
+ },
24
+ "ListStreamingDistributions": {
25
+ "input_token": "Marker",
26
+ "limit_key": "MaxItems",
27
+ "more_results": "StreamingDistributionList.IsTruncated",
28
+ "output_token": "StreamingDistributionList.NextMarker",
29
+ "result_key": "StreamingDistributionList.Items"
30
+ }
31
+ }
32
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-east-1",
4
+ "testCases": [
5
+ {
6
+ "operationName": "ListCloudFrontOriginAccessIdentities",
7
+ "input": {
8
+ "MaxItems": "1"
9
+ },
10
+ "errorExpectedFromService": false
11
+ },
12
+ {
13
+ "operationName": "GetDistribution",
14
+ "input": {
15
+ "Id": "fake-id"
16
+ },
17
+ "errorExpectedFromService": true
18
+ }
19
+ ]
20
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ "DistributionDeployed": {
5
+ "delay": 60,
6
+ "operation": "GetDistribution",
7
+ "maxAttempts": 35,
8
+ "description": "Wait until a distribution is deployed.",
9
+ "acceptors": [
10
+ {
11
+ "expected": "Deployed",
12
+ "matcher": "path",
13
+ "state": "success",
14
+ "argument": "Distribution.Status"
15
+ }
16
+ ]
17
+ },
18
+ "InvalidationCompleted": {
19
+ "delay": 20,
20
+ "operation": "GetInvalidation",
21
+ "maxAttempts": 30,
22
+ "description": "Wait until an invalidation has completed.",
23
+ "acceptors": [
24
+ {
25
+ "expected": "Completed",
26
+ "matcher": "path",
27
+ "state": "success",
28
+ "argument": "Invalidation.Status"
29
+ }
30
+ ]
31
+ },
32
+ "StreamingDistributionDeployed": {
33
+ "delay": 60,
34
+ "operation": "GetStreamingDistribution",
35
+ "maxAttempts": 25,
36
+ "description": "Wait until a streaming distribution is deployed.",
37
+ "acceptors": [
38
+ {
39
+ "expected": "Deployed",
40
+ "matcher": "path",
41
+ "state": "success",
42
+ "argument": "StreamingDistribution.Status"
43
+ }
44
+ ]
45
+ }
46
+ }
47
+ }
@@ -580,7 +580,8 @@
580
580
  "encryptionKey":{"shape":"NonEmptyString"},
581
581
  "exportedEnvironmentVariables":{"shape":"ExportedEnvironmentVariables"},
582
582
  "reportArns":{"shape":"BuildReportArns"},
583
- "fileSystemLocations":{"shape":"ProjectFileSystemLocations"}
583
+ "fileSystemLocations":{"shape":"ProjectFileSystemLocations"},
584
+ "debugSession":{"shape":"DebugSession"}
584
585
  }
585
586
  },
586
587
  "BuildArtifacts":{
@@ -773,6 +774,13 @@
773
774
  "type":"string",
774
775
  "enum":["SECRETS_MANAGER"]
775
776
  },
777
+ "DebugSession":{
778
+ "type":"structure",
779
+ "members":{
780
+ "sessionEnabled":{"shape":"WrapperBoolean"},
781
+ "sessionTarget":{"shape":"NonEmptyString"}
782
+ }
783
+ },
776
784
  "DeleteProjectInput":{
777
785
  "type":"structure",
778
786
  "required":["name"],
@@ -903,7 +911,8 @@
903
911
  "WINDOWS_CONTAINER",
904
912
  "LINUX_CONTAINER",
905
913
  "LINUX_GPU_CONTAINER",
906
- "ARM_CONTAINER"
914
+ "ARM_CONTAINER",
915
+ "WINDOWS_SERVER_2019_CONTAINER"
907
916
  ]
908
917
  },
909
918
  "EnvironmentVariable":{
@@ -1712,7 +1721,8 @@
1712
1721
  "idempotencyToken":{"shape":"String"},
1713
1722
  "logsConfigOverride":{"shape":"LogsConfig"},
1714
1723
  "registryCredentialOverride":{"shape":"RegistryCredential"},
1715
- "imagePullCredentialsTypeOverride":{"shape":"ImagePullCredentialsType"}
1724
+ "imagePullCredentialsTypeOverride":{"shape":"ImagePullCredentialsType"},
1725
+ "debugSessionEnabled":{"shape":"WrapperBoolean"}
1716
1726
  }
1717
1727
  },
1718
1728
  "StartBuildOutput":{
@@ -237,6 +237,21 @@
237
237
  {"shape":"ThrottlingException"}
238
238
  ]
239
239
  },
240
+ "ListTagsForResource":{
241
+ "name":"ListTagsForResource",
242
+ "http":{
243
+ "method":"GET",
244
+ "requestUri":"/tags/{resourceArn}",
245
+ "responseCode":200
246
+ },
247
+ "input":{"shape":"ListTagsForResourceRequest"},
248
+ "output":{"shape":"ListTagsForResourceResponse"},
249
+ "errors":[
250
+ {"shape":"InternalServerException"},
251
+ {"shape":"ValidationException"},
252
+ {"shape":"ResourceNotFoundException"}
253
+ ]
254
+ },
240
255
  "PostAgentProfile":{
241
256
  "name":"PostAgentProfile",
242
257
  "http":{
@@ -321,6 +336,37 @@
321
336
  {"shape":"ResourceNotFoundException"}
322
337
  ]
323
338
  },
339
+ "TagResource":{
340
+ "name":"TagResource",
341
+ "http":{
342
+ "method":"POST",
343
+ "requestUri":"/tags/{resourceArn}",
344
+ "responseCode":204
345
+ },
346
+ "input":{"shape":"TagResourceRequest"},
347
+ "output":{"shape":"TagResourceResponse"},
348
+ "errors":[
349
+ {"shape":"InternalServerException"},
350
+ {"shape":"ValidationException"},
351
+ {"shape":"ResourceNotFoundException"}
352
+ ]
353
+ },
354
+ "UntagResource":{
355
+ "name":"UntagResource",
356
+ "http":{
357
+ "method":"DELETE",
358
+ "requestUri":"/tags/{resourceArn}",
359
+ "responseCode":204
360
+ },
361
+ "input":{"shape":"UntagResourceRequest"},
362
+ "output":{"shape":"UntagResourceResponse"},
363
+ "errors":[
364
+ {"shape":"InternalServerException"},
365
+ {"shape":"ValidationException"},
366
+ {"shape":"ResourceNotFoundException"}
367
+ ],
368
+ "idempotent":true
369
+ },
324
370
  "UpdateProfilingGroup":{
325
371
  "name":"UpdateProfilingGroup",
326
372
  "http":{
@@ -594,7 +640,8 @@
594
640
  "locationName":"clientToken"
595
641
  },
596
642
  "computePlatform":{"shape":"ComputePlatform"},
597
- "profilingGroupName":{"shape":"ProfilingGroupName"}
643
+ "profilingGroupName":{"shape":"ProfilingGroupName"},
644
+ "tags":{"shape":"TagsMap"}
598
645
  }
599
646
  },
600
647
  "CreateProfilingGroupResponse":{
@@ -682,8 +729,7 @@
682
729
  "FleetInstanceId":{
683
730
  "type":"string",
684
731
  "max":255,
685
- "min":1,
686
- "pattern":"^[\\w-.:/]+$"
732
+ "min":1
687
733
  },
688
734
  "FrameMetric":{
689
735
  "type":"structure",
@@ -1042,6 +1088,23 @@
1042
1088
  "profilingGroups":{"shape":"ProfilingGroupDescriptions"}
1043
1089
  }
1044
1090
  },
1091
+ "ListTagsForResourceRequest":{
1092
+ "type":"structure",
1093
+ "required":["resourceArn"],
1094
+ "members":{
1095
+ "resourceArn":{
1096
+ "shape":"ProfilingGroupArn",
1097
+ "location":"uri",
1098
+ "locationName":"resourceArn"
1099
+ }
1100
+ }
1101
+ },
1102
+ "ListTagsForResourceResponse":{
1103
+ "type":"structure",
1104
+ "members":{
1105
+ "tags":{"shape":"TagsMap"}
1106
+ }
1107
+ },
1045
1108
  "Locale":{"type":"string"},
1046
1109
  "Match":{
1047
1110
  "type":"structure",
@@ -1204,6 +1267,7 @@
1204
1267
  "createdAt":{"shape":"Timestamp"},
1205
1268
  "name":{"shape":"ProfilingGroupName"},
1206
1269
  "profilingStatus":{"shape":"ProfilingStatus"},
1270
+ "tags":{"shape":"TagsMap"},
1207
1271
  "updatedAt":{"shape":"Timestamp"}
1208
1272
  }
1209
1273
  },
@@ -1406,6 +1470,35 @@
1406
1470
  "members":{
1407
1471
  }
1408
1472
  },
1473
+ "TagKeys":{
1474
+ "type":"list",
1475
+ "member":{"shape":"String"}
1476
+ },
1477
+ "TagResourceRequest":{
1478
+ "type":"structure",
1479
+ "required":[
1480
+ "resourceArn",
1481
+ "tags"
1482
+ ],
1483
+ "members":{
1484
+ "resourceArn":{
1485
+ "shape":"ProfilingGroupArn",
1486
+ "location":"uri",
1487
+ "locationName":"resourceArn"
1488
+ },
1489
+ "tags":{"shape":"TagsMap"}
1490
+ }
1491
+ },
1492
+ "TagResourceResponse":{
1493
+ "type":"structure",
1494
+ "members":{
1495
+ }
1496
+ },
1497
+ "TagsMap":{
1498
+ "type":"map",
1499
+ "key":{"shape":"String"},
1500
+ "value":{"shape":"String"}
1501
+ },
1409
1502
  "TargetFrame":{
1410
1503
  "type":"list",
1411
1504
  "member":{"shape":"String"}
@@ -1446,6 +1539,30 @@
1446
1539
  "key":{"shape":"String"},
1447
1540
  "value":{"shape":"ListOfTimestamps"}
1448
1541
  },
1542
+ "UntagResourceRequest":{
1543
+ "type":"structure",
1544
+ "required":[
1545
+ "resourceArn",
1546
+ "tagKeys"
1547
+ ],
1548
+ "members":{
1549
+ "resourceArn":{
1550
+ "shape":"ProfilingGroupArn",
1551
+ "location":"uri",
1552
+ "locationName":"resourceArn"
1553
+ },
1554
+ "tagKeys":{
1555
+ "shape":"TagKeys",
1556
+ "location":"querystring",
1557
+ "locationName":"tagKeys"
1558
+ }
1559
+ }
1560
+ },
1561
+ "UntagResourceResponse":{
1562
+ "type":"structure",
1563
+ "members":{
1564
+ }
1565
+ },
1449
1566
  "UpdateProfilingGroupRequest":{
1450
1567
  "type":"structure",
1451
1568
  "required":[
@@ -385,7 +385,8 @@
385
385
  "output":{"shape":"DescribeConformancePackStatusResponse"},
386
386
  "errors":[
387
387
  {"shape":"InvalidLimitException"},
388
- {"shape":"InvalidNextTokenException"}
388
+ {"shape":"InvalidNextTokenException"},
389
+ {"shape":"InvalidParameterValueException"}
389
390
  ]
390
391
  },
391
392
  "DescribeConformancePacks":{
@@ -399,7 +400,8 @@
399
400
  "errors":[
400
401
  {"shape":"NoSuchConformancePackException"},
401
402
  {"shape":"InvalidLimitException"},
402
- {"shape":"InvalidNextTokenException"}
403
+ {"shape":"InvalidNextTokenException"},
404
+ {"shape":"InvalidParameterValueException"}
403
405
  ]
404
406
  },
405
407
  "DescribeDeliveryChannelStatus":{
@@ -956,7 +958,8 @@
956
958
  "input":{"shape":"PutRemediationExceptionsRequest"},
957
959
  "output":{"shape":"PutRemediationExceptionsResponse"},
958
960
  "errors":[
959
- {"shape":"InvalidParameterValueException"}
961
+ {"shape":"InvalidParameterValueException"},
962
+ {"shape":"InsufficientPermissionsException"}
960
963
  ]
961
964
  },
962
965
  "PutResourceConfig":{
@@ -1528,7 +1531,8 @@
1528
1531
  "AccountAggregationSources":{"shape":"AccountAggregationSourceList"},
1529
1532
  "OrganizationAggregationSource":{"shape":"OrganizationAggregationSource"},
1530
1533
  "CreationTime":{"shape":"Date"},
1531
- "LastUpdatedTime":{"shape":"Date"}
1534
+ "LastUpdatedTime":{"shape":"Date"},
1535
+ "CreatedBy":{"shape":"StringWithCharLimit256"}
1532
1536
  }
1533
1537
  },
1534
1538
  "ConfigurationAggregatorArn":{
@@ -4010,7 +4014,10 @@
4010
4014
  "AWS::ServiceCatalog::Portfolio",
4011
4015
  "AWS::SQS::Queue",
4012
4016
  "AWS::KMS::Key",
4013
- "AWS::QLDB::Ledger"
4017
+ "AWS::QLDB::Ledger",
4018
+ "AWS::SecretsManager::Secret",
4019
+ "AWS::SNS::Topic",
4020
+ "AWS::SSM::FileData"
4014
4021
  ]
4015
4022
  },
4016
4023
  "ResourceTypeList":{
@@ -6102,6 +6102,10 @@
6102
6102
  "Tags":{
6103
6103
  "shape":"TagList",
6104
6104
  "locationName":"tagSet"
6105
+ },
6106
+ "PoolArn":{
6107
+ "shape":"ResourceArn",
6108
+ "locationName":"poolArn"
6105
6109
  }
6106
6110
  }
6107
6111
  },
@@ -7410,6 +7414,10 @@
7410
7414
  "VpcId":{
7411
7415
  "shape":"VpcId",
7412
7416
  "locationName":"vpcId"
7417
+ },
7418
+ "TagSpecifications":{
7419
+ "shape":"TagSpecificationList",
7420
+ "locationName":"TagSpecification"
7413
7421
  }
7414
7422
  }
7415
7423
  },
@@ -8036,7 +8044,11 @@
8036
8044
  "shape":"VpcId",
8037
8045
  "locationName":"vpcId"
8038
8046
  },
8039
- "PeerRegion":{"shape":"String"}
8047
+ "PeerRegion":{"shape":"String"},
8048
+ "TagSpecifications":{
8049
+ "shape":"TagSpecificationList",
8050
+ "locationName":"TagSpecification"
8051
+ }
8040
8052
  }
8041
8053
  },
8042
8054
  "CreateVpcPeeringConnectionResult":{
@@ -27,6 +27,19 @@
27
27
  {"shape":"InternalErrorException"}
28
28
  ]
29
29
  },
30
+ "DeleteAppsList":{
31
+ "name":"DeleteAppsList",
32
+ "http":{
33
+ "method":"POST",
34
+ "requestUri":"/"
35
+ },
36
+ "input":{"shape":"DeleteAppsListRequest"},
37
+ "errors":[
38
+ {"shape":"ResourceNotFoundException"},
39
+ {"shape":"InvalidOperationException"},
40
+ {"shape":"InternalErrorException"}
41
+ ]
42
+ },
30
43
  "DeleteNotificationChannel":{
31
44
  "name":"DeleteNotificationChannel",
32
45
  "http":{
@@ -53,6 +66,19 @@
53
66
  {"shape":"InternalErrorException"}
54
67
  ]
55
68
  },
69
+ "DeleteProtocolsList":{
70
+ "name":"DeleteProtocolsList",
71
+ "http":{
72
+ "method":"POST",
73
+ "requestUri":"/"
74
+ },
75
+ "input":{"shape":"DeleteProtocolsListRequest"},
76
+ "errors":[
77
+ {"shape":"ResourceNotFoundException"},
78
+ {"shape":"InvalidOperationException"},
79
+ {"shape":"InternalErrorException"}
80
+ ]
81
+ },
56
82
  "DisassociateAdminAccount":{
57
83
  "name":"DisassociateAdminAccount",
58
84
  "http":{
@@ -80,6 +106,20 @@
80
106
  {"shape":"InternalErrorException"}
81
107
  ]
82
108
  },
109
+ "GetAppsList":{
110
+ "name":"GetAppsList",
111
+ "http":{
112
+ "method":"POST",
113
+ "requestUri":"/"
114
+ },
115
+ "input":{"shape":"GetAppsListRequest"},
116
+ "output":{"shape":"GetAppsListResponse"},
117
+ "errors":[
118
+ {"shape":"ResourceNotFoundException"},
119
+ {"shape":"InvalidOperationException"},
120
+ {"shape":"InternalErrorException"}
121
+ ]
122
+ },
83
123
  "GetComplianceDetail":{
84
124
  "name":"GetComplianceDetail",
85
125
  "http":{
@@ -90,7 +130,9 @@
90
130
  "output":{"shape":"GetComplianceDetailResponse"},
91
131
  "errors":[
92
132
  {"shape":"ResourceNotFoundException"},
93
- {"shape":"InternalErrorException"}
133
+ {"shape":"InternalErrorException"},
134
+ {"shape":"InvalidInputException"},
135
+ {"shape":"InvalidOperationException"}
94
136
  ]
95
137
  },
96
138
  "GetNotificationChannel":{
@@ -136,6 +178,49 @@
136
178
  {"shape":"InternalErrorException"}
137
179
  ]
138
180
  },
181
+ "GetProtocolsList":{
182
+ "name":"GetProtocolsList",
183
+ "http":{
184
+ "method":"POST",
185
+ "requestUri":"/"
186
+ },
187
+ "input":{"shape":"GetProtocolsListRequest"},
188
+ "output":{"shape":"GetProtocolsListResponse"},
189
+ "errors":[
190
+ {"shape":"ResourceNotFoundException"},
191
+ {"shape":"InvalidOperationException"},
192
+ {"shape":"InternalErrorException"}
193
+ ]
194
+ },
195
+ "GetViolationDetails":{
196
+ "name":"GetViolationDetails",
197
+ "http":{
198
+ "method":"POST",
199
+ "requestUri":"/"
200
+ },
201
+ "input":{"shape":"GetViolationDetailsRequest"},
202
+ "output":{"shape":"GetViolationDetailsResponse"},
203
+ "errors":[
204
+ {"shape":"ResourceNotFoundException"},
205
+ {"shape":"InvalidInputException"},
206
+ {"shape":"InternalErrorException"}
207
+ ]
208
+ },
209
+ "ListAppsLists":{
210
+ "name":"ListAppsLists",
211
+ "http":{
212
+ "method":"POST",
213
+ "requestUri":"/"
214
+ },
215
+ "input":{"shape":"ListAppsListsRequest"},
216
+ "output":{"shape":"ListAppsListsResponse"},
217
+ "errors":[
218
+ {"shape":"ResourceNotFoundException"},
219
+ {"shape":"InvalidOperationException"},
220
+ {"shape":"LimitExceededException"},
221
+ {"shape":"InternalErrorException"}
222
+ ]
223
+ },
139
224
  "ListComplianceStatus":{
140
225
  "name":"ListComplianceStatus",
141
226
  "http":{
@@ -177,6 +262,20 @@
177
262
  {"shape":"InternalErrorException"}
178
263
  ]
179
264
  },
265
+ "ListProtocolsLists":{
266
+ "name":"ListProtocolsLists",
267
+ "http":{
268
+ "method":"POST",
269
+ "requestUri":"/"
270
+ },
271
+ "input":{"shape":"ListProtocolsListsRequest"},
272
+ "output":{"shape":"ListProtocolsListsResponse"},
273
+ "errors":[
274
+ {"shape":"ResourceNotFoundException"},
275
+ {"shape":"InvalidOperationException"},
276
+ {"shape":"InternalErrorException"}
277
+ ]
278
+ },
180
279
  "ListTagsForResource":{
181
280
  "name":"ListTagsForResource",
182
281
  "http":{
@@ -192,6 +291,22 @@
192
291
  {"shape":"InvalidInputException"}
193
292
  ]
194
293
  },
294
+ "PutAppsList":{
295
+ "name":"PutAppsList",
296
+ "http":{
297
+ "method":"POST",
298
+ "requestUri":"/"
299
+ },
300
+ "input":{"shape":"PutAppsListRequest"},
301
+ "output":{"shape":"PutAppsListResponse"},
302
+ "errors":[
303
+ {"shape":"ResourceNotFoundException"},
304
+ {"shape":"InvalidOperationException"},
305
+ {"shape":"InvalidInputException"},
306
+ {"shape":"LimitExceededException"},
307
+ {"shape":"InternalErrorException"}
308
+ ]
309
+ },
195
310
  "PutNotificationChannel":{
196
311
  "name":"PutNotificationChannel",
197
312
  "http":{
@@ -222,6 +337,22 @@
222
337
  {"shape":"InvalidTypeException"}
223
338
  ]
224
339
  },
340
+ "PutProtocolsList":{
341
+ "name":"PutProtocolsList",
342
+ "http":{
343
+ "method":"POST",
344
+ "requestUri":"/"
345
+ },
346
+ "input":{"shape":"PutProtocolsListRequest"},
347
+ "output":{"shape":"PutProtocolsListResponse"},
348
+ "errors":[
349
+ {"shape":"ResourceNotFoundException"},
350
+ {"shape":"InvalidOperationException"},
351
+ {"shape":"InvalidInputException"},
352
+ {"shape":"LimitExceededException"},
353
+ {"shape":"InternalErrorException"}
354
+ ]
355
+ },
225
356
  "TagResource":{
226
357
  "name":"TagResource",
227
358
  "http":{
@@ -271,6 +402,52 @@
271
402
  "DELETED"
272
403
  ]
273
404
  },
405
+ "App":{
406
+ "type":"structure",
407
+ "required":[
408
+ "AppName",
409
+ "Protocol",
410
+ "Port"
411
+ ],
412
+ "members":{
413
+ "AppName":{"shape":"ResourceName"},
414
+ "Protocol":{"shape":"Protocol"},
415
+ "Port":{"shape":"IPPortNumber"}
416
+ }
417
+ },
418
+ "AppsList":{
419
+ "type":"list",
420
+ "member":{"shape":"App"}
421
+ },
422
+ "AppsListData":{
423
+ "type":"structure",
424
+ "required":[
425
+ "ListName",
426
+ "AppsList"
427
+ ],
428
+ "members":{
429
+ "ListId":{"shape":"ListId"},
430
+ "ListName":{"shape":"ResourceName"},
431
+ "ListUpdateToken":{"shape":"UpdateToken"},
432
+ "CreateTime":{"shape":"TimeStamp"},
433
+ "LastUpdateTime":{"shape":"TimeStamp"},
434
+ "AppsList":{"shape":"AppsList"},
435
+ "PreviousAppsList":{"shape":"PreviousAppsList"}
436
+ }
437
+ },
438
+ "AppsListDataSummary":{
439
+ "type":"structure",
440
+ "members":{
441
+ "ListArn":{"shape":"ResourceArn"},
442
+ "ListId":{"shape":"ListId"},
443
+ "ListName":{"shape":"ResourceName"},
444
+ "AppsList":{"shape":"AppsList"}
445
+ }
446
+ },
447
+ "AppsListsData":{
448
+ "type":"list",
449
+ "member":{"shape":"AppsListDataSummary"}
450
+ },
274
451
  "AssociateAdminAccountRequest":{
275
452
  "type":"structure",
276
453
  "required":["AdminAccount"],
@@ -278,7 +455,40 @@
278
455
  "AdminAccount":{"shape":"AWSAccountId"}
279
456
  }
280
457
  },
458
+ "AwsEc2InstanceViolation":{
459
+ "type":"structure",
460
+ "members":{
461
+ "ViolationTarget":{"shape":"ViolationTarget"},
462
+ "AwsEc2NetworkInterfaceViolations":{"shape":"AwsEc2NetworkInterfaceViolations"}
463
+ }
464
+ },
465
+ "AwsEc2NetworkInterfaceViolation":{
466
+ "type":"structure",
467
+ "members":{
468
+ "ViolationTarget":{"shape":"ViolationTarget"},
469
+ "ViolatingSecurityGroups":{"shape":"ResourceIdList"}
470
+ }
471
+ },
472
+ "AwsEc2NetworkInterfaceViolations":{
473
+ "type":"list",
474
+ "member":{"shape":"AwsEc2NetworkInterfaceViolation"}
475
+ },
476
+ "AwsVPCSecurityGroupViolation":{
477
+ "type":"structure",
478
+ "members":{
479
+ "ViolationTarget":{"shape":"ViolationTarget"},
480
+ "ViolationTargetDescription":{"shape":"LengthBoundedString"},
481
+ "PartialMatches":{"shape":"PartialMatches"},
482
+ "PossibleSecurityGroupRemediationActions":{"shape":"SecurityGroupRemediationActions"}
483
+ }
484
+ },
281
485
  "Boolean":{"type":"boolean"},
486
+ "CIDR":{
487
+ "type":"string",
488
+ "max":256,
489
+ "min":0,
490
+ "pattern":"[a-f0-9:./]+"
491
+ },
282
492
  "ComplianceViolator":{
283
493
  "type":"structure",
284
494
  "members":{
@@ -313,6 +523,13 @@
313
523
  "key":{"shape":"CustomerPolicyScopeIdType"},
314
524
  "value":{"shape":"CustomerPolicyScopeIdList"}
315
525
  },
526
+ "DeleteAppsListRequest":{
527
+ "type":"structure",
528
+ "required":["ListId"],
529
+ "members":{
530
+ "ListId":{"shape":"ListId"}
531
+ }
532
+ },
316
533
  "DeleteNotificationChannelRequest":{
317
534
  "type":"structure",
318
535
  "members":{
@@ -326,6 +543,13 @@
326
543
  "DeleteAllPolicyResources":{"shape":"Boolean"}
327
544
  }
328
545
  },
546
+ "DeleteProtocolsListRequest":{
547
+ "type":"structure",
548
+ "required":["ListId"],
549
+ "members":{
550
+ "ListId":{"shape":"ListId"}
551
+ }
552
+ },
329
553
  "DependentServiceName":{
330
554
  "type":"string",
331
555
  "enum":[
@@ -371,6 +595,21 @@
371
595
  "RoleStatus":{"shape":"AccountRoleStatus"}
372
596
  }
373
597
  },
598
+ "GetAppsListRequest":{
599
+ "type":"structure",
600
+ "required":["ListId"],
601
+ "members":{
602
+ "ListId":{"shape":"ListId"},
603
+ "DefaultList":{"shape":"Boolean"}
604
+ }
605
+ },
606
+ "GetAppsListResponse":{
607
+ "type":"structure",
608
+ "members":{
609
+ "AppsList":{"shape":"AppsListData"},
610
+ "AppsListArn":{"shape":"ResourceArn"}
611
+ }
612
+ },
374
613
  "GetComplianceDetailRequest":{
375
614
  "type":"structure",
376
615
  "required":[
@@ -435,6 +674,47 @@
435
674
  "NextToken":{"shape":"PaginationToken"}
436
675
  }
437
676
  },
677
+ "GetProtocolsListRequest":{
678
+ "type":"structure",
679
+ "required":["ListId"],
680
+ "members":{
681
+ "ListId":{"shape":"ListId"},
682
+ "DefaultList":{"shape":"Boolean"}
683
+ }
684
+ },
685
+ "GetProtocolsListResponse":{
686
+ "type":"structure",
687
+ "members":{
688
+ "ProtocolsList":{"shape":"ProtocolsListData"},
689
+ "ProtocolsListArn":{"shape":"ResourceArn"}
690
+ }
691
+ },
692
+ "GetViolationDetailsRequest":{
693
+ "type":"structure",
694
+ "required":[
695
+ "PolicyId",
696
+ "MemberAccount",
697
+ "ResourceId",
698
+ "ResourceType"
699
+ ],
700
+ "members":{
701
+ "PolicyId":{"shape":"PolicyId"},
702
+ "MemberAccount":{"shape":"AWSAccountId"},
703
+ "ResourceId":{"shape":"ResourceId"},
704
+ "ResourceType":{"shape":"ResourceType"}
705
+ }
706
+ },
707
+ "GetViolationDetailsResponse":{
708
+ "type":"structure",
709
+ "members":{
710
+ "ViolationDetail":{"shape":"ViolationDetail"}
711
+ }
712
+ },
713
+ "IPPortNumber":{
714
+ "type":"long",
715
+ "max":65535,
716
+ "min":0
717
+ },
438
718
  "InternalErrorException":{
439
719
  "type":"structure",
440
720
  "members":{
@@ -468,6 +748,11 @@
468
748
  "key":{"shape":"DependentServiceName"},
469
749
  "value":{"shape":"DetailedInfo"}
470
750
  },
751
+ "LengthBoundedString":{
752
+ "type":"string",
753
+ "max":1024,
754
+ "min":0
755
+ },
471
756
  "LimitExceededException":{
472
757
  "type":"structure",
473
758
  "members":{
@@ -475,6 +760,22 @@
475
760
  },
476
761
  "exception":true
477
762
  },
763
+ "ListAppsListsRequest":{
764
+ "type":"structure",
765
+ "required":["MaxResults"],
766
+ "members":{
767
+ "DefaultLists":{"shape":"Boolean"},
768
+ "NextToken":{"shape":"PaginationToken"},
769
+ "MaxResults":{"shape":"PaginationMaxResults"}
770
+ }
771
+ },
772
+ "ListAppsListsResponse":{
773
+ "type":"structure",
774
+ "members":{
775
+ "AppsLists":{"shape":"AppsListsData"},
776
+ "NextToken":{"shape":"PaginationToken"}
777
+ }
778
+ },
478
779
  "ListComplianceStatusRequest":{
479
780
  "type":"structure",
480
781
  "required":["PolicyId"],
@@ -491,6 +792,12 @@
491
792
  "NextToken":{"shape":"PaginationToken"}
492
793
  }
493
794
  },
795
+ "ListId":{
796
+ "type":"string",
797
+ "max":36,
798
+ "min":36,
799
+ "pattern":"^[a-z0-9A-Z-]{36}$"
800
+ },
494
801
  "ListMemberAccountsRequest":{
495
802
  "type":"structure",
496
803
  "members":{
@@ -519,6 +826,22 @@
519
826
  "NextToken":{"shape":"PaginationToken"}
520
827
  }
521
828
  },
829
+ "ListProtocolsListsRequest":{
830
+ "type":"structure",
831
+ "required":["MaxResults"],
832
+ "members":{
833
+ "DefaultLists":{"shape":"Boolean"},
834
+ "NextToken":{"shape":"PaginationToken"},
835
+ "MaxResults":{"shape":"PaginationMaxResults"}
836
+ }
837
+ },
838
+ "ListProtocolsListsResponse":{
839
+ "type":"structure",
840
+ "members":{
841
+ "ProtocolsLists":{"shape":"ProtocolsListsData"},
842
+ "NextToken":{"shape":"PaginationToken"}
843
+ }
844
+ },
522
845
  "ListTagsForResourceRequest":{
523
846
  "type":"structure",
524
847
  "required":["ResourceArn"],
@@ -553,6 +876,17 @@
553
876
  "min":1,
554
877
  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
555
878
  },
879
+ "PartialMatch":{
880
+ "type":"structure",
881
+ "members":{
882
+ "Reference":{"shape":"ReferenceRule"},
883
+ "TargetViolationReasons":{"shape":"TargetViolationReasons"}
884
+ }
885
+ },
886
+ "PartialMatches":{
887
+ "type":"list",
888
+ "member":{"shape":"PartialMatch"}
889
+ },
556
890
  "Policy":{
557
891
  "type":"structure",
558
892
  "required":[
@@ -638,7 +972,77 @@
638
972
  "min":1,
639
973
  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
640
974
  },
975
+ "PreviousAppsList":{
976
+ "type":"map",
977
+ "key":{"shape":"PreviousListVersion"},
978
+ "value":{"shape":"AppsList"}
979
+ },
980
+ "PreviousListVersion":{
981
+ "type":"string",
982
+ "max":2,
983
+ "min":1,
984
+ "pattern":"^\\d{1,2}$"
985
+ },
986
+ "PreviousProtocolsList":{
987
+ "type":"map",
988
+ "key":{"shape":"PreviousListVersion"},
989
+ "value":{"shape":"ProtocolsList"}
990
+ },
641
991
  "ProtectionData":{"type":"string"},
992
+ "Protocol":{
993
+ "type":"string",
994
+ "max":20,
995
+ "min":1,
996
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
997
+ },
998
+ "ProtocolsList":{
999
+ "type":"list",
1000
+ "member":{"shape":"Protocol"}
1001
+ },
1002
+ "ProtocolsListData":{
1003
+ "type":"structure",
1004
+ "required":[
1005
+ "ListName",
1006
+ "ProtocolsList"
1007
+ ],
1008
+ "members":{
1009
+ "ListId":{"shape":"ListId"},
1010
+ "ListName":{"shape":"ResourceName"},
1011
+ "ListUpdateToken":{"shape":"UpdateToken"},
1012
+ "CreateTime":{"shape":"TimeStamp"},
1013
+ "LastUpdateTime":{"shape":"TimeStamp"},
1014
+ "ProtocolsList":{"shape":"ProtocolsList"},
1015
+ "PreviousProtocolsList":{"shape":"PreviousProtocolsList"}
1016
+ }
1017
+ },
1018
+ "ProtocolsListDataSummary":{
1019
+ "type":"structure",
1020
+ "members":{
1021
+ "ListArn":{"shape":"ResourceArn"},
1022
+ "ListId":{"shape":"ListId"},
1023
+ "ListName":{"shape":"ResourceName"},
1024
+ "ProtocolsList":{"shape":"ProtocolsList"}
1025
+ }
1026
+ },
1027
+ "ProtocolsListsData":{
1028
+ "type":"list",
1029
+ "member":{"shape":"ProtocolsListDataSummary"}
1030
+ },
1031
+ "PutAppsListRequest":{
1032
+ "type":"structure",
1033
+ "required":["AppsList"],
1034
+ "members":{
1035
+ "AppsList":{"shape":"AppsListData"},
1036
+ "TagList":{"shape":"TagList"}
1037
+ }
1038
+ },
1039
+ "PutAppsListResponse":{
1040
+ "type":"structure",
1041
+ "members":{
1042
+ "AppsList":{"shape":"AppsListData"},
1043
+ "AppsListArn":{"shape":"ResourceArn"}
1044
+ }
1045
+ },
642
1046
  "PutNotificationChannelRequest":{
643
1047
  "type":"structure",
644
1048
  "required":[
@@ -665,6 +1069,35 @@
665
1069
  "PolicyArn":{"shape":"ResourceArn"}
666
1070
  }
667
1071
  },
1072
+ "PutProtocolsListRequest":{
1073
+ "type":"structure",
1074
+ "required":["ProtocolsList"],
1075
+ "members":{
1076
+ "ProtocolsList":{"shape":"ProtocolsListData"},
1077
+ "TagList":{"shape":"TagList"}
1078
+ }
1079
+ },
1080
+ "PutProtocolsListResponse":{
1081
+ "type":"structure",
1082
+ "members":{
1083
+ "ProtocolsList":{"shape":"ProtocolsListData"},
1084
+ "ProtocolsListArn":{"shape":"ResourceArn"}
1085
+ }
1086
+ },
1087
+ "ReferenceRule":{"type":"string"},
1088
+ "RemediationActionDescription":{
1089
+ "type":"string",
1090
+ "max":1024,
1091
+ "min":0,
1092
+ "pattern":".*"
1093
+ },
1094
+ "RemediationActionType":{
1095
+ "type":"string",
1096
+ "enum":[
1097
+ "REMOVE",
1098
+ "MODIFY"
1099
+ ]
1100
+ },
668
1101
  "ResourceArn":{
669
1102
  "type":"string",
670
1103
  "max":1024,
@@ -681,6 +1114,10 @@
681
1114
  "min":1,
682
1115
  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
683
1116
  },
1117
+ "ResourceIdList":{
1118
+ "type":"list",
1119
+ "member":{"shape":"ResourceId"}
1120
+ },
684
1121
  "ResourceName":{
685
1122
  "type":"string",
686
1123
  "max":128,
@@ -729,6 +1166,42 @@
729
1166
  "type":"list",
730
1167
  "member":{"shape":"ResourceType"}
731
1168
  },
1169
+ "ResourceViolation":{
1170
+ "type":"structure",
1171
+ "members":{
1172
+ "AwsVPCSecurityGroupViolation":{"shape":"AwsVPCSecurityGroupViolation"},
1173
+ "AwsEc2NetworkInterfaceViolation":{"shape":"AwsEc2NetworkInterfaceViolation"},
1174
+ "AwsEc2InstanceViolation":{"shape":"AwsEc2InstanceViolation"}
1175
+ }
1176
+ },
1177
+ "ResourceViolations":{
1178
+ "type":"list",
1179
+ "member":{"shape":"ResourceViolation"}
1180
+ },
1181
+ "SecurityGroupRemediationAction":{
1182
+ "type":"structure",
1183
+ "members":{
1184
+ "RemediationActionType":{"shape":"RemediationActionType"},
1185
+ "Description":{"shape":"RemediationActionDescription"},
1186
+ "RemediationResult":{"shape":"SecurityGroupRuleDescription"},
1187
+ "IsDefaultAction":{"shape":"Boolean"}
1188
+ }
1189
+ },
1190
+ "SecurityGroupRemediationActions":{
1191
+ "type":"list",
1192
+ "member":{"shape":"SecurityGroupRemediationAction"}
1193
+ },
1194
+ "SecurityGroupRuleDescription":{
1195
+ "type":"structure",
1196
+ "members":{
1197
+ "IPV4Range":{"shape":"CIDR"},
1198
+ "IPV6Range":{"shape":"CIDR"},
1199
+ "PrefixListId":{"shape":"ResourceId"},
1200
+ "Protocol":{"shape":"LengthBoundedString"},
1201
+ "FromPort":{"shape":"IPPortNumber"},
1202
+ "ToPort":{"shape":"IPPortNumber"}
1203
+ }
1204
+ },
732
1205
  "SecurityServicePolicyData":{
733
1206
  "type":"structure",
734
1207
  "required":["Type"],
@@ -799,6 +1272,16 @@
799
1272
  "min":0,
800
1273
  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
801
1274
  },
1275
+ "TargetViolationReason":{
1276
+ "type":"string",
1277
+ "max":256,
1278
+ "min":0,
1279
+ "pattern":"\\w+"
1280
+ },
1281
+ "TargetViolationReasons":{
1282
+ "type":"list",
1283
+ "member":{"shape":"TargetViolationReason"}
1284
+ },
802
1285
  "TimeStamp":{"type":"timestamp"},
803
1286
  "UntagResourceRequest":{
804
1287
  "type":"structure",
@@ -816,6 +1299,31 @@
816
1299
  "members":{
817
1300
  }
818
1301
  },
1302
+ "UpdateToken":{
1303
+ "type":"string",
1304
+ "max":1024,
1305
+ "min":1,
1306
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
1307
+ },
1308
+ "ViolationDetail":{
1309
+ "type":"structure",
1310
+ "required":[
1311
+ "PolicyId",
1312
+ "MemberAccount",
1313
+ "ResourceId",
1314
+ "ResourceType",
1315
+ "ResourceViolations"
1316
+ ],
1317
+ "members":{
1318
+ "PolicyId":{"shape":"PolicyId"},
1319
+ "MemberAccount":{"shape":"AWSAccountId"},
1320
+ "ResourceId":{"shape":"ResourceId"},
1321
+ "ResourceType":{"shape":"ResourceType"},
1322
+ "ResourceViolations":{"shape":"ResourceViolations"},
1323
+ "ResourceTags":{"shape":"TagList"},
1324
+ "ResourceDescription":{"shape":"LengthBoundedString"}
1325
+ }
1326
+ },
819
1327
  "ViolationReason":{
820
1328
  "type":"string",
821
1329
  "enum":[
@@ -829,6 +1337,12 @@
829
1337
  "SECURITY_GROUP_UNUSED",
830
1338
  "SECURITY_GROUP_REDUNDANT"
831
1339
  ]
1340
+ },
1341
+ "ViolationTarget":{
1342
+ "type":"string",
1343
+ "max":1024,
1344
+ "min":0,
1345
+ "pattern":".*"
832
1346
  }
833
1347
  }
834
1348
  }