aws-sdk-core 2.11.516 → 2.11.521

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7477,7 +7477,8 @@
7477
7477
  "members":{
7478
7478
  "UiTemplate":{"shape":"UiTemplate"},
7479
7479
  "Task":{"shape":"RenderableTask"},
7480
- "RoleArn":{"shape":"RoleArn"}
7480
+ "RoleArn":{"shape":"RoleArn"},
7481
+ "HumanTaskUiArn":{"shape":"HumanTaskUiArn"}
7481
7482
  }
7482
7483
  },
7483
7484
  "RenderUiTemplateResponse":{
@@ -8178,7 +8179,7 @@
8178
8179
  },
8179
8180
  "TaskTimeLimitInSeconds":{
8180
8181
  "type":"integer",
8181
- "max":28800,
8182
+ "max":604800,
8182
8183
  "min":30
8183
8184
  },
8184
8185
  "TaskTitle":{
@@ -8831,7 +8832,8 @@
8831
8832
  "UiConfig":{
8832
8833
  "type":"structure",
8833
8834
  "members":{
8834
- "UiTemplateS3Uri":{"shape":"S3Uri"}
8835
+ "UiTemplateS3Uri":{"shape":"S3Uri"},
8836
+ "HumanTaskUiArn":{"shape":"HumanTaskUiArn"}
8835
8837
  }
8836
8838
  },
8837
8839
  "UiTemplate":{
@@ -1895,6 +1895,7 @@
1895
1895
  },
1896
1896
  "exception":true
1897
1897
  },
1898
+ "ApplyOnlyAtCronInterval":{"type":"boolean"},
1898
1899
  "ApproveAfterDays":{
1899
1900
  "type":"integer",
1900
1901
  "max":100,
@@ -1960,7 +1961,8 @@
1960
1961
  "MaxErrors":{"shape":"MaxErrors"},
1961
1962
  "MaxConcurrency":{"shape":"MaxConcurrency"},
1962
1963
  "ComplianceSeverity":{"shape":"AssociationComplianceSeverity"},
1963
- "SyncCompliance":{"shape":"AssociationSyncCompliance"}
1964
+ "SyncCompliance":{"shape":"AssociationSyncCompliance"},
1965
+ "ApplyOnlyAtCronInterval":{"shape":"ApplyOnlyAtCronInterval"}
1964
1966
  }
1965
1967
  },
1966
1968
  "AssociationDescriptionList":{
@@ -2215,7 +2217,8 @@
2215
2217
  "MaxErrors":{"shape":"MaxErrors"},
2216
2218
  "MaxConcurrency":{"shape":"MaxConcurrency"},
2217
2219
  "ComplianceSeverity":{"shape":"AssociationComplianceSeverity"},
2218
- "SyncCompliance":{"shape":"AssociationSyncCompliance"}
2220
+ "SyncCompliance":{"shape":"AssociationSyncCompliance"},
2221
+ "ApplyOnlyAtCronInterval":{"shape":"ApplyOnlyAtCronInterval"}
2219
2222
  }
2220
2223
  },
2221
2224
  "AssociationVersionLimitExceeded":{
@@ -3001,7 +3004,8 @@
3001
3004
  "MaxErrors":{"shape":"MaxErrors"},
3002
3005
  "MaxConcurrency":{"shape":"MaxConcurrency"},
3003
3006
  "ComplianceSeverity":{"shape":"AssociationComplianceSeverity"},
3004
- "SyncCompliance":{"shape":"AssociationSyncCompliance"}
3007
+ "SyncCompliance":{"shape":"AssociationSyncCompliance"},
3008
+ "ApplyOnlyAtCronInterval":{"shape":"ApplyOnlyAtCronInterval"}
3005
3009
  }
3006
3010
  },
3007
3011
  "CreateAssociationBatchResult":{
@@ -3027,7 +3031,8 @@
3027
3031
  "MaxErrors":{"shape":"MaxErrors"},
3028
3032
  "MaxConcurrency":{"shape":"MaxConcurrency"},
3029
3033
  "ComplianceSeverity":{"shape":"AssociationComplianceSeverity"},
3030
- "SyncCompliance":{"shape":"AssociationSyncCompliance"}
3034
+ "SyncCompliance":{"shape":"AssociationSyncCompliance"},
3035
+ "ApplyOnlyAtCronInterval":{"shape":"ApplyOnlyAtCronInterval"}
3031
3036
  }
