aws-sdk-core 2.11.561 → 2.11.566

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "pagination": {
3
+ "SearchDevices": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults",
7
+ "result_key": "devices"
8
+ },
9
+ "SearchQuantumTasks": {
10
+ "input_token": "nextToken",
11
+ "output_token": "nextToken",
12
+ "limit_key": "maxResults",
13
+ "result_key": "quantumTasks"
14
+ }
15
+ }
16
+ }
@@ -185,7 +185,8 @@
185
185
  "errors":[
186
186
  {"shape":"NotFoundException"},
187
187
  {"shape":"InternalServerErrorException"},
188
- {"shape":"BadRequestException"}
188
+ {"shape":"BadRequestException"},
189
+ {"shape":"ConcurrentAccessException"}
189
190
  ]
190
191
  },
191
192
  "UntagResource":{
@@ -199,7 +200,8 @@
199
200
  "errors":[
200
201
  {"shape":"NotFoundException"},
201
202
  {"shape":"InternalServerErrorException"},
202
- {"shape":"BadRequestException"}
203
+ {"shape":"BadRequestException"},
204
+ {"shape":"ConcurrentAccessException"}
203
205
  ]
204
206
  },
205
207
  "UpdateEnvironment":{
@@ -263,12 +265,25 @@
263
265
  "type":"string",
264
266
  "pattern":"[\\x20-\\x7E]{10,128}"
265
267
  },
268
+ "ConcurrentAccessException":{
269
+ "type":"structure",
270
+ "members":{
271
+ },
272
+ "exception":true
273
+ },
266
274
  "ConflictException":{
267
275
  "type":"structure",
268
276
  "members":{
269
277
  },
270
278
  "exception":true
271
279
  },
280
+ "ConnectionType":{
281
+ "type":"string",
282
+ "enum":[
283
+ "CONNECT_SSH",
284
+ "CONNECT_SSM"
285
+ ]
286
+ },
272
287
  "CreateEnvironmentEC2Request":{
273
288
  "type":"structure",
274
289
  "required":[
@@ -283,7 +298,8 @@
283
298
  "subnetId":{"shape":"SubnetId"},
284
299
  "automaticStopTimeMinutes":{"shape":"AutomaticStopTimeMinutes"},
285
300
  "ownerArn":{"shape":"UserArn"},
286
- "tags":{"shape":"TagList"}
301
+ "tags":{"shape":"TagList"},
302
+ "connectionType":{"shape":"ConnectionType"}
287
303
  }
288
304
  },
