aws-sdk-core 2.11.512 → 2.11.517

Sign up to get free protection for your applications and to get access to all the features.
@@ -6987,7 +6987,6 @@
6987
6987
  "OpsResultAttributeList":{
6988
6988
  "type":"list",
6989
6989
  "member":{"shape":"OpsResultAttribute"},
6990
- "max":1,
6991
6990
  "min":1
6992
6991
  },
6993
6992
  "OutputSource":{
@@ -277,13 +277,15 @@
277
277
  "type":"structure",
278
278
  "required":["TimeoutInSeconds"],
279
279
  "members":{
280
- "TimeoutInSeconds":{"shape":"MaxFifteenMinutesInSeconds"}
280
+ "TimeoutInSeconds":{"shape":"MaxFifteenMinutesInSeconds"},
281
+ "MemoryInMB":{"shape":"MaxSize3008"}
281
282
  }
282
283
  },
283
284
  "CanaryRunConfigOutput":{
284
285
  "type":"structure",
285
286
  "members":{
286
- "TimeoutInSeconds":{"shape":"MaxFifteenMinutesInSeconds"}
287
+ "TimeoutInSeconds":{"shape":"MaxFifteenMinutesInSeconds"},
288
+ "MemoryInMB":{"shape":"MaxSize3008"}
287
289
  }
288
290
  },
289
291
  "CanaryRunState":{
@@ -554,6 +556,11 @@
554
556
  "max":1024,
555
557
  "min":1
556
558
  },
559
+ "MaxSize3008":{
560
+ "type":"integer",
561
+ "max":3008,
562
+ "min":960
563
+ },
557
564
  "ResourceNotFoundException":{
558
565
  "type":"structure",
559
566
  "members":{
@@ -212,6 +212,21 @@
212
212
  ],
213
213
  "idempotent":true
214
214
  },
215
+ "DeleteRetentionPolicy":{
216
+ "name":"DeleteRetentionPolicy",
217
+ "http":{
218
+ "method":"POST",
219
+ "requestUri":"/"
220
+ },
221
+ "input":{"shape":"DeleteRetentionPolicyRequest"},
222
+ "output":{"shape":"DeleteRetentionPolicyResponse"},
223
+ "errors":[
224
+ {"shape":"InvalidParameterException"},
225
+ {"shape":"OrganizationNotFoundException"},
226
+ {"shape":"OrganizationStateException"}
227
+ ],
228
+ "idempotent":true
229
+ },
215
230
  "DeleteUser":{
216
231
  "name":"DeleteUser",
217
232
  "http":{
@@ -362,6 +377,22 @@
362
377
  {"shape":"OrganizationStateException"}
363
378
  ]
364
379
  },
380
+ "GetDefaultRetentionPolicy":{
381
+ "name":"GetDefaultRetentionPolicy",
382
+ "http":{
383
+ "method":"POST",
384
+ "requestUri":"/"
385
+ },
386
+ "input":{"shape":"GetDefaultRetentionPolicyRequest"},
387
+ "output":{"shape":"GetDefaultRetentionPolicyResponse"},
388
+ "errors":[
389
+ {"shape":"InvalidParameterException"},
390
+ {"shape":"OrganizationNotFoundException"},
391
+ {"shape":"OrganizationStateException"},
392
+ {"shape":"EntityNotFoundException"}
393
+ ],
394
+ "idempotent":true
395
+ },
365
396
  "GetMailboxDetails":{
366
397
  "name":"GetMailboxDetails",
367
398
  "http":{
@@ -561,6 +592,22 @@
561
592
  ],
562
593
  "idempotent":true
563
594
  },
