cdk-docker-image-deployment 0.0.185 → 0.0.186
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/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +11 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +2 -1
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +114 -105
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +84 -35
- package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +33 -0
- package/node_modules/aws-sdk/apis/mediapackage-vod-2018-11-07.min.json +24 -0
- package/node_modules/aws-sdk/apis/route53resolver-2018-04-01.min.json +98 -80
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +193 -185
- package/node_modules/aws-sdk/clients/athena.d.ts +7 -3
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +25 -11
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +50 -0
- package/node_modules/aws-sdk/clients/mediapackage.d.ts +47 -3
- package/node_modules/aws-sdk/clients/mediapackagevod.d.ts +33 -1
- package/node_modules/aws-sdk/clients/route53resolver.d.ts +71 -26
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +20 -2
- 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 +119 -109
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +69 -69
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +25 -11
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -256,7 +256,7 @@ export namespace DocumentClient {
|
|
|
256
256
|
/**
|
|
257
257
|
* The target value for the metric. The range is 8.515920e-109 to 1.174271e+108 (Base 10) or 2e-360 to 2e360 (Base 2).
|
|
258
258
|
*/
|
|
259
|
-
TargetValue:
|
|
259
|
+
TargetValue: DoubleObject;
|
|
260
260
|
}
|
|
261
261
|
export interface AutoScalingTargetTrackingScalingPolicyConfigurationUpdate {
|
|
262
262
|
/**
|
|
@@ -274,7 +274,7 @@ export namespace DocumentClient {
|
|
|
274
274
|
/**
|
|
275
275
|
* The target value for the metric. The range is 8.515920e-109 to 1.174271e+108 (Base 10) or 2e-360 to 2e360 (Base 2).
|
|
276
276
|
*/
|
|
277
|
-
TargetValue:
|
|
277
|
+
TargetValue: DoubleObject;
|
|
278
278
|
}
|
|
279
279
|
export type Backfilling = boolean;
|
|
280
280
|
export type BackupArn = string;
|
|
@@ -735,6 +735,10 @@ export namespace DocumentClient {
|
|
|
735
735
|
* The table class of the new table. Valid values are STANDARD and STANDARD_INFREQUENT_ACCESS.
|
|
736
736
|
*/
|
|
737
737
|
TableClass?: TableClass;
|
|
738
|
+
/**
|
|
739
|
+
* Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table.
|
|
740
|
+
*/
|
|
741
|
+
DeletionProtectionEnabled?: DeletionProtectionEnabled;
|
|
738
742
|
}
|
|
739
743
|
export interface CreateTableOutput {
|
|
740
744
|
/**
|
|
@@ -883,6 +887,7 @@ export namespace DocumentClient {
|
|
|
883
887
|
*/
|
|
884
888
|
TableDescription?: TableDescription;
|
|
885
889
|
}
|
|
890
|
+
export type DeletionProtectionEnabled = boolean;
|
|
886
891
|
export interface DescribeBackupInput {
|
|
887
892
|
/**
|
|
888
893
|
* The Amazon Resource Name (ARN) associated with the backup.
|
|
@@ -1076,7 +1081,7 @@ export namespace DocumentClient {
|
|
|
1076
1081
|
TimeToLiveDescription?: TimeToLiveDescription;
|
|
1077
1082
|
}
|
|
1078
1083
|
export type DestinationStatus = "ENABLING"|"ACTIVE"|"DISABLING"|"DISABLED"|"ENABLE_FAILED"|string;
|
|
1079
|
-
export type
|
|
1084
|
+
export type DoubleObject = number;
|
|
1080
1085
|
export interface Endpoint {
|
|
1081
1086
|
/**
|
|
1082
1087
|
* IP address of the endpoint.
|
|
@@ -1439,11 +1444,11 @@ export namespace DocumentClient {
|
|
|
1439
1444
|
/**
|
|
1440
1445
|
* The total size of the specified index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
1441
1446
|
*/
|
|
1442
|
-
IndexSizeBytes?:
|
|
1447
|
+
IndexSizeBytes?: LongObject;
|
|
1443
1448
|
/**
|
|
1444
1449
|
* The number of items in the specified index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
1445
1450
|
*/
|
|
1446
|
-
ItemCount?:
|
|
1451
|
+
ItemCount?: LongObject;
|
|
1447
1452
|
/**
|
|
1448
1453
|
* The Amazon Resource Name (ARN) that uniquely identifies the index.
|
|
1449
1454
|
*/
|
|
@@ -1635,7 +1640,7 @@ export namespace DocumentClient {
|
|
|
1635
1640
|
/**
|
|
1636
1641
|
* The total size of data processed from the source file, in Bytes.
|
|
1637
1642
|
*/
|
|
1638
|
-
ProcessedSizeBytes?:
|
|
1643
|
+
ProcessedSizeBytes?: LongObject;
|
|
1639
1644
|
/**
|
|
1640
1645
|
* The total number of items processed from the source file.
|
|
1641
1646
|
*/
|
|
@@ -2010,11 +2015,11 @@ export namespace DocumentClient {
|
|
|
2010
2015
|
/**
|
|
2011
2016
|
* The total size of the specified index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
2012
2017
|
*/
|
|
2013
|
-
IndexSizeBytes?:
|
|
2018
|
+
IndexSizeBytes?: LongObject;
|
|
2014
2019
|
/**
|
|
2015
2020
|
* The number of items in the specified index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
2016
2021
|
*/
|
|
2017
|
-
ItemCount?:
|
|
2022
|
+
ItemCount?: LongObject;
|
|
2018
2023
|
/**
|
|
2019
2024
|
* The Amazon Resource Name (ARN) that uniquely identifies the index.
|
|
2020
2025
|
*/
|
|
@@ -2038,6 +2043,7 @@ export namespace DocumentClient {
|
|
|
2038
2043
|
export type LocalSecondaryIndexList = LocalSecondaryIndex[];
|
|
2039
2044
|
export type LocalSecondaryIndexes = LocalSecondaryIndexInfo[];
|
|
2040
2045
|
export type Long = number;
|
|
2046
|
+
export type LongObject = number;
|
|
2041
2047
|
export type MapAttributeValue = {[key: string]: AttributeValue};
|
|
2042
2048
|
export type NextTokenString = string;
|
|
2043
2049
|
export type NonKeyAttributeName = string;
|
|
@@ -2825,7 +2831,7 @@ export namespace DocumentClient {
|
|
|
2825
2831
|
/**
|
|
2826
2832
|
* Size of the table in bytes. Note that this is an approximate value.
|
|
2827
2833
|
*/
|
|
2828
|
-
TableSizeBytes?:
|
|
2834
|
+
TableSizeBytes?: LongObject;
|
|
2829
2835
|
/**
|
|
2830
2836
|
* Schema of the table.
|
|
2831
2837
|
*/
|
|
@@ -2964,11 +2970,11 @@ export namespace DocumentClient {
|
|
|
2964
2970
|
/**
|
|
2965
2971
|
* The total size of the specified table, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
2966
2972
|
*/
|
|
2967
|
-
TableSizeBytes?:
|
|
2973
|
+
TableSizeBytes?: LongObject;
|
|
2968
2974
|
/**
|
|
2969
2975
|
* The number of items in the specified table. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
2970
2976
|
*/
|
|
2971
|
-
ItemCount?:
|
|
2977
|
+
ItemCount?: LongObject;
|
|
2972
2978
|
/**
|
|
2973
2979
|
* The Amazon Resource Name (ARN) that uniquely identifies the table.
|
|
2974
2980
|
*/
|
|
@@ -3025,6 +3031,10 @@ export namespace DocumentClient {
|
|
|
3025
3031
|
* Contains details of the table class.
|
|
3026
3032
|
*/
|
|
3027
3033
|
TableClassSummary?: TableClassSummary;
|
|
3034
|
+
/**
|
|
3035
|
+
* Indicates whether deletion protection is enabled (true) or disabled (false) on the table.
|
|
3036
|
+
*/
|
|
3037
|
+
DeletionProtectionEnabled?: DeletionProtectionEnabled;
|
|
3028
3038
|
}
|
|
3029
3039
|
export type TableId = string;
|
|
3030
3040
|
export type TableName = string;
|
|
@@ -3417,6 +3427,10 @@ export namespace DocumentClient {
|
|
|
3417
3427
|
* The table class of the table to be updated. Valid values are STANDARD and STANDARD_INFREQUENT_ACCESS.
|
|
3418
3428
|
*/
|
|
3419
3429
|
TableClass?: TableClass;
|
|
3430
|
+
/**
|
|
3431
|
+
* Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table.
|
|
3432
|
+
*/
|
|
3433
|
+
DeletionProtectionEnabled?: DeletionProtectionEnabled;
|
|
3420
3434
|
}
|
|
3421
3435
|
export interface UpdateTableOutput {
|
|
3422
3436
|
/**
|
package/package.json
CHANGED
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"jest-junit": "^13",
|
|
54
54
|
"jsii": "^1.77.0",
|
|
55
55
|
"jsii-diff": "^1.77.0",
|
|
56
|
-
"jsii-docgen": "^7.1.
|
|
56
|
+
"jsii-docgen": "^7.1.19",
|
|
57
57
|
"jsii-pacmak": "^1.77.0",
|
|
58
58
|
"npm-check-updates": "^16",
|
|
59
|
-
"projen": "^0.67.
|
|
59
|
+
"projen": "^0.67.78",
|
|
60
60
|
"standard-version": "^9",
|
|
61
61
|
"ts-jest": "^27",
|
|
62
62
|
"typescript": "^4.9.5"
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@types/aws-lambda": "^8.10.111",
|
|
70
|
-
"aws-sdk": "^2.
|
|
70
|
+
"aws-sdk": "^2.1331.0"
|
|
71
71
|
},
|
|
72
72
|
"bundledDependencies": [
|
|
73
73
|
"@types/aws-lambda",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"main": "lib/index.js",
|
|
80
80
|
"license": "Apache-2.0",
|
|
81
81
|
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
|
|
82
|
-
"version": "0.0.
|
|
82
|
+
"version": "0.0.186",
|
|
83
83
|
"jest": {
|
|
84
84
|
"testMatch": [
|
|
85
85
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|