289
305
  "CreateEnvironmentEC2Result":{
@@ -390,6 +406,7 @@
390
406
  "name":{"shape":"EnvironmentName"},
391
407
  "description":{"shape":"EnvironmentDescription"},
392
408
  "type":{"shape":"EnvironmentType"},
409
+ "connectionType":{"shape":"ConnectionType"},
393
410
  "arn":{"shape":"String"},
394
411
  "ownerArn":{"shape":"String"},
395
412
  "lifecycle":{"shape":"EnvironmentLifecycle"}
@@ -536,6 +536,7 @@
536
536
  "input":{"shape":"AssociateSoftwareTokenRequest"},
537
537
  "output":{"shape":"AssociateSoftwareTokenResponse"},
538
538
  "errors":[
539
+ {"shape":"ConcurrentModificationException"},
539
540
  {"shape":"InvalidParameterException"},
540
541
  {"shape":"NotAuthorizedException"},
541
542
  {"shape":"ResourceNotFoundException"},
@@ -1890,6 +1891,11 @@
1890
1891
  },
1891
1892
  "shapes":{
1892
1893
  "AWSAccountIdType":{"type":"string"},
1894
+ "AccessTokenValidityType":{
1895
+ "type":"integer",
1896
+ "max":86400,
1897
+ "min":1
1898
+ },
1893
1899
  "AccountRecoverySettingType":{
1894
1900
  "type":"structure",
1895
1901
  "members":{
@@ -2961,6 +2967,9 @@
2961
2967
  "ClientName":{"shape":"ClientNameType"},
2962
2968
  "GenerateSecret":{"shape":"GenerateSecret"},
2963
2969
  "RefreshTokenValidity":{"shape":"RefreshTokenValidityType"},
2970
+ "AccessTokenValidity":{"shape":"AccessTokenValidityType"},
2971
+ "IdTokenValidity":{"shape":"IdTokenValidityType"},
2972
+ "TokenValidityUnits":{"shape":"TokenValidityUnitsType"},
2964
2973
  "ReadAttributes":{"shape":"ClientPermissionListType"},
2965
2974
  "WriteAttributes":{"shape":"ClientPermissionListType"},
2966
2975
  "ExplicitAuthFlows":{"shape":"ExplicitAuthFlowsListType"},
@@ -3753,6 +3762,11 @@
3753
3762
  "type":"list",
3754
3763
  "member":{"shape":"HttpHeader"}
3755
3764
  },
3765
+ "IdTokenValidityType":{
3766
+ "type":"integer",
3767
+ "max":86400,
3768
+ "min":1
3769
+ },
3756
3770
  "IdentityProviderType":{
3757
3771
  "type":"structure",
3758
3772
  "members":{
@@ -4336,7 +4350,7 @@
4336
4350
  },
4337
4351
  "RefreshTokenValidityType":{
4338
4352
  "type":"integer",
4339
- "max":3650,
4353
+ "max":315360000,
4340
4354
  "min":0
4341
4355
  },
4342
4356
  "ResendConfirmationCodeRequest":{
@@ -4819,11 +4833,28 @@
4819
4833
  "max":365,
4820
4834
  "min":0
4821
4835
  },
4836
+ "TimeUnitsType":{
4837
+ "type":"string",
4838
+ "enum":[
4839
+ "seconds",
4840
+ "minutes",
4841
+ "hours",
4842
+ "days"
4843
+ ]
4844
+ },
4822
4845
  "TokenModelType":{
4823
4846
  "type":"string",
4824
4847
  "pattern":"[A-Za-z0-9-_=.]+",
4825
4848
  "sensitive":true
4826
4849
  },
4850
+ "TokenValidityUnitsType":{
4851
+ "type":"structure",
4852
+ "members":{
4853
+ "AccessToken":{"shape":"TimeUnitsType"},
4854
+ "IdToken":{"shape":"TimeUnitsType"},
4855
+ "RefreshToken":{"shape":"TimeUnitsType"}
4856
+ }
4857
+ },
4827
4858
  "TooManyFailedAttemptsException":{
4828
4859
  "type":"structure",
4829
4860
  "members":{
@@ -5017,6 +5048,9 @@
5017
5048
  "ClientId":{"shape":"ClientIdType"},
5018
5049
  "ClientName":{"shape":"ClientNameType"},
5019
5050
  "RefreshTokenValidity":{"shape":"RefreshTokenValidityType"},
5051
+ "AccessTokenValidity":{"shape":"AccessTokenValidityType"},
5052
+ "IdTokenValidity":{"shape":"IdTokenValidityType"},
5053
+ "TokenValidityUnits":{"shape":"TokenValidityUnitsType"},
5020
5054
  "ReadAttributes":{"shape":"ClientPermissionListType"},
5021
5055
  "WriteAttributes":{"shape":"ClientPermissionListType"},
5022
5056
  "ExplicitAuthFlows":{"shape":"ExplicitAuthFlowsListType"},
@@ -5211,6 +5245,9 @@
5211
5245
  "LastModifiedDate":{"shape":"DateType"},
5212
5246
  "CreationDate":{"shape":"DateType"},
5213
5247
  "RefreshTokenValidity":{"shape":"RefreshTokenValidityType"},
5248
+ "AccessTokenValidity":{"shape":"AccessTokenValidityType"},
5249
+ "IdTokenValidity":{"shape":"IdTokenValidityType"},
5250
+ "TokenValidityUnits":{"shape":"TokenValidityUnitsType"},
5214
5251
  "ReadAttributes":{"shape":"ClientPermissionListType"},
5215
5252
  "WriteAttributes":{"shape":"ClientPermissionListType"},
5216
5253
  "ExplicitAuthFlows":{"shape":"ExplicitAuthFlowsListType"},
@@ -5550,8 +5550,7 @@
5550
5550
  "Windows with SQL Server Web",
5551
5551
  "Linux with SQL Server Standard",
5552
5552
  "Linux with SQL Server Web",
5553
- "Linux with SQL Server Enterprise",
5554
- "Windows BYOL"
5553
+ "Linux with SQL Server Enterprise"
5555
5554
  ]
5556
5555
  },
5557
5556
  "CapacityReservationOptions":{
@@ -21561,6 +21560,7 @@
21561
21560
  "type":"structure",
21562
21561
  "members":{
21563
21562
  "TunnelInsideCidr":{"shape":"String"},
21563
+ "TunnelInsideIpv6Cidr":{"shape":"String"},
21564
21564
  "PreSharedKey":{"shape":"String"},
21565
21565
  "Phase1LifetimeSeconds":{"shape":"Integer"},
21566
21566
  "Phase2LifetimeSeconds":{"shape":"Integer"},
@@ -22064,6 +22064,10 @@
22064
22064
  "shape":"String",
22065
22065
  "locationName":"publicIp"
22066
22066
  },
22067
+ "CustomerOwnedIp":{
22068
+ "shape":"String",
22069
+ "locationName":"customerOwnedIp"
22070
+ },
22067
22071
  "CarrierIp":{
22068
22072
  "shape":"String",
22069
22073
  "locationName":"carrierIp"
@@ -28917,6 +28921,13 @@
28917
28921
  "udp"
28918
28922
  ]
28919
28923
  },
28924
+ "TunnelInsideIpVersion":{
28925
+ "type":"string",
28926
+ "enum":[
28927
+ "ipv4",
28928
+ "ipv6"
28929
+ ]
28930
+ },
28920
28931
  "TunnelOption":{
28921
28932
  "type":"structure",
28922
28933
  "members":{
@@ -28928,6 +28939,10 @@
28928
28939
  "shape":"String",
28929
28940
  "locationName":"tunnelInsideCidr"
28930
28941
  },
28942
+ "TunnelInsideIpv6Cidr":{
28943
+ "shape":"String",
28944
+ "locationName":"tunnelInsideIpv6Cidr"
28945
+ },
28931
28946
  "PreSharedKey":{
28932
28947
  "shape":"String",
28933
28948
  "locationName":"preSharedKey"
@@ -30392,6 +30407,10 @@
30392
30407
  "shape":"Boolean",
30393
30408
  "locationName":"staticRoutesOnly"
30394
30409
  },
30410
+ "TunnelInsideIpVersion":{
30411
+ "shape":"TunnelInsideIpVersion",
30412
+ "locationName":"tunnelInsideIpVersion"
30413
+ },
30395
30414
  "TunnelOptions":{
30396
30415
  "shape":"TunnelOptionsList",
30397
30416
  "locationName":"tunnelOptionSet"
@@ -30406,6 +30425,7 @@
30406
30425
  "shape":"Boolean",
30407
30426
  "locationName":"staticRoutesOnly"
30408
30427
  },
30428
+ "TunnelInsideIpVersion":{"shape":"TunnelInsideIpVersion"},
30409
30429
  "TunnelOptions":{"shape":"VpnTunnelOptionsSpecificationsList"}
30410
30430
  }
30411
30431
  },
@@ -30509,6 +30529,7 @@
30509
30529
  "type":"structure",
30510
30530
  "members":{
30511
30531
  "TunnelInsideCidr":{"shape":"String"},
30532
+ "TunnelInsideIpv6Cidr":{"shape":"String"},
30512
30533
  "PreSharedKey":{"shape":"String"},
30513
30534
  "Phase1LifetimeSeconds":{"shape":"Integer"},
30514
30535
  "Phase2LifetimeSeconds":{"shape":"Integer"},
@@ -349,7 +349,8 @@
349
349
  "type":"string",
350
350
  "enum":[
351
351
  "AL2_x86_64",
352
- "AL2_x86_64_GPU"
352
+ "AL2_x86_64_GPU",
353
+ "AL2_ARM_64"
353
354
  ]
354
355
  },
355
356
  "AutoScalingGroup":{
@@ -521,6 +522,7 @@
521
522
  "shape":"String",
522
523
  "idempotencyToken":true
523
524
  },
525
+ "launchTemplate":{"shape":"LaunchTemplateSpecification"},
524
526
  "version":{"shape":"String"},
525
527
  "releaseVersion":{"shape":"String"}
526
528
  }
@@ -820,6 +822,14 @@
820
822
  "type":"list",
821
823
  "member":{"shape":"Issue"}
822
824
  },
825
+ "LaunchTemplateSpecification":{
826
+ "type":"structure",
827
+ "members":{
828
+ "name":{"shape":"String"},
829
+ "version":{"shape":"String"},
830
+ "id":{"shape":"String"}
831
+ }
832
+ },
823
833
  "ListClustersRequest":{
824
834
  "type":"structure",
825
835
  "members":{
@@ -1018,6 +1028,7 @@
1018
1028
  "resources":{"shape":"NodegroupResources"},
1019
1029
  "diskSize":{"shape":"BoxedInteger"},
1020
1030
  "health":{"shape":"NodegroupHealth"},
1031
+ "launchTemplate":{"shape":"LaunchTemplateSpecification"},
1021
1032
  "tags":{"shape":"TagMap"}
1022
1033
  }
1023
1034
  },
@@ -1353,6 +1364,7 @@
1353
1364
  },