3032
3037
  },
3033
3038
  "CreateAssociationResult":{
@@ -8933,7 +8938,8 @@
8933
8938
  "MaxErrors":{"shape":"MaxErrors"},
8934
8939
  "MaxConcurrency":{"shape":"MaxConcurrency"},
8935
8940
  "ComplianceSeverity":{"shape":"AssociationComplianceSeverity"},
8936
- "SyncCompliance":{"shape":"AssociationSyncCompliance"}
8941
+ "SyncCompliance":{"shape":"AssociationSyncCompliance"},
8942
+ "ApplyOnlyAtCronInterval":{"shape":"ApplyOnlyAtCronInterval"}
8937
8943
  }
8938
8944
  },
8939
8945
  "UpdateAssociationResult":{
@@ -302,6 +302,7 @@
302
302
  {"shape":"UnauthorizedException"},
303
303
  {"shape":"InternalServerErrorException"},
304
304
  {"shape":"InvalidRequestException"},
305
+ {"shape":"ResourceNotFoundException"},
305
306
  {"shape":"TooManyRequestsException"}
306
307
  ]
307
308
  },
@@ -320,6 +321,18 @@
320
321
  {"shape":"TooManyRequestsException"}
321
322
  ]
322
323
  },
324
+ "ListTagsForResource":{
325
+ "name":"ListTagsForResource",
326
+ "http":{
327
+ "method":"GET",
328
+ "requestUri":"/tags/{ResourceArn}"
329
+ },
330
+ "input":{"shape":"ListTagsForResourceRequest"},
331
+ "output":{"shape":"ListTagsForResourceResponse"},
332
+ "errors":[
333
+ {"shape":"InvalidRequestException"}
334
+ ]
335
+ },
323
336
  "ListWebsiteAuthorizationProviders":{
324
337
  "name":"ListWebsiteAuthorizationProviders",
325
338
  "http":{
@@ -399,6 +412,30 @@
399
412
  {"shape":"TooManyRequestsException"}
400
413
  ]
401
414
  },
415
+ "TagResource":{
416
+ "name":"TagResource",
417
+ "http":{
418
+ "method":"POST",
419
+ "requestUri":"/tags/{ResourceArn}"
420
+ },
421
+ "input":{"shape":"TagResourceRequest"},
422
+ "output":{"shape":"TagResourceResponse"},
423
+ "errors":[
424
+ {"shape":"InvalidRequestException"}
425
+ ]
426
+ },
427
+ "UntagResource":{
428
+ "name":"UntagResource",
429
+ "http":{
430
+ "method":"DELETE",
431
+ "requestUri":"/tags/{ResourceArn}"
432
+ },
433
+ "input":{"shape":"UntagResourceRequest"},
434
+ "output":{"shape":"UntagResourceResponse"},
435
+ "errors":[
436
+ {"shape":"InvalidRequestException"}
437
+ ]
438
+ },
402
439
  "UpdateAuditStreamConfiguration":{
403
440
  "name":"UpdateAuditStreamConfiguration",
404
441
  "http":{
@@ -556,7 +593,10 @@
556
593
  "WebsiteCaId":{"shape":"Id"}
557
594
  }
558
595
  },
559
- "AuditStreamArn":{"type":"string"},
596
+ "AuditStreamArn":{
597
+ "type":"string",
598
+ "pattern":"^arn:aws:kinesis:.+:[0-9]{12}:stream/AmazonWorkLink-.*$"
599
+ },
560
600
  "AuthorizationProviderType":{
561
601
  "type":"string",
562
602
  "enum":["SAML"]
@@ -585,7 +625,8 @@
585
625
  "members":{
586
626
  "FleetName":{"shape":"FleetName"},
587
627
  "DisplayName":{"shape":"DisplayName"},
588
- "OptimizeForEndUserLocation":{"shape":"Boolean"}
628
+ "OptimizeForEndUserLocation":{"shape":"Boolean"},
629
+ "Tags":{"shape":"TagMap"}
589
630
  }
590
631
  },
591
632
  "CreateFleetResponse":{
@@ -710,7 +751,8 @@
710
751
  "DisplayName":{"shape":"DisplayName"},
711
752
  "OptimizeForEndUserLocation":{"shape":"Boolean"},
712
753
  "CompanyCode":{"shape":"CompanyCode"},
713
- "FleetStatus":{"shape":"FleetStatus"}
754
+ "FleetStatus":{"shape":"FleetStatus"},
755
+ "Tags":{"shape":"TagMap"}
714
756
  }
