cdk-docker-image-deployment 0.0.89 → 0.0.90
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/accessanalyzer-2019-11-01.min.json +2 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +762 -46
- package/node_modules/aws-sdk/apis/athena-2017-05-18.paginators.json +20 -0
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +230 -14
- package/node_modules/aws-sdk/apis/docdb-elastic-2022-11-28.examples.json +5 -0
- package/node_modules/aws-sdk/apis/docdb-elastic-2022-11-28.min.json +586 -0
- package/node_modules/aws-sdk/apis/docdb-elastic-2022-11-28.paginators.json +16 -0
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +1169 -483
- package/node_modules/aws-sdk/apis/glue-2017-03-31.paginators.json +20 -0
- package/node_modules/aws-sdk/apis/metadata.json +8 -0
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +6 -3
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +2666 -931
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +42 -0
- package/node_modules/aws-sdk/apis/sagemaker-geospatial-2020-05-27.examples.json +5 -0
- package/node_modules/aws-sdk/apis/sagemaker-geospatial-2020-05-27.min.json +1516 -0
- package/node_modules/aws-sdk/apis/sagemaker-geospatial-2020-05-27.paginators.json +26 -0
- package/node_modules/aws-sdk/clients/accessanalyzer.d.ts +5 -1
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +3 -1
- package/node_modules/aws-sdk/clients/athena.d.ts +1043 -42
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +269 -26
- package/node_modules/aws-sdk/clients/docdbelastic.d.ts +565 -0
- package/node_modules/aws-sdk/clients/docdbelastic.js +18 -0
- package/node_modules/aws-sdk/clients/glue.d.ts +1026 -83
- package/node_modules/aws-sdk/clients/s3control.d.ts +18 -6
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +2434 -98
- package/node_modules/aws-sdk/clients/sagemakergeospatial.d.ts +1610 -0
- package/node_modules/aws-sdk/clients/sagemakergeospatial.js +18 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +87 -13
- package/node_modules/aws-sdk/dist/aws-sdk.js +765 -21
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +96 -96
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
|
@@ -122,6 +122,26 @@
|
|
|
122
122
|
"limit_key": "MaxResults",
|
|
123
123
|
"output_token": "NextToken"
|
|
124
124
|
},
|
|
125
|
+
"ListDataQualityResults": {
|
|
126
|
+
"input_token": "NextToken",
|
|
127
|
+
"limit_key": "MaxResults",
|
|
128
|
+
"output_token": "NextToken"
|
|
129
|
+
},
|
|
130
|
+
"ListDataQualityRuleRecommendationRuns": {
|
|
131
|
+
"input_token": "NextToken",
|
|
132
|
+
"limit_key": "MaxResults",
|
|
133
|
+
"output_token": "NextToken"
|
|
134
|
+
},
|
|
135
|
+
"ListDataQualityRulesetEvaluationRuns": {
|
|
136
|
+
"input_token": "NextToken",
|
|
137
|
+
"limit_key": "MaxResults",
|
|
138
|
+
"output_token": "NextToken"
|
|
139
|
+
},
|
|
140
|
+
"ListDataQualityRulesets": {
|
|
141
|
+
"input_token": "NextToken",
|
|
142
|
+
"limit_key": "MaxResults",
|
|
143
|
+
"output_token": "NextToken"
|
|
144
|
+
},
|
|
125
145
|
"ListDevEndpoints": {
|
|
126
146
|
"input_token": "NextToken",
|
|
127
147
|
"limit_key": "MaxResults",
|
|
@@ -1241,5 +1241,13 @@
|
|
|
1241
1241
|
},
|
|
1242
1242
|
"simspaceweaver": {
|
|
1243
1243
|
"name": "SimSpaceWeaver"
|
|
1244
|
+
},
|
|
1245
|
+
"docdbelastic": {
|
|
1246
|
+
"prefix": "docdb-elastic",
|
|
1247
|
+
"name": "DocDBElastic"
|
|
1248
|
+
},
|
|
1249
|
+
"sagemakergeospatial": {
|
|
1250
|
+
"prefix": "sagemaker-geospatial",
|
|
1251
|
+
"name": "SageMakerGeospatial"
|
|
1244
1252
|
}
|
|
1245
1253
|
}
|
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
},
|
|
51
51
|
"PublicAccessBlockConfiguration": {
|
|
52
52
|
"shape": "S7"
|
|
53
|
-
}
|
|
53
|
+
},
|
|
54
|
+
"BucketAccountId": {}
|
|
54
55
|
}
|
|
55
56
|
},
|
|
56
57
|
"output": {
|
|
@@ -1052,7 +1053,8 @@
|
|
|
1052
1053
|
"type": "map",
|
|
1053
1054
|
"key": {},
|
|
1054
1055
|
"value": {}
|
|
1055
|
-
}
|
|
1056
|
+
},
|
|
1057
|
+
"BucketAccountId": {}
|
|
1056
1058
|
}
|
|
1057
1059
|
},
|
|
1058
1060
|
"endpoint": {
|
|
@@ -1971,7 +1973,8 @@
|
|
|
1971
1973
|
},
|
|
1972
1974
|
"Bucket": {},
|
|
1973
1975
|
"AccessPointArn": {},
|
|
1974
|
-
"Alias": {}
|
|
1976
|
+
"Alias": {},
|
|
1977
|
+
"BucketAccountId": {}
|
|
1975
1978
|
}
|
|
1976
1979
|
}
|
|
1977
1980
|
},
|