1354
1365
  "version":{"shape":"String"},
1355
1366
  "releaseVersion":{"shape":"String"},
1367
+ "launchTemplate":{"shape":"LaunchTemplateSpecification"},
1356
1368
  "force":{"shape":"Boolean"},
1357
1369
  "clientRequestToken":{
1358
1370
  "shape":"String",
@@ -341,7 +341,7 @@
341
341
  },
342
342
  "AutomaticBackupRetentionDays":{
343
343
  "type":"integer",
344
- "max":35,
344
+ "max":90,
345
345
  "min":0
346
346
  },
347
347
  "Backup":{
@@ -396,6 +396,7 @@
396
396
  "enum":[
397
397
  "AVAILABLE",
398
398
  "CREATING",
399
+ "TRANSFERRING",
399
400
  "DELETED",
400
401
  "FAILED"
401
402
  ]
@@ -545,7 +546,8 @@
545
546
  "PerUnitStorageThroughput":{"shape":"PerUnitStorageThroughput"},
546
547
  "DailyAutomaticBackupStartTime":{"shape":"DailyTime"},
547
548
  "AutomaticBackupRetentionDays":{"shape":"AutomaticBackupRetentionDays"},
548
- "CopyTagsToBackups":{"shape":"Flag"}
549
+ "CopyTagsToBackups":{"shape":"Flag"},
550
+ "DriveCacheType":{"shape":"DriveCacheType"}
549
551
  }
