aws-sdk 2.1597.0 → 2.1599.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. package/README.md +1 -1
  2. package/apis/batch-2016-08-10.min.json +47 -19
  3. package/apis/cloudformation-2010-05-15.min.json +54 -45
  4. package/apis/glue-2017-03-31.min.json +2 -0
  5. package/apis/healthlake-2017-07-01.min.json +21 -14
  6. package/apis/iam-2010-05-08.min.json +1 -2
  7. package/apis/kms-2014-11-01.examples.json +73 -8
  8. package/apis/kms-2014-11-01.min.json +71 -4
  9. package/apis/kms-2014-11-01.paginators.json +14 -0
  10. package/apis/medialive-2017-10-14.min.json +1992 -3
  11. package/apis/medialive-2017-10-14.paginators.json +30 -0
  12. package/apis/medialive-2017-10-14.waiters2.json +128 -0
  13. package/apis/mediatailor-2018-04-23.min.json +21 -17
  14. package/apis/monitoring-2010-08-01.min.json +36 -22
  15. package/apis/omics-2022-11-28.min.json +238 -221
  16. package/apis/redshift-2012-12-01.min.json +2 -1
  17. package/clients/batch.d.ts +50 -4
  18. package/clients/cloudformation.d.ts +36 -1
  19. package/clients/cloudfront.d.ts +60 -60
  20. package/clients/cloudwatch.d.ts +16 -1
  21. package/clients/codebuild.d.ts +1 -1
  22. package/clients/configservice.d.ts +4 -4
  23. package/clients/glue.d.ts +13 -5
  24. package/clients/healthlake.d.ts +17 -1
  25. package/clients/iam.d.ts +7 -7
  26. package/clients/iotfleethub.d.ts +19 -19
  27. package/clients/kms.d.ts +105 -12
  28. package/clients/medialive.d.ts +1419 -0
  29. package/clients/mediatailor.d.ts +17 -0
  30. package/clients/omics.d.ts +137 -94
  31. package/clients/outposts.d.ts +1 -1
  32. package/clients/rds.d.ts +10 -10
  33. package/clients/redshift.d.ts +4 -0
  34. package/clients/s3control.d.ts +36 -36
  35. package/clients/transfer.d.ts +4 -4
  36. package/dist/aws-sdk-core-react-native.js +1 -1
  37. package/dist/aws-sdk-react-native.js +15 -15
  38. package/dist/aws-sdk.js +181 -77
  39. package/dist/aws-sdk.min.js +66 -66
  40. package/lib/core.js +1 -1
  41. package/package.json +1 -1
@@ -1064,15 +1064,17 @@
1064
1064
  "EnableKeyRotation": [
1065
1065
  {
1066
1066
  "input": {
1067
- "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab"
1067
+ "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab",
1068
+ "RotationPeriodInDays": 365
1068
1069
  },
1069
1070
  "comments": {
1070
1071
  "input": {
1071
- "KeyId": "The identifier of the KMS key whose key material will be rotated annually. You can use the key ID or the Amazon Resource Name (ARN) of the KMS key."
1072
+ "KeyId": "The identifier of the KMS key whose key material will be automatically rotated. You can use the key ID or the Amazon Resource Name (ARN) of the KMS key.",
1073
+ "RotationPeriodInDays": "The number of days between each rotation date. Specify a value between 9 and 2560. If no value is specified, the default value is 365 days."
1072
1074
  }
1073
1075
  },
1074
- "description": "The following example enables automatic annual rotation of the key material for the specified KMS key.",
1075
- "id": "to-enable-automatic-rotation-of-key-material-1478629109677",
1076
+ "description": "The following example enables automatic rotation with a rotation period of 365 days for the specified KMS key.",
1077
+ "id": "to-enable-automatic-rotation-of-key-material-1712499675853",
1076
1078
  "title": "To enable automatic rotation of key material"
1077
1079
  }
1078
1080
  ],
@@ -1415,18 +1417,26 @@
1415
1417
  "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab"
1416
1418
  },
1417
1419
  "output": {
1418
- "KeyRotationEnabled": true
1420
+ "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab",
1421
+ "KeyRotationEnabled": true,
1422
+ "NextRotationDate": "2024-04-05T15:14:47.757000+00:00",
1423
+ "OnDemandRotationStartDate": "2024-03-02T10:11:36.564000+00:00",
1424
+ "RotationPeriodInDays": 365
1419
1425
  },