595
+ "PutRetentionPolicy":{
596
+ "name":"PutRetentionPolicy",
597
+ "http":{
598
+ "method":"POST",
599
+ "requestUri":"/"
600
+ },
601
+ "input":{"shape":"PutRetentionPolicyRequest"},
602
+ "output":{"shape":"PutRetentionPolicyResponse"},
603
+ "errors":[
604
+ {"shape":"InvalidParameterException"},
605
+ {"shape":"OrganizationNotFoundException"},
606
+ {"shape":"OrganizationStateException"},
607
+ {"shape":"LimitExceededException"}
608
+ ],
609
+ "idempotent":true
610
+ },
564
611
  "RegisterToWorkMail":{
565
612
  "name":"RegisterToWorkMail",
566
613
  "http":{
@@ -979,6 +1026,22 @@
979
1026
  "members":{
980
1027
  }
981
1028
  },
1029
+ "DeleteRetentionPolicyRequest":{
1030
+ "type":"structure",
1031
+ "required":[
1032
+ "OrganizationId",
1033
+ "Id"
1034
+ ],
1035
+ "members":{
1036
+ "OrganizationId":{"shape":"OrganizationId"},
1037
+ "Id":{"shape":"ShortString"}
1038
+ }
1039
+ },
1040
+ "DeleteRetentionPolicyResponse":{
1041
+ "type":"structure",
1042
+ "members":{
1043
+ }
1044
+ },
982
1045
  "DeleteUserRequest":{
983
1046
  "type":"structure",
984
1047
  "required":[
@@ -1194,6 +1257,32 @@
1194
1257
  },
1195
1258
  "exception":true
1196
1259
  },
1260
+ "FolderConfiguration":{
1261
+ "type":"structure",
1262
+ "required":[
1263
+ "Name",
1264
+ "Action"
1265
+ ],
1266
+ "members":{
1267
+ "Name":{"shape":"FolderName"},
1268
+ "Action":{"shape":"RetentionAction"},
1269
+ "Period":{"shape":"RetentionPeriod"}
1270
+ }
1271
+ },
1272
+ "FolderConfigurations":{
1273
+ "type":"list",
1274
+ "member":{"shape":"FolderConfiguration"}
1275
+ },
1276
+ "FolderName":{
1277
+ "type":"string",
1278
+ "enum":[
1279
+ "INBOX",
1280
+ "DELETED_ITEMS",
1281
+ "SENT_ITEMS",
1282
+ "DRAFTS",
1283
+ "JUNK_EMAIL"
1284
+ ]
1285
+ },
1197
1286
  "GetAccessControlEffectRequest":{
1198
1287
  "type":"structure",
1199
1288
  "required":[
@@ -1216,6 +1305,22 @@
1216
1305
  "MatchedRules":{"shape":"AccessControlRuleNameList"}
1217
1306
  }
1218
1307
  },
1308
+ "GetDefaultRetentionPolicyRequest":{
1309
+ "type":"structure",
1310
+ "required":["OrganizationId"],
1311
+ "members":{
1312
+ "OrganizationId":{"shape":"OrganizationId"}
1313
+ }
1314
+ },
1315
+ "GetDefaultRetentionPolicyResponse":{
1316
+ "type":"structure",
1317
+ "members":{
1318
+ "Id":{"shape":"ShortString"},
1319
+ "Name":{"shape":"ShortString"},
1320
+ "Description":{"shape":"String"},
1321
+ "FolderConfigurations":{"shape":"FolderConfigurations"}
1322
+ }
1323
+ },
1219
1324
  "GetMailboxDetailsRequest":{
1220
1325
  "type":"structure",
1221
1326
  "required":[
@@ -1604,6 +1709,11 @@
1604
1709
  "type":"list",
1605
1710
  "member":{"shape":"Permission"}
1606
1711
  },
1712
+ "PolicyDescription":{
1713
+ "type":"string",
1714
+ "max":256,
1715
+ "pattern":"[\\w\\d\\s\\S\\-!?=,.;:'_]+"
1716
+ },
1607
1717
  "PutAccessControlRuleRequest":{
1608
1718
  "type":"structure",
1609
1719
  "required":[
@@ -1650,6 +1760,26 @@
1650
1760
  "members":{
1651
1761
  }
1652
1762
  },
1763
+ "PutRetentionPolicyRequest":{
1764
+ "type":"structure",
1765
+ "required":[
1766
+ "OrganizationId",
1767
+ "Name",
1768
+ "FolderConfigurations"
1769
+ ],
1770
+ "members":{
1771
+ "OrganizationId":{"shape":"OrganizationId"},
1772
+ "Id":{"shape":"ShortString"},
1773
+ "Name":{"shape":"ShortString"},
1774
+ "Description":{"shape":"PolicyDescription"},
1775
+ "FolderConfigurations":{"shape":"FolderConfigurations"}
1776
+ }
1777
+ },
1778
+ "PutRetentionPolicyResponse":{
1779
+ "type":"structure",
1780
+ "members":{
1781
+ }
1782
+ },
1653
1783
  "RegisterToWorkMailRequest":{
1654
1784
  "type":"structure",
1655
1785
  "required":[
@@ -1737,6 +1867,26 @@
1737
1867
  "type":"list",
1738
1868
  "member":{"shape":"Resource"}
1739
1869
  },
1870
+ "RetentionAction":{
1871
+ "type":"string",
1872
+ "enum":[
1873
+ "NONE",
1874
+ "DELETE",
1875
+ "PERMANENTLY_DELETE"
1876
+ ]
1877
+ },
1878
+ "RetentionPeriod":{
1879
+ "type":"integer",
1880
+ "box":true,
1881
+ "max":730,
1882
+ "min":1
1883
+ },
1884
+ "ShortString":{
1885
+ "type":"string",
1886
+ "max":64,
1887
+ "min":1,
1888
+ "pattern":"[a-zA-Z0-9_-]+"
1889
+ },
1740
1890
  "String":{
1741
1891
  "type":"string",
1742
1892
  "max":256
@@ -210,6 +210,29 @@
210
210
  "us-west-2" : { }
211
211
  }
212
212
  },
213
+ "api.detective" : {
214
+ "defaults" : {
215
+ "protocols" : [ "https" ]
216
+ },
217
+ "endpoints" : {
218
+ "ap-northeast-1" : { },
219
+ "ap-northeast-2" : { },
220
+ "ap-south-1" : { },
221
+ "ap-southeast-1" : { },
222
+ "ap-southeast-2" : { },
223
+ "ca-central-1" : { },
224
+ "eu-central-1" : { },
225
+ "eu-north-1" : { },
226
+ "eu-west-1" : { },
227
+ "eu-west-2" : { },
228
+ "eu-west-3" : { },
229
+ "sa-east-1" : { },
230
+ "us-east-1" : { },
231
+ "us-east-2" : { },
232
+ "us-west-1" : { },
233
+ "us-west-2" : { }
234
+ }
235
+ },
213
236
  "api.ecr" : {
214
237
  "endpoints" : {
215
238
  "af-south-1" : {
@@ -1999,6 +2022,7 @@
1999
2022
  "ca-central-1" : { },
2000
2023
  "eu-central-1" : { },
2001
2024
  "eu-north-1" : { },
2025
+ "eu-south-1" : { },
2002
2026
  "eu-west-1" : { },
2003
2027
  "eu-west-2" : { },
2004
2028
  "eu-west-3" : { },
@@ -2062,6 +2086,12 @@
2062
2086
  },
2063
2087
  "hostname" : "elasticfilesystem-fips.eu-north-1.amazonaws.com"
2064
2088
  },
2089
+ "fips-eu-south-1" : {
2090
+ "credentialScope" : {
2091
+ "region" : "eu-south-1"
2092
+ },
2093
+ "hostname" : "elasticfilesystem-fips.eu-south-1.amazonaws.com"
2094
+ },
2065
2095
  "fips-eu-west-1" : {
2066
2096
  "credentialScope" : {
2067
2097
  "region" : "eu-west-1"
@@ -3123,8 +3153,10 @@
3123
3153
  "ap-southeast-2" : { },
3124
3154
  "ca-central-1" : { },
3125
3155
  "eu-central-1" : { },
3156
+ "eu-north-1" : { },
3126
3157
  "eu-west-1" : { },
3127
3158
  "eu-west-2" : { },
3159
+ "eu-west-3" : { },
3128
3160
  "sa-east-1" : { },
3129
3161
  "us-east-1" : { },
3130
3162
  "us-east-2" : { },
@@ -3334,9 +3366,40 @@
3334
3366
  "ap-southeast-2" : { },
3335
3367
  "ca-central-1" : { },
3336
3368
  "eu-central-1" : { },
3369
+ "eu-north-1" : { },
3337
3370
  "eu-west-1" : { },
3338
3371
  "eu-west-2" : { },
3339
3372
  "eu-west-3" : { },
3373
+ "fips-ca-central-1" : {
3374
+ "credentialScope" : {
3375
+ "region" : "ca-central-1"
3376
+ },
3377
+ "hostname" : "mediaconvert-fips.ca-central-1.amazonaws.com"
3378
+ },
3379
+ "fips-us-east-1" : {
3380
+ "credentialScope" : {
3381
+ "region" : "us-east-1"
3382
+ },
3383
+ "hostname" : "mediaconvert-fips.us-east-1.amazonaws.com"
3384
+ },
3385
+ "fips-us-east-2" : {
3386
+ "credentialScope" : {
3387
+ "region" : "us-east-2"
3388
+ },
3389
+ "hostname" : "mediaconvert-fips.us-east-2.amazonaws.com"
3390
+ },
3391
+ "fips-us-west-1" : {
3392
+ "credentialScope" : {
3393
+ "region" : "us-west-1"
3394
+ },
3395
+ "hostname" : "mediaconvert-fips.us-west-1.amazonaws.com"
3396
+ },
3397
+ "fips-us-west-2" : {
3398
+ "credentialScope" : {
3399
+ "region" : "us-west-2"
3400
+ },
3401
+ "hostname" : "mediaconvert-fips.us-west-2.amazonaws.com"
3402
+ },
3340
3403
  "sa-east-1" : { },
3341
3404
  "us-east-1" : { },
3342
3405
  "us-east-2" : { },
@@ -6958,6 +7021,18 @@
6958
7021
  },
6959
7022
  "elasticloadbalancing" : {
6960
7023
  "endpoints" : {
7024
+ "fips-us-gov-east-1" : {
7025
+ "credentialScope" : {
7026
+ "region" : "us-gov-east-1"
7027
+ },
7028
+ "hostname" : "elasticloadbalancing-fips.us-gov-east-1.amazonaws.com"
7029
+ },
7030
+ "fips-us-gov-west-1" : {
7031
+ "credentialScope" : {
7032
+ "region" : "us-gov-west-1"
7033
+ },
7034
+ "hostname" : "elasticloadbalancing-fips.us-gov-west-1.amazonaws.com"
7035
+ },
6961
7036
  "us-gov-east-1" : { },
6962
7037
  "us-gov-west-1" : {
6963
7038
  "protocols" : [ "http", "https" ]
@@ -7095,7 +7170,13 @@
7095
7170
  "protocols" : [ "https" ]
7096
7171
  },
7097
7172
  "endpoints" : {
7098
- "us-gov-west-1" : { }
7173
+ "us-gov-west-1" : { },
7174
+ "us-gov-west-1-fips" : {
7175
+ "credentialScope" : {
7176
+ "region" : "us-gov-west-1"
7177
+ },
7178
+ "hostname" : "guardduty.us-gov-west-1.amazonaws.com"
7179
+ }
7099
7180
  },
7100
7181
  "isRegionalized" : true
7101
7182
  },
@@ -7217,7 +7298,12 @@
7217
7298
  },
7218
7299
  "mediaconvert" : {
7219
7300
  "endpoints" : {
7220
- "us-gov-west-1" : { }
7301
+ "us-gov-west-1" : {
7302
+ "credentialScope" : {
7303
+ "region" : "us-gov-west-1"
7304
+ },
7305
+ "hostname" : "mediaconvert.us-gov-west-1.amazonaws.com"
7306
+ }
7221
7307
  }
7222
7308
  },
7223
7309
  "metering.marketplace" : {
@@ -7272,6 +7358,12 @@
7272
7358
  "region" : "us-gov-west-1"
7273
7359
  },
7274
7360
  "hostname" : "organizations.us-gov-west-1.amazonaws.com"
7361
+ },
7362
+ "fips-aws-us-gov-global" : {
7363
+ "credentialScope" : {
7364
+ "region" : "us-gov-west-1"
7365
+ },
7366
+ "hostname" : "organizations.us-gov-west-1.amazonaws.com"
7275
7367
  }
7276
7368
  },
7277
7369
  "isRegionalized" : false,
@@ -7487,9 +7579,17 @@
7487
7579
  },
7488
7580
  "endpoints" : {
7489
7581
  "us-gov-east-1" : {
7582
+ "credentialScope" : {
7583
+ "region" : "us-gov-east-1"
7584
+ },
7585
+ "hostname" : "serverlessrepo.us-gov-east-1.amazonaws.com",
7490
7586
  "protocols" : [ "https" ]
7491
7587
  },
7492
7588
  "us-gov-west-1" : {
7589
+ "credentialScope" : {
7590
+ "region" : "us-gov-west-1"
7591
+ },
7592
+ "hostname" : "serverlessrepo.us-gov-west-1.amazonaws.com",
7493
7593
  "protocols" : [ "https" ]
7494
7594
  }
7495
7595
  }
@@ -7550,8 +7650,17 @@
7550
7650
  },
7551
7651
  "sns" : {
7552
7652
  "endpoints" : {
7553
- "us-gov-east-1" : { },
7653
+ "us-gov-east-1" : {
7654
+ "credentialScope" : {
7655
+ "region" : "us-gov-east-1"
7656
+ },
7657
+ "hostname" : "sns.us-gov-east-1.amazonaws.com"
7658
+ },
7554
7659
  "us-gov-west-1" : {
7660
+ "credentialScope" : {
7661
+ "region" : "us-gov-west-1"
7662
+ },
7663
+ "hostname" : "sns.us-gov-west-1.amazonaws.com",
7555
7664
  "protocols" : [ "http", "https" ]
7556
7665
  }
7557
7666
  }
@@ -7654,7 +7763,19 @@
7654
7763
  "sts" : {
7655
7764
  "endpoints" : {
7656
7765
  "us-gov-east-1" : { },
7657
- "us-gov-west-1" : { }
7766
+ "us-gov-east-1-fips" : {
7767
+ "credentialScope" : {
7768
+ "region" : "us-gov-east-1"
7769
+ },
7770
+ "hostname" : "sts.us-gov-east-1.amazonaws.com"
7771
+ },
7772
+ "us-gov-west-1" : { },
7773
+ "us-gov-west-1-fips" : {
7774
+ "credentialScope" : {
7775
+ "region" : "us-gov-west-1"
7776
+ },
7777
+ "hostname" : "sts.us-gov-west-1.amazonaws.com"
7778
+ }
7658
7779
  }
7659
7780
  },
7660
7781
  "support" : {
@@ -7664,6 +7785,12 @@
7664
7785
  "region" : "us-gov-west-1"
7665
7786
  },
7666
7787
  "hostname" : "support.us-gov-west-1.amazonaws.com"
7788
+ },
7789
+ "fips-us-gov-west-1" : {
7790
+ "credentialScope" : {
7791
+ "region" : "us-gov-west-1"
7792
+ },
7793
+ "hostname" : "support.us-gov-west-1.amazonaws.com"
7667
7794
  }
7668
7795
  },
7669
7796
  "partitionEndpoint" : "aws-us-gov-global"