550
552
  },
551
553
  "CreateFileSystemRequest":{
@@ -894,6 +896,13 @@
894
896
  "max":2,
895
897
  "min":1
896
898
  },
899
+ "DriveCacheType":{
900
+ "type":"string",
901
+ "enum":[
902
+ "NONE",
903
+ "READ"
904
+ ]
905
+ },
897
906
  "EndTime":{"type":"timestamp"},
898
907
  "ErrorMessage":{
899
908
  "type":"string",
@@ -1115,7 +1124,8 @@
1115
1124
  "MountName":{"shape":"LustreFileSystemMountName"},
1116
1125
  "DailyAutomaticBackupStartTime":{"shape":"DailyTime"},
1117
1126
  "AutomaticBackupRetentionDays":{"shape":"AutomaticBackupRetentionDays"},
1118
- "CopyTagsToBackups":{"shape":"Flag"}
1127
+ "CopyTagsToBackups":{"shape":"Flag"},
1128
+ "DriveCacheType":{"shape":"DriveCacheType"}
1119
1129
  }
1120
1130
  },
1121
1131
  "LustreFileSystemMountName":{
@@ -1185,7 +1195,7 @@
1185
1195
  "PerUnitStorageThroughput":{
1186
1196
  "type":"integer",
1187
1197
  "max":200,
1188
- "min":50
1198
+ "min":12
1189
1199
  },
1190
1200
  "ProgressPercent":{
1191
1201
  "type":"integer",
@@ -2772,7 +2772,8 @@
2772
2772
  "JDBC",
2773
2773
  "SFTP",
2774
2774
  "MONGODB",
2775
- "KAFKA"
2775
+ "KAFKA",
2776
+ "NETWORK"
2776
2777
  ]
2777
2778
  },
2778
2779
  "ConnectionsList":{
@@ -3244,7 +3245,8 @@
3244
3245
  "Name":{"shape":"NameString"},
3245
3246
  "Description":{"shape":"GenericString"},
3246
3247
  "DefaultRunProperties":{"shape":"WorkflowRunProperties"},
3247
- "Tags":{"shape":"TagsMap"}
3248
+ "Tags":{"shape":"TagsMap"},
3249
+ "MaxConcurrentRuns":{"shape":"NullableInteger"}
3248
3250
  }