1420
1426
  "comments": {
1421
1427
  "input": {
1422
1428
  "KeyId": "The identifier of the KMS key whose key material rotation status you want to retrieve. You can use the key ID or the Amazon Resource Name (ARN) of the KMS key."
1423
1429
  },
1424
1430
  "output": {
1425
- "KeyRotationEnabled": "A boolean that indicates the key material rotation status. Returns true when automatic annual rotation of the key material is enabled, or false when it is not."
1431
+ "KeyId": "Identifies the specified symmetric encryption KMS key.",
1432
+ "KeyRotationEnabled": "A boolean that indicates the key material rotation status. Returns true when automatic rotation of the key material is enabled, or false when it is not.",
1433
+ "NextRotationDate": "The next date that the key material will be automatically rotated.",
1434
+ "OnDemandRotationStartDate": "Identifies the date and time that an in progress on-demand rotation was initiated.",
1435
+ "RotationPeriodInDays": "The number of days between each automatic rotation. The default value is 365 days."
1426
1436
  }
1427
1437
  },
1428
- "description": "The following example retrieves the status of automatic annual rotation of the key material for the specified KMS key.",
1429
- "id": "to-retrieve-the-rotation-status-for-a-cmk-1479172287408",
1438
+ "description": "The following example retrieves detailed information about the rotation status for a KMS key, including whether automatic key rotation is enabled for the specified KMS key, the rotation period, and the next scheduled rotation date.",
1439
+ "id": "to-retrieve-the-rotation-status-for-a-kms-key-1712500357701",
1430
1440
  "title": "To retrieve the rotation status for a KMS key"
1431
1441
  }
1432
1442
  ],
@@ -1780,6 +1790,40 @@
1780
1790
  "title": "To list key policies for a KMS key"
1781
1791
  }
1782
1792
  ],
1793
+ "ListKeyRotations": [
1794
+ {
1795
+ "input": {
1796
+ "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab"
1797
+ },
1798
+ "output": {
1799
+ "Rotations": [
1800
+ {
1801
+ "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab",
1802
+ "RotationDate": "2024-03-02T10:11:36.564000+00:00",
1803
+ "RotationType": "AUTOMATIC"
1804
+ },
1805
+ {
1806
+ "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab",
1807
+ "RotationDate": "2024-04-05T15:14:47.757000+00:00",
1808
+ "RotationType": "ON_DEMAND"
1809
+ }
1810
+ ],
1811
+ "Truncated": false
1812
+ },
1813
+ "comments": {
1814
+ "input": {
1815
+ "KeyID": "The key ID or the Amazon Resource Name (ARN) of the KMS key."
1816
+ },
1817
+ "output": {
1818
+ "Rotations": "A list of key rotations.",
1819
+ "Truncated": "A flag that indicates whether there are more items in the list. When the value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in this response to the Marker parameter in a subsequent request."
1820
+ }
1821
+ },
1822
+ "description": "The following example returns information about all completed key material rotations for the specified KMS key.",
1823
+ "id": "to-retrieve-information-about-all-completed-key-material-rotations-1712585167775",
1824
+ "title": "To retrieve information about all completed key material rotations"
1825
+ }
1826
+ ],
1783
1827
  "ListKeys": [
1784
1828
  {
1785
1829
  "output": {
@@ -2037,6 +2081,27 @@
2037
2081
  "title": "To revoke a grant"
2038
2082
  }
2039
2083
  ],
2084
+ "RotateKeyOnDemand": [
2085
+ {
2086
+ "input": {
2087
+ "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab"
2088
+ },
2089
+ "output": {
2090
+ "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab"
2091
+ },
2092
+ "comments": {
2093
+ "input": {
2094
+ "KeyId": "The identifier of the KMS key whose key material you want to initiate on-demand rotation on. You can use the key ID or the Amazon Resource Name (ARN) of the KMS key."
2095
+ },
2096
+ "output": {
2097
+ "KeyId": "The KMS key that you initiated on-demand rotation on."
2098
+ }
2099
+ },
2100
+ "description": "The following example immediately initiates rotation of the key material for the specified KMS key.",
2101
+ "id": "to-perform-on-demand-rotation-of-key-material-1712499025700",
2102
+ "title": "To perform on-demand rotation of key material"
2103
+ }
2104
+ ],
2040
2105
  "ScheduleKeyDeletion": [
2041
2106
  {
2042
2107
  "input": {
@@ -365,7 +365,10 @@
365
365
  "KeyId"
366
366
  ],
367
367
  "members": {
368
- "KeyId": {}
368
+ "KeyId": {},
369
+ "RotationPeriodInDays": {
370
+ "type": "integer"
371
+ }
369
372
  }
370
373
  }
371
374
  },
@@ -650,6 +653,16 @@
650
653
  "members": {
651
654
  "KeyRotationEnabled": {
652
655
  "type": "boolean"
656
+ },
657
+ "KeyId": {},
658
+ "RotationPeriodInDays": {
659
+ "type": "integer"
660
+ },
661
+ "NextRotationDate": {
662
+ "type": "timestamp"
663
+ },
664
+ "OnDemandRotationStartDate": {
665
+ "type": "timestamp"
653
666
  }
654
667
  }
655
668
  }
