cdk-lambda-subminute 2.0.429 → 2.0.431
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.
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +54 -45
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +2 -0
- package/node_modules/aws-sdk/apis/healthlake-2017-07-01.min.json +21 -14
- package/node_modules/aws-sdk/apis/kms-2014-11-01.examples.json +73 -8
- package/node_modules/aws-sdk/apis/kms-2014-11-01.min.json +71 -4
- package/node_modules/aws-sdk/apis/kms-2014-11-01.paginators.json +14 -0
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +21 -17
- package/node_modules/aws-sdk/apis/redshift-2012-12-01.min.json +2 -1
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +36 -1
- package/node_modules/aws-sdk/clients/configservice.d.ts +4 -4
- package/node_modules/aws-sdk/clients/glue.d.ts +13 -5
- package/node_modules/aws-sdk/clients/healthlake.d.ts +17 -1
- package/node_modules/aws-sdk/clients/iotfleethub.d.ts +19 -19
- package/node_modules/aws-sdk/clients/kms.d.ts +105 -12
- package/node_modules/aws-sdk/clients/mediatailor.d.ts +17 -0
- package/node_modules/aws-sdk/clients/outposts.d.ts +1 -1
- package/node_modules/aws-sdk/clients/redshift.d.ts +4 -0
- package/node_modules/aws-sdk/clients/transfer.d.ts +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +144 -53
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +65 -65
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -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
|
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
|
1075
|
-
"id": "to-enable-automatic-rotation-of-key-material-
|
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
|
-
"
|
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
|
-
"
|
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
|
1429
|
-
"id": "to-retrieve-the-rotation-status-for-a-
|
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": "
|
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": "
|
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
|
-
"
|
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
|
}
|
@@ -1085,14 +1085,15 @@
|
|
1085
1085
|
"HlsConfiguration": {
|
1086
1086
|
"shape": "S3e"
|
1087
1087
|
},
|
1088
|
+
"InsertionMode": {},
|
1088
1089
|
"LivePreRollConfiguration": {
|
1089
|
-
"shape": "
|
1090
|
+
"shape": "S3g"
|
1090
1091
|
},
|
1091
1092
|
"LogConfiguration": {
|
1092
|
-
"shape": "
|
1093
|
+
"shape": "S3h"
|
1093
1094
|
},
|
1094
1095
|
"ManifestProcessingRules": {
|
1095
|
-
"shape": "
|
1096
|
+
"shape": "S3i"
|
1096
1097
|
},
|
1097
1098
|
"Name": {},
|
1098
1099
|
"PersonalizationThresholdSeconds": {
|
@@ -1199,7 +1200,7 @@
|
|
1199
1200
|
"shape": "Sp"
|
1200
1201
|
},
|
1201
1202
|
"RelatedResourceArns": {
|
1202
|
-
"shape": "
|
1203
|
+
"shape": "S3t"
|
1203
1204
|
},
|
1204
1205
|
"ResourceArn": {}
|
1205
1206
|
}
|
@@ -1391,14 +1392,15 @@
|
|
1391
1392
|
"HlsConfiguration": {
|
1392
1393
|
"shape": "S3e"
|
1393
1394
|
},
|
1395
|
+
"InsertionMode": {},
|
1394
1396
|
"LivePreRollConfiguration": {
|
1395
|
-
"shape": "
|
1397
|
+
"shape": "S3g"
|
1396
1398
|
},
|
1397
1399
|
"LogConfiguration": {
|
1398
|
-
"shape": "
|
1400
|
+
"shape": "S3h"
|
1399
1401
|
},
|
1400
1402
|
"ManifestProcessingRules": {
|
1401
|
-
"shape": "
|
1403
|
+
"shape": "S3i"
|
1402
1404
|
},
|
1403
1405
|
"Name": {},
|
1404
1406
|
"PersonalizationThresholdSeconds": {
|
@@ -1693,11 +1695,12 @@
|
|
1693
1695
|
"OriginManifestType": {}
|
1694
1696
|
}
|
1695
1697
|
},
|
1698
|
+
"InsertionMode": {},
|
1696
1699
|
"LivePreRollConfiguration": {
|
1697
|
-
"shape": "
|
1700
|
+
"shape": "S3g"
|
1698
1701
|
},
|
1699
1702
|
"ManifestProcessingRules": {
|
1700
|
-
"shape": "
|
1703
|
+
"shape": "S3i"
|
1701
1704
|
},
|
1702
1705
|
"Name": {},
|
1703
1706
|
"PersonalizationThresholdSeconds": {
|
@@ -1734,14 +1737,15 @@
|
|
1734
1737
|
"HlsConfiguration": {
|
1735
1738
|
"shape": "S3e"
|
1736
1739
|
},
|
1740
|
+
"InsertionMode": {},
|
1737
1741
|
"LivePreRollConfiguration": {
|
1738
|
-
"shape": "
|
1742
|
+
"shape": "S3g"
|
1739
1743
|
},
|
1740
1744
|
"LogConfiguration": {
|
1741
|
-
"shape": "
|
1745
|
+
"shape": "S3h"
|
1742
1746
|
},
|
1743
1747
|
"ManifestProcessingRules": {
|
1744
|
-
"shape": "
|
1748
|
+
"shape": "S3i"
|
1745
1749
|
},
|
1746
1750
|
"Name": {},
|
1747
1751
|
"PersonalizationThresholdSeconds": {
|
@@ -1850,7 +1854,7 @@
|
|
1850
1854
|
"locationName": "ResourceArn"
|
1851
1855
|
},
|
1852
1856
|
"TagKeys": {
|
1853
|
-
"shape": "
|
1857
|
+
"shape": "S3t",
|
1854
1858
|
"location": "querystring",
|
1855
1859
|
"locationName": "tagKeys"
|
1856
1860
|
}
|
@@ -2551,7 +2555,7 @@
|
|
2551
2555
|
"ManifestEndpointPrefix": {}
|
2552
2556
|
}
|
2553
2557
|
},
|
2554
|
-
"
|
2558
|
+
"S3g": {
|
2555
2559
|
"type": "structure",
|
2556
2560
|
"members": {
|
2557
2561
|
"AdDecisionServerUrl": {},
|
@@ -2560,7 +2564,7 @@
|
|
2560
2564
|
}
|
2561
2565
|
}
|
2562
2566
|
},
|
2563
|
-
"
|
2567
|
+
"S3h": {
|
2564
2568
|
"type": "structure",
|
2565
2569
|
"required": [
|
2566
2570
|
"PercentEnabled"
|
@@ -2571,7 +2575,7 @@
|
|
2571
2575
|
}
|
2572
2576
|
}
|
2573
2577
|
},
|
2574
|
-
"
|
2578
|
+
"S3i": {
|
2575
2579
|
"type": "structure",
|
2576
2580
|
"members": {
|
2577
2581
|
"AdMarkerPassthrough": {
|
@@ -2584,7 +2588,7 @@
|
|
2584
2588
|
}
|
2585
2589
|
}
|
2586
2590
|
},
|
2587
|
-
"
|
2591
|
+
"S3t": {
|
2588
2592
|
"type": "list",
|
2589
2593
|
"member": {}
|
2590
2594
|
}
|
@@ -814,9 +814,12 @@ declare namespace CloudFormation {
|
|
814
814
|
*/
|
815
815
|
Arn?: PrivateTypeArn;
|
816
816
|
}
|
817
|
+
export type AfterContext = string;
|
818
|
+
export type AfterValue = string;
|
817
819
|
export type AllowedValue = string;
|
818
820
|
export type AllowedValues = AllowedValue[];
|
819
821
|
export type Arn = string;
|
822
|
+
export type AttributeChangeType = "Add"|"Remove"|"Modify"|string;
|
820
823
|
export interface AutoDeployment {
|
821
824
|
/**
|
822
825
|
* If set to true, StackSets automatically deploys additional stack instances to Organizations accounts that are added to a target organization or organizational unit (OU) in the specified Regions. If an account is removed from a target organization or OU, StackSets deletes stack instances from the account in the specified Regions.
|
@@ -864,6 +867,8 @@ declare namespace CloudFormation {
|
|
864
867
|
*/
|
865
868
|
TypeConfigurations?: TypeConfigurationDetailsList;
|
866
869
|
}
|
870
|
+
export type BeforeContext = string;
|
871
|
+
export type BeforeValue = string;
|
867
872
|
export type BoxedInteger = number;
|
868
873
|
export type BoxedMaxResults = number;
|
869
874
|
export type CallAs = "SELF"|"DELEGATED_ADMIN"|string;
|
@@ -884,7 +889,7 @@ declare namespace CloudFormation {
|
|
884
889
|
export type CausingEntity = string;
|
885
890
|
export interface Change {
|
886
891
|
/**
|
887
|
-
* The type of entity that CloudFormation changes.
|
892
|
+
* The type of entity that CloudFormation changes. Resource This change is for a resource.
|
888
893
|
*/
|
889
894
|
Type?: ChangeType;
|
890
895
|
/**
|
@@ -1564,6 +1569,10 @@ declare namespace CloudFormation {
|
|
1564
1569
|
* A string (provided by the DescribeChangeSet response output) that identifies the next page of information that you want to retrieve.
|
1565
1570
|
*/
|
1566
1571
|
NextToken?: NextToken;
|
1572
|
+
/**
|
1573
|
+
* If true, the returned changes include detailed changes in the property values.
|
1574
|
+
*/
|
1575
|
+
IncludePropertyValues?: IncludePropertyValues;
|
1567
1576
|
}
|
1568
1577
|
export interface DescribeChangeSetOutput {
|
1569
1578
|
/**
|
@@ -2459,6 +2468,7 @@ declare namespace CloudFormation {
|
|
2459
2468
|
export type InProgressStackInstancesCount = number;
|
2460
2469
|
export type InSyncStackInstancesCount = number;
|
2461
2470
|
export type IncludeNestedStacks = boolean;
|
2471
|
+
export type IncludePropertyValues = boolean;
|
2462
2472
|
export type IsActivated = boolean;
|
2463
2473
|
export type IsDefaultConfiguration = boolean;
|
2464
2474
|
export type IsDefaultVersion = boolean;
|
@@ -3358,6 +3368,14 @@ declare namespace CloudFormation {
|
|
3358
3368
|
* Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.
|
3359
3369
|
*/
|
3360
3370
|
ModuleInfo?: ModuleInfo;
|
3371
|
+
/**
|
3372
|
+
* An encoded JSON string containing the context of the resource before the change is executed.
|
3373
|
+
*/
|
3374
|
+
BeforeContext?: BeforeContext;
|
3375
|
+
/**
|
3376
|
+
* An encoded JSON string containing the context of the resource after the change is executed.
|
3377
|
+
*/
|
3378
|
+
AfterContext?: AfterContext;
|
3361
3379
|
}
|
3362
3380
|
export interface ResourceChangeDetail {
|
3363
3381
|
/**
|
@@ -3442,6 +3460,7 @@ declare namespace CloudFormation {
|
|
3442
3460
|
export type ResourceIdentifiers = ResourceIdentifierPropertyKey[];
|
3443
3461
|
export type ResourceModel = string;
|
3444
3462
|
export type ResourceProperties = string;
|
3463
|
+
export type ResourcePropertyPath = string;
|
3445
3464
|
export type ResourceScanId = string;
|
3446
3465
|
export type ResourceScanStatus = "IN_PROGRESS"|"FAILED"|"COMPLETE"|"EXPIRED"|string;
|
3447
3466
|
export type ResourceScanStatusReason = string;
|
@@ -3490,6 +3509,22 @@ declare namespace CloudFormation {
|
|
3490
3509
|
* If the Attribute value is Properties, indicates whether a change to this property causes the resource to be recreated. The value can be Never, Always, or Conditionally. To determine the conditions for a Conditionally recreation, see the update behavior for that property in the CloudFormation User Guide.
|
3491
3510
|
*/
|
3492
3511
|
RequiresRecreation?: RequiresRecreation;
|
3512
|
+
/**
|
3513
|
+
* The property path of the property.
|
3514
|
+
*/
|
3515
|
+
Path?: ResourcePropertyPath;
|
3516
|
+
/**
|
3517
|
+
* The value of the property before the change is executed. Large values can be truncated.
|
3518
|
+
*/
|
3519
|
+
BeforeValue?: BeforeValue;
|
3520
|
+
/**
|
3521
|
+
* The value of the property after the change is executed. Large values can be truncated.
|
3522
|
+
*/
|
3523
|
+
AfterValue?: AfterValue;
|
3524
|
+
/**
|
3525
|
+
* The type of change to be made to the property if the change is executed. Add The item will be added. Remove The item will be removed. Modify The item will be modified.
|
3526
|
+
*/
|
3527
|
+
AttributeChangeType?: AttributeChangeType;
|
3493
3528
|
}
|
3494
3529
|
export interface ResourceToImport {
|
3495
3530
|
/**
|
@@ -1056,7 +1056,7 @@ declare namespace ConfigService {
|
|
1056
1056
|
*/
|
1057
1057
|
recordingFrequency?: RecordingFrequency;
|
1058
1058
|
/**
|
1059
|
-
* The time when configuration changes for the resource were delivered.
|
1059
|
+
* The time when configuration changes for the resource were delivered. This field is optional and is not guaranteed to be present in a configuration item (CI). If you are using daily recording, this field will be populated. However, if you are using continuous recording, this field will be omitted since the delivery time is instantaneous as the CI is available right away. For more information on daily recording and continuous recording, see Recording Frequency in the Config Developer Guide.
|
1060
1060
|
*/
|
1061
1061
|
configurationItemDeliveryTime?: ConfigurationItemDeliveryTime;
|
1062
1062
|
}
|
@@ -1482,7 +1482,7 @@ declare namespace ConfigService {
|
|
1482
1482
|
*/
|
1483
1483
|
recordingFrequency?: RecordingFrequency;
|
1484
1484
|
/**
|
1485
|
-
* The time when configuration changes for the resource were delivered.
|
1485
|
+
* The time when configuration changes for the resource were delivered. This field is optional and is not guaranteed to be present in a configuration item (CI). If you are using daily recording, this field will be populated. However, if you are using continuous recording, this field will be omitted since the delivery time is instantaneous as the CI is available right away. For more information on daily recording and continuous recording, see Recording Frequency in the Config Developer Guide.
|
1486
1486
|
*/
|
1487
1487
|
configurationItemDeliveryTime?: ConfigurationItemDeliveryTime;
|
1488
1488
|
}
|
@@ -2082,7 +2082,7 @@ declare namespace ConfigService {
|
|
2082
2082
|
*/
|
2083
2083
|
NextToken?: String;
|
2084
2084
|
/**
|
2085
|
-
* The number of rule evaluation results that you want returned. This parameter is required if the rule limit for your account is more than the default of
|
2085
|
+
* The number of rule evaluation results that you want returned. This parameter is required if the rule limit for your account is more than the default of 1000 rules. For information about requesting a rule limit increase, see Config Limits in the Amazon Web Services General Reference Guide.
|
2086
2086
|
*/
|
2087
2087
|
Limit?: RuleLimit;
|
2088
2088
|
}
|
@@ -4355,7 +4355,7 @@ declare namespace ConfigService {
|
|
4355
4355
|
}
|
4356
4356
|
export interface ResourceEvaluationFilters {
|
4357
4357
|
/**
|
4358
|
-
* Filters all resource evaluations results based on an evaluation mode.
|
4358
|
+
* Filters all resource evaluations results based on an evaluation mode. Currently, DECTECTIVE is not supported as a valid value. Ignore other documentation stating otherwise.
|
4359
4359
|
*/
|
4360
4360
|
EvaluationMode?: EvaluationMode;
|
4361
4361
|
/**
|
@@ -1060,11 +1060,11 @@ declare class Glue extends Service {
|
|
1060
1060
|
*/
|
1061
1061
|
getUnfilteredPartitionsMetadata(callback?: (err: AWSError, data: Glue.Types.GetUnfilteredPartitionsMetadataResponse) => void): Request<Glue.Types.GetUnfilteredPartitionsMetadataResponse, AWSError>;
|
1062
1062
|
/**
|
1063
|
-
*
|
1063
|
+
* Allows a third-party analytical engine to retrieve unfiltered table metadata from the Data Catalog. For IAM authorization, the public IAM action associated with this API is glue:GetTable.
|
1064
1064
|
*/
|
1065
1065
|
getUnfilteredTableMetadata(params: Glue.Types.GetUnfilteredTableMetadataRequest, callback?: (err: AWSError, data: Glue.Types.GetUnfilteredTableMetadataResponse) => void): Request<Glue.Types.GetUnfilteredTableMetadataResponse, AWSError>;
|
1066
1066
|
/**
|
1067
|
-
*
|
1067
|
+
* Allows a third-party analytical engine to retrieve unfiltered table metadata from the Data Catalog. For IAM authorization, the public IAM action associated with this API is glue:GetTable.
|
1068
1068
|
*/
|
1069
1069
|
getUnfilteredTableMetadata(callback?: (err: AWSError, data: Glue.Types.GetUnfilteredTableMetadataResponse) => void): Request<Glue.Types.GetUnfilteredTableMetadataResponse, AWSError>;
|
1070
1070
|
/**
|
@@ -8292,9 +8292,17 @@ declare namespace Glue {
|
|
8292
8292
|
*/
|
8293
8293
|
AuditContext?: AuditContext;
|
8294
8294
|
/**
|
8295
|
-
* (
|
8295
|
+
* Indicates the level of filtering a third-party analytical engine is capable of enforcing when calling the GetUnfilteredTableMetadata API operation. Accepted values are: COLUMN_PERMISSION - Column permissions ensure that users can access only specific columns in the table. If there are particular columns contain sensitive data, data lake administrators can define column filters that exclude access to specific columns. CELL_FILTER_PERMISSION - Cell-level filtering combines column filtering (include or exclude columns) and row filter expressions to restrict access to individual elements in the table. NESTED_PERMISSION - Nested permissions combines cell-level filtering and nested column filtering to restrict access to columns and/or nested columns in specific rows based on row filter expressions. NESTED_CELL_PERMISSION - Nested cell permissions combines nested permission with nested cell-level filtering. This allows different subsets of nested columns to be restricted based on an array of row filter expressions. Note: Each of these permission types follows a hierarchical order where each subsequent permission type includes all permission of the previous type. Important: If you provide a supported permission type that doesn't match the user's level of permissions on the table, then Lake Formation raises an exception. For example, if the third-party engine calling the GetUnfilteredTableMetadata operation can enforce only column-level filtering, and the user has nested cell filtering applied on the table, Lake Formation throws an exception, and will not return unfiltered table metadata and data access credentials.
|
8296
8296
|
*/
|
8297
8297
|
SupportedPermissionTypes: PermissionTypeList;
|
8298
|
+
/**
|
8299
|
+
* The resource ARN of the view.
|
8300
|
+
*/
|
8301
|
+
ParentResourceArn?: ArnString;
|
8302
|
+
/**
|
8303
|
+
* The resource ARN of the root view in a chain of nested views.
|
8304
|
+
*/
|
8305
|
+
RootResourceArn?: ArnString;
|
8298
8306
|
/**
|
8299
8307
|
* A structure specifying the dialect and dialect version used by the query engine.
|
8300
8308
|
*/
|
@@ -9334,11 +9342,11 @@ declare namespace Glue {
|
|
9334
9342
|
*/
|
9335
9343
|
StartingPosition?: StartingPosition;
|
9336
9344
|
/**
|
9337
|
-
* The maximum time spent
|
9345
|
+
* The maximum time spent for the job executor to read records for the current batch from the Kinesis data stream, specified in milliseconds (ms). Multiple GetRecords API calls may be made within this time. The default value is 1000.
|
9338
9346
|
*/
|
9339
9347
|
MaxFetchTimeInMs?: BoxedNonNegativeLong;
|
9340
9348
|
/**
|
9341
|
-
* The maximum number of records to fetch per shard in the Kinesis data stream. The default value is 100000.
|
9349
|
+
* The maximum number of records to fetch per shard in the Kinesis data stream per microbatch. Note: The client can exceed this limit if the streaming job has already read extra records from Kinesis (in the same get-records call). If MaxFetchRecordsPerShard needs to be strict then it needs to be a multiple of MaxRecordPerRead. The default value is 100000.
|
9342
9350
|
*/
|
9343
9351
|
MaxFetchRecordsPerShard?: BoxedNonNegativeLong;
|
9344
9352
|
/**
|
@@ -234,9 +234,13 @@ declare namespace HealthLake {
|
|
234
234
|
* The identity provider that you selected when you created the data store.
|
235
235
|
*/
|
236
236
|
IdentityProviderConfiguration?: IdentityProviderConfiguration;
|
237
|
+
/**
|
238
|
+
* The error cause for the current data store operation.
|
239
|
+
*/
|
240
|
+
ErrorCause?: ErrorCause;
|
237
241
|
}
|
238
242
|
export type DatastorePropertiesList = DatastoreProperties[];
|
239
|
-
export type DatastoreStatus = "CREATING"|"ACTIVE"|"DELETING"|"DELETED"|string;
|
243
|
+
export type DatastoreStatus = "CREATING"|"ACTIVE"|"DELETING"|"DELETED"|"CREATE_FAILED"|string;
|
240
244
|
export interface DeleteFHIRDatastoreRequest {
|
241
245
|
/**
|
242
246
|
* The AWS-generated ID for the data store to be deleted.
|
@@ -306,6 +310,18 @@ declare namespace HealthLake {
|
|
306
310
|
ImportJobProperties: ImportJobProperties;
|
307
311
|
}
|
308
312
|
export type EncryptionKeyID = string;
|
313
|
+
export type ErrorCategory = "RETRYABLE_ERROR"|"NON_RETRYABLE_ERROR"|string;
|
314
|
+
export interface ErrorCause {
|
315
|
+
/**
|
316
|
+
* The text of the error message.
|
317
|
+
*/
|
318
|
+
ErrorMessage?: ErrorMessage;
|
319
|
+
/**
|
320
|
+
* The error category of the create/delete data store operation. Possible statuses are RETRYABLE_ERROR or NON_RETRYABLE_ERROR.
|
321
|
+
*/
|
322
|
+
ErrorCategory?: ErrorCategory;
|
323
|
+
}
|
324
|
+
export type ErrorMessage = string;
|
309
325
|
export interface ExportJobProperties {
|
310
326
|
/**
|
311
327
|
* The AWS generated ID for an export job.
|