3249
3251
  },
3250
3252
  "CreateWorkflowResponse":{
@@ -5679,7 +5681,8 @@
5679
5681
  "type":"structure",
5680
5682
  "members":{
5681
5683
  "Path":{"shape":"Path"},
5682
- "Exclusions":{"shape":"PathList"}
5684
+ "Exclusions":{"shape":"PathList"},
5685
+ "ConnectionName":{"shape":"ConnectionName"}
5683
5686
  }
5684
5687
  },
5685
5688
  "S3TargetList":{
@@ -6755,7 +6758,8 @@
6755
6758
  "members":{
6756
6759
  "Name":{"shape":"NameString"},
6757
6760
  "Description":{"shape":"GenericString"},
6758
- "DefaultRunProperties":{"shape":"WorkflowRunProperties"}
6761
+ "DefaultRunProperties":{"shape":"WorkflowRunProperties"},
6762
+ "MaxConcurrentRuns":{"shape":"NullableInteger"}
6759
6763
  }
6760
6764
  },
6761
6765
  "UpdateWorkflowResponse":{
@@ -6851,7 +6855,8 @@
6851
6855
  "CreatedOn":{"shape":"TimestampValue"},
6852
6856
  "LastModifiedOn":{"shape":"TimestampValue"},
6853
6857
  "LastRun":{"shape":"WorkflowRun"},
6854
- "Graph":{"shape":"WorkflowGraph"}
6858
+ "Graph":{"shape":"WorkflowGraph"},
6859
+ "MaxConcurrentRuns":{"shape":"NullableInteger"}
6855
6860
  }
6856
6861
  },
6857
6862
  "WorkflowGraph":{
@@ -6877,6 +6882,7 @@
6877
6882
  "StartedOn":{"shape":"TimestampValue"},
6878
6883
  "CompletedOn":{"shape":"TimestampValue"},
6879
6884
  "Status":{"shape":"WorkflowRunStatus"},
6885
+ "ErrorMessage":{"shape":"ErrorString"},
6880
6886
  "Statistics":{"shape":"WorkflowRunStatistics"},
6881
6887
  "Graph":{"shape":"WorkflowGraph"}
6882
6888
  }
@@ -6903,7 +6909,8 @@
6903
6909
  "RUNNING",
6904
6910
  "COMPLETED",
6905
6911
  "STOPPING",
6906
- "STOPPED"
6912
+ "STOPPED",
6913
+ "ERROR"
6907
6914
  ]
6908
6915
  },
6909
6916
  "WorkflowRuns":{
@@ -254,6 +254,22 @@
254
254
  {"shape":"ConflictingResourceUpdateException"}
255
255
  ]
256
256
  },
257
+ "CreateAuditSuppression":{
258
+ "name":"CreateAuditSuppression",
259
+ "http":{
260
+ "method":"POST",
261
+ "requestUri":"/audit/suppressions/create"
262
+ },
263
+ "input":{"shape":"CreateAuditSuppressionRequest"},
264
+ "output":{"shape":"CreateAuditSuppressionResponse"},
265
+ "errors":[
266
+ {"shape":"InvalidRequestException"},
267
+ {"shape":"ResourceAlreadyExistsException"},
268
+ {"shape":"ThrottlingException"},
269
+ {"shape":"InternalFailureException"},
270
+ {"shape":"LimitExceededException"}
271
+ ]
272
+ },
257
273
  "CreateAuthorizer":{
258
274
  "name":"CreateAuthorizer",
259
275
  "http":{
@@ -678,6 +694,20 @@
678
694
  {"shape":"InternalFailureException"}
679
695
  ]
680
696
  },
697
+ "DeleteAuditSuppression":{
698
+ "name":"DeleteAuditSuppression",
699
+ "http":{
700
+ "method":"POST",
701
+ "requestUri":"/audit/suppressions/delete"
702
+ },
703
+ "input":{"shape":"DeleteAuditSuppressionRequest"},
704
+ "output":{"shape":"DeleteAuditSuppressionResponse"},
705
+ "errors":[
706
+ {"shape":"InvalidRequestException"},
707
+ {"shape":"ThrottlingException"},
708
+ {"shape":"InternalFailureException"}
709
+ ]
710
+ },
681
711
  "DeleteAuthorizer":{
682
712
  "name":"DeleteAuthorizer",
683
713
  "http":{
@@ -1160,6 +1190,21 @@
1160
1190
  {"shape":"InternalFailureException"}
1161
1191
  ]
1162
1192
  },