@@ -802,7 +815,7 @@
802
815
  }
803
816
  },
804
817
  "output": {
805
- "shape": "S3r"
818
+ "shape": "S3s"
806
819
  }
807
820
  },
808
821
  "ListKeyPolicies": {
@@ -833,6 +846,43 @@
833
846
  }
834
847
  }
835
848
  },
849
+ "ListKeyRotations": {
850
+ "input": {
851
+ "type": "structure",
852
+ "required": [
853
+ "KeyId"
854
+ ],
855
+ "members": {
856
+ "KeyId": {},
857
+ "Limit": {
858
+ "type": "integer"
859
+ },
860
+ "Marker": {}
861
+ }
862
+ },
863
+ "output": {
864
+ "type": "structure",
865
+ "members": {
866
+ "Rotations": {
867
+ "type": "list",
868
+ "member": {
869
+ "type": "structure",
870
+ "members": {
871
+ "KeyId": {},
872
+ "RotationDate": {
873
+ "type": "timestamp"
874
+ },
875
+ "RotationType": {}
876
+ }
877
+ }
878
+ },
879
+ "NextMarker": {},
880
+ "Truncated": {
881
+ "type": "boolean"
882
+ }
883
+ }
884
+ }
885
+ },
836
886
  "ListKeys": {
837
887
  "input": {
838
888
  "type": "structure",
@@ -905,7 +955,7 @@
905
955
  }
906
956
  },
907
957
  "output": {
908
- "shape": "S3r"
958
+ "shape": "S3s"
909
959
  }
910
960
  },
911
961
  "PutKeyPolicy": {
@@ -1029,6 +1079,23 @@
1029
1079
  }
1030
1080
  }
1031
1081
  },
1082
+ "RotateKeyOnDemand": {
1083
+ "input": {
1084
+ "type": "structure",
1085
+ "required": [
1086
+ "KeyId"
1087
+ ],
1088
+ "members": {
1089
+ "KeyId": {}
1090
+ }
1091
+ },
1092
+ "output": {
1093
+ "type": "structure",
1094
+ "members": {
1095
+ "KeyId": {}
1096
+ }
1097
+ }
1098
+ },
1032
1099
  "ScheduleKeyDeletion": {
1033
1100
  "input": {
1034
1101
  "type": "structure",
@@ -1433,7 +1500,7 @@
1433
1500
  "type": "blob",
1434
1501
  "sensitive": true
1435
1502
  },
1436
- "S3r": {
1503
+ "S3s": {
1437
1504
  "type": "structure",
1438
1505
  "members": {
1439
1506
  "Grants": {
@@ -3,42 +3,56 @@
3
3
  "DescribeCustomKeyStores": {
4
4
  "input_token": "Marker",
5
5
  "limit_key": "Limit",
6
+ "more_results": "Truncated",
6
7
  "output_token": "NextMarker",
7
8
  "result_key": "CustomKeyStores"
8
9
  },
9
10
  "ListAliases": {
10
11
  "input_token": "Marker",
11
12
  "limit_key": "Limit",
13
+ "more_results": "Truncated",
12
14
  "output_token": "NextMarker",
13
15
  "result_key": "Aliases"
14
16
  },
15
17
  "ListGrants": {
16
18
  "input_token": "Marker",
17
19
  "limit_key": "Limit",
20
+ "more_results": "Truncated",
18
21
  "output_token": "NextMarker",
19
22
  "result_key": "Grants"
20
23
  },
21
24
  "ListKeyPolicies": {
22
25
  "input_token": "Marker",
23
26
  "limit_key": "Limit",
27
+ "more_results": "Truncated",
24
28
  "output_token": "NextMarker",
25
29
  "result_key": "PolicyNames"
26
30
  },
31
+ "ListKeyRotations": {
32
+ "input_token": "Marker",
33
+ "limit_key": "Limit",
34
+ "more_results": "Truncated",
35
+ "output_token": "NextMarker",
36
+ "result_key": "Rotations"
37
+ },
27
38
  "ListKeys": {
28
39
  "input_token": "Marker",
29
40
  "limit_key": "Limit",
41
+ "more_results": "Truncated",
30
42
  "output_token": "NextMarker",
31
43
  "result_key": "Keys"
32
44
  },
33
45
  "ListResourceTags": {
34
46
  "input_token": "Marker",
35
47
  "limit_key": "Limit",
48
+ "more_results": "Truncated",
36
49
  "output_token": "NextMarker",
37
50
  "result_key": "Tags"
38
51
  },
39
52
  "ListRetirableGrants": {
40
53
  "input_token": "Marker",
41
54
  "limit_key": "Limit",
55
+ "more_results": "Truncated",
42
56
  "output_token": "NextMarker",
43
57
  "result_key": "Grants"
44
58
  }