715
757
  },
716
758
  "DescribeIdentityProviderConfigurationRequest":{
@@ -911,7 +953,8 @@
911
953
  "FleetName":{"shape":"FleetName"},
912
954
  "DisplayName":{"shape":"DisplayName"},
913
955
  "CompanyCode":{"shape":"CompanyCode"},
914
- "FleetStatus":{"shape":"FleetStatus"}
956
+ "FleetStatus":{"shape":"FleetStatus"},
957
+ "Tags":{"shape":"TagMap"}
915
958
  }
916
959
  },
917
960
  "FleetSummaryList":{
@@ -989,6 +1032,23 @@
989
1032
  "NextToken":{"shape":"NextToken"}
990
1033
  }
991
1034
  },
1035
+ "ListTagsForResourceRequest":{
1036
+ "type":"structure",
1037
+ "required":["ResourceArn"],
1038
+ "members":{
1039
+ "ResourceArn":{
1040
+ "shape":"FleetArn",
1041
+ "location":"uri",
1042
+ "locationName":"ResourceArn"
1043
+ }
1044
+ }
1045
+ },
1046
+ "ListTagsForResourceResponse":{
1047
+ "type":"structure",
1048
+ "members":{
1049
+ "Tags":{"shape":"TagMap"}
1050
+ }
1051
+ },
992
1052
  "ListWebsiteAuthorizationProvidersRequest":{
993
1053
  "type":"structure",
994
1054
  "required":["FleetArn"],
@@ -1117,6 +1177,49 @@
1117
1177
  "type":"list",
1118
1178
  "member":{"shape":"SubnetId"}
1119
1179
  },
1180
+ "TagKey":{
1181
+ "type":"string",
1182
+ "max":128,
1183
+ "min":1,
1184
+ "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$"
1185
+ },
1186
+ "TagKeyList":{
1187
+ "type":"list",
1188
+ "member":{"shape":"TagKey"},
1189
+ "max":50,
1190
+ "min":1
1191
+ },
1192
+ "TagMap":{
1193
+ "type":"map",
1194
+ "key":{"shape":"TagKey"},
1195
+ "value":{"shape":"TagValue"},
1196
+ "max":50,
1197
+ "min":1
1198
+ },
1199
+ "TagResourceRequest":{
1200
+ "type":"structure",
1201
+ "required":[
1202
+ "ResourceArn",
1203
+ "Tags"
1204
+ ],
1205
+ "members":{
1206
+ "ResourceArn":{
1207
+ "shape":"FleetArn",
1208
+ "location":"uri",
1209
+ "locationName":"ResourceArn"
1210
+ },
1211
+ "Tags":{"shape":"TagMap"}
1212
+ }
1213
+ },
1214
+ "TagResourceResponse":{
1215
+ "type":"structure",
1216
+ "members":{
1217
+ }
1218
+ },
1219
+ "TagValue":{
1220
+ "type":"string",
1221
+ "max":256
1222
+ },
1120
1223
  "TooManyRequestsException":{
1121
1224
  "type":"structure",
1122
1225
  "members":{
@@ -1133,6 +1236,30 @@
1133
1236
  "error":{"httpStatusCode":403},
1134
1237
  "exception":true
1135
1238
  },
1239
+ "UntagResourceRequest":{
1240
+ "type":"structure",
1241
+ "required":[
1242
+ "ResourceArn",
1243
+ "TagKeys"
1244
+ ],
1245
+ "members":{
1246
+ "ResourceArn":{
1247
+ "shape":"FleetArn",
1248
+ "location":"uri",
1249
+ "locationName":"ResourceArn"
1250
+ },
1251
+ "TagKeys":{
1252
+ "shape":"TagKeyList",
1253
+ "location":"querystring",
1254
+ "locationName":"tagKeys"
1255
+ }
1256
+ }
1257
+ },
1258
+ "UntagResourceResponse":{
1259
+ "type":"structure",
1260
+ "members":{
1261
+ }
1262
+ },
1136
1263
  "UpdateAuditStreamConfigurationRequest":{
1137
1264
  "type":"structure",
1138
1265
  "required":["FleetArn"],
@@ -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