1193
+ "DescribeAuditSuppression":{
1194
+ "name":"DescribeAuditSuppression",
1195
+ "http":{
1196
+ "method":"POST",
1197
+ "requestUri":"/audit/suppressions/describe"
1198
+ },
1199
+ "input":{"shape":"DescribeAuditSuppressionRequest"},
1200
+ "output":{"shape":"DescribeAuditSuppressionResponse"},
1201
+ "errors":[
1202
+ {"shape":"InvalidRequestException"},
1203
+ {"shape":"ResourceNotFoundException"},
1204
+ {"shape":"ThrottlingException"},
1205
+ {"shape":"InternalFailureException"}
1206
+ ]
1207
+ },
1163
1208
  "DescribeAuditTask":{
1164
1209
  "name":"DescribeAuditTask",
1165
1210
  "http":{
@@ -1945,6 +1990,20 @@
1945
1990
  {"shape":"InternalFailureException"}
1946
1991
  ]
1947
1992
  },
1993
+ "ListAuditSuppressions":{
1994
+ "name":"ListAuditSuppressions",
1995
+ "http":{
1996
+ "method":"POST",
1997
+ "requestUri":"/audit/suppressions/list"
1998
+ },
1999
+ "input":{"shape":"ListAuditSuppressionsRequest"},
2000
+ "output":{"shape":"ListAuditSuppressionsResponse"},
2001
+ "errors":[
2002
+ {"shape":"InvalidRequestException"},
2003
+ {"shape":"ThrottlingException"},
2004
+ {"shape":"InternalFailureException"}
2005
+ ]
2006
+ },
1948
2007
  "ListAuditTasks":{
1949
2008
  "name":"ListAuditTasks",
1950
2009
  "http":{
@@ -3005,6 +3064,21 @@
3005
3064
  {"shape":"InternalFailureException"}
3006
3065
  ]
3007
3066
  },
3067
+ "UpdateAuditSuppression":{
3068
+ "name":"UpdateAuditSuppression",
3069
+ "http":{
3070
+ "method":"PATCH",
3071
+ "requestUri":"/audit/suppressions/update"
3072
+ },
3073
+ "input":{"shape":"UpdateAuditSuppressionRequest"},
3074
+ "output":{"shape":"UpdateAuditSuppressionResponse"},
3075
+ "errors":[
3076
+ {"shape":"InvalidRequestException"},
3077
+ {"shape":"ResourceNotFoundException"},
3078
+ {"shape":"ThrottlingException"},
3079
+ {"shape":"InternalFailureException"}
3080
+ ]
3081
+ },
3008
3082
  "UpdateAuthorizer":{
3009
3083
  "name":"UpdateAuthorizer",
3010
3084
  "http":{
@@ -3746,6 +3820,7 @@
3746
3820
  "checkCompliant":{"shape":"CheckCompliant"},
3747
3821
  "totalResourcesCount":{"shape":"TotalResourcesCount"},
3748
3822
  "nonCompliantResourcesCount":{"shape":"NonCompliantResourcesCount"},
3823
+ "suppressedNonCompliantResourcesCount":{"shape":"SuppressedNonCompliantResourcesCount"},
3749
3824
  "errorCode":{"shape":"ErrorCode"},
3750
3825
  "message":{"shape":"ErrorMessage"}
3751
3826
  }
@@ -3772,6 +3847,11 @@
3772
3847
  "key":{"shape":"AuditCheckName"},
3773
3848
  "value":{"shape":"ReasonForNonComplianceCodes"}
3774
3849
  },
3850
+ "AuditDescription":{
3851
+ "type":"string",
3852
+ "max":1000,
3853
+ "pattern":"[\\p{Graph}\\x20]*"
3854
+ },
3775
3855
  "AuditDetails":{
3776
3856
  "type":"map",
3777
3857
  "key":{"shape":"AuditCheckName"},
@@ -3789,7 +3869,8 @@
3789
3869
  "nonCompliantResource":{"shape":"NonCompliantResource"},
3790
3870
  "relatedResources":{"shape":"RelatedResources"},
3791
3871
  "reasonForNonCompliance":{"shape":"ReasonForNonCompliance"},
3792
- "reasonForNonComplianceCode":{"shape":"ReasonForNonComplianceCode"}
3872
+ "reasonForNonComplianceCode":{"shape":"ReasonForNonComplianceCode"},
3873
+ "isSuppressed":{"shape":"IsSuppressed"}
3793
3874
  }
3794
3875
  },
3795
3876
  "AuditFindingSeverity":{
@@ -3900,6 +3981,24 @@
3900
3981
  "type":"string",
3901
3982
  "enum":["SNS"]
3902
3983
  },
3984
+ "AuditSuppression":{
3985
+ "type":"structure",
3986
+ "required":[
3987
+ "checkName",
3988
+ "resourceIdentifier"
3989
+ ],
3990
+ "members":{
3991
+ "checkName":{"shape":"AuditCheckName"},
3992
+ "resourceIdentifier":{"shape":"ResourceIdentifier"},
3993
+ "expirationDate":{"shape":"Timestamp"},
3994
+ "suppressIndefinitely":{"shape":"SuppressIndefinitely"},
3995
+ "description":{"shape":"AuditDescription"}
3996
+ }
3997
+ },
3998
+ "AuditSuppressionList":{
3999
+ "type":"list",
4000
+ "member":{"shape":"AuditSuppression"}
4001
+ },
3903
4002
  "AuditTaskId":{
3904
4003
  "type":"string",
3905
4004
  "max":40,
@@ -4619,6 +4718,30 @@
4619
4718
  "min":1
4620
4719
  },
4621
4720
  "Count":{"type":"integer"},
4721
+ "CreateAuditSuppressionRequest":{
4722
+ "type":"structure",
4723
+ "required":[
4724
+ "checkName",
4725
+ "resourceIdentifier",
4726
+ "clientRequestToken"
4727
+ ],
4728
+ "members":{
4729
+ "checkName":{"shape":"AuditCheckName"},
4730
+ "resourceIdentifier":{"shape":"ResourceIdentifier"},
4731
+ "expirationDate":{"shape":"Timestamp"},
4732
+ "suppressIndefinitely":{"shape":"SuppressIndefinitely"},
4733
+ "description":{"shape":"AuditDescription"},
4734
+ "clientRequestToken":{
4735
+ "shape":"ClientRequestToken",
4736
+ "idempotencyToken":true
4737
+ }
4738
+ }
4739
+ },
4740
+ "CreateAuditSuppressionResponse":{
4741
+ "type":"structure",
4742
+ "members":{
4743
+ }
4744
+ },
4622
4745
  "CreateAuthorizerRequest":{
4623
4746
  "type":"structure",
4624
4747
  "required":[
@@ -5272,6 +5395,22 @@
5272
5395
  },
5273
5396
  "DeleteAdditionalMetricsToRetain":{"type":"boolean"},
5274
5397
  "DeleteAlertTargets":{"type":"boolean"},
5398
+ "DeleteAuditSuppressionRequest":{
5399
+ "type":"structure",
5400
+ "required":[
5401
+ "checkName",
5402
+ "resourceIdentifier"
5403
+ ],
5404
+ "members":{
5405
+ "checkName":{"shape":"AuditCheckName"},
5406
+ "resourceIdentifier":{"shape":"ResourceIdentifier"}
5407
+ }
5408
+ },
5409
+ "DeleteAuditSuppressionResponse":{
5410
+ "type":"structure",
5411
+ "members":{
5412
+ }
5413
+ },
5275
5414
  "DeleteAuthorizerRequest":{
5276
5415
  "type":"structure",
5277
5416
  "required":["authorizerName"],
@@ -5825,6 +5964,27 @@
5825
5964
  "actionsDefinition":{"shape":"MitigationActionList"}
5826
5965
  }
5827
5966
  },
5967
+ "DescribeAuditSuppressionRequest":{
5968
+ "type":"structure",
5969
+ "required":[
5970
+ "checkName",
5971
+ "resourceIdentifier"
5972
+ ],
5973
+ "members":{
5974
+ "checkName":{"shape":"AuditCheckName"},
5975
+ "resourceIdentifier":{"shape":"ResourceIdentifier"}
5976
+ }
5977
+ },
5978
+ "DescribeAuditSuppressionResponse":{
5979
+ "type":"structure",
5980
+ "members":{
5981
+ "checkName":{"shape":"AuditCheckName"},
5982
+ "resourceIdentifier":{"shape":"ResourceIdentifier"},
5983
+ "expirationDate":{"shape":"Timestamp"},
5984
+ "suppressIndefinitely":{"shape":"SuppressIndefinitely"},
5985
+ "description":{"shape":"AuditDescription"}
5986
+ }
5987
+ },
5828
5988
  "DescribeAuditTaskRequest":{
5829
5989
  "type":"structure",
5830
5990
  "required":["taskId"],
@@ -7258,6 +7418,7 @@
7258
7418
  "IsAuthenticated":{"type":"boolean"},
7259
7419
  "IsDefaultVersion":{"type":"boolean"},
7260
7420
  "IsDisabled":{"type":"boolean"},
7421
+ "IsSuppressed":{"type":"boolean"},
7261
7422
  "Job":{
7262
7423
  "type":"structure",
7263
7424
  "members":{
@@ -7555,7 +7716,8 @@
7555
7716
  "maxResults":{"shape":"MaxResults"},
7556
7717
  "nextToken":{"shape":"NextToken"},
7557
7718
  "startTime":{"shape":"Timestamp"},
7558
- "endTime":{"shape":"Timestamp"}
7719
+ "endTime":{"shape":"Timestamp"},
7720
+ "listSuppressedFindings":{"shape":"ListSuppressedFindings"}
7559
7721
  }
7560
7722
  },
7561
7723
  "ListAuditFindingsResponse":{
@@ -7657,6 +7819,23 @@
7657
7819
  "nextToken":{"shape":"NextToken"}
7658
7820
  }
7659
7821
  },
7822
+ "ListAuditSuppressionsRequest":{
7823
+ "type":"structure",
7824
+ "members":{
7825
+ "checkName":{"shape":"AuditCheckName"},
7826
+ "resourceIdentifier":{"shape":"ResourceIdentifier"},
7827
+ "ascendingOrder":{"shape":"AscendingOrder"},
7828
+ "nextToken":{"shape":"NextToken"},
7829
+ "maxResults":{"shape":"MaxResults"}
7830
+ }
7831
+ },
7832
+ "ListAuditSuppressionsResponse":{
7833
+ "type":"structure",
7834
+ "members":{
7835
+ "suppressions":{"shape":"AuditSuppressionList"},
7836
+ "nextToken":{"shape":"NextToken"}
7837
+ }
7838
+ },
7660
7839
  "ListAuditTasksRequest":{
7661
7840
  "type":"structure",
7662
7841
  "required":[
@@ -8433,6 +8612,7 @@
8433
8612
  "nextToken":{"shape":"NextToken"}
8434
8613
  }
8435
8614
  },
8615
+ "ListSuppressedFindings":{"type":"boolean"},
8436
8616
  "ListTagsForResourceRequest":{
8437
8617
  "type":"structure",
8438
8618
  "required":["resourceArn"],
@@ -10402,6 +10582,8 @@
10402
10582
  "SucceededThings":{"type":"integer"},
10403
10583
  "Sum":{"type":"double"},
10404
10584
  "SumOfSquares":{"type":"double"},
10585
+ "SuppressIndefinitely":{"type":"boolean"},
10586
+ "SuppressedNonCompliantResourcesCount":{"type":"long"},
10405
10587
  "TableName":{"type":"string"},
10406
10588
  "Tag":{
10407
10589
  "type":"structure",
@@ -10991,6 +11173,25 @@
10991
11173
  "members":{
10992
11174
  }
10993
11175
  },
11176
+ "UpdateAuditSuppressionRequest":{
11177
+ "type":"structure",
11178
+ "required":[
11179
+ "checkName",
11180
+ "resourceIdentifier"
11181
+ ],
11182
+ "members":{
11183
+ "checkName":{"shape":"AuditCheckName"},
11184
+ "resourceIdentifier":{"shape":"ResourceIdentifier"},
11185
+ "expirationDate":{"shape":"Timestamp"},
11186
+ "suppressIndefinitely":{"shape":"SuppressIndefinitely"},
11187
+ "description":{"shape":"AuditDescription"}
11188
+ }
11189
+ },
11190
+ "UpdateAuditSuppressionResponse":{
11191
+ "type":"structure",
11192
+ "members":{
11193
+ }
11194
+ },
10994
11195
  "UpdateAuthorizerRequest":{
10995
11196
  "type":"structure",
10996
11197
  "required":["authorizerName"],