cdk-docker-image-deployment 0.0.150 → 0.0.151
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 +30 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +104 -86
- package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +3 -0
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +204 -55
- package/node_modules/aws-sdk/apis/cloudtrail-data-2021-08-11.examples.json +5 -0
- package/node_modules/aws-sdk/apis/cloudtrail-data-2021-08-11.min.json +94 -0
- package/node_modules/aws-sdk/apis/cloudtrail-data-2021-08-11.paginators.json +4 -0
- package/node_modules/aws-sdk/apis/codeartifact-2018-09-22.min.json +73 -21
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1477 -1297
- package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +312 -41
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +4 -1
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +192 -176
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +630 -585
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +173 -157
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/appsync.d.ts +20 -2
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +1 -0
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +234 -40
- package/node_modules/aws-sdk/clients/cloudtraildata.d.ts +111 -0
- package/node_modules/aws-sdk/clients/cloudtraildata.js +18 -0
- package/node_modules/aws-sdk/clients/codeartifact.d.ts +43 -6
- package/node_modules/aws-sdk/clients/ec2.d.ts +212 -15
- package/node_modules/aws-sdk/clients/groundstation.d.ts +284 -0
- package/node_modules/aws-sdk/clients/iot.d.ts +4 -0
- package/node_modules/aws-sdk/clients/opensearch.d.ts +31 -0
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +57 -1
- package/node_modules/aws-sdk/clients/securityhub.d.ts +26 -3
- 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 +51 -14
- package/node_modules/aws-sdk/dist/aws-sdk.js +1695 -1356
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +94 -94
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -6
|
@@ -337,3 +337,4 @@ export import KinesisVideoWebRTCStorage = require('./kinesisvideowebrtcstorage')
|
|
|
337
337
|
export import LicenseManagerLinuxSubscriptions = require('./licensemanagerlinuxsubscriptions');
|
|
338
338
|
export import KendraRanking = require('./kendraranking');
|
|
339
339
|
export import CleanRooms = require('./cleanrooms');
|
|
340
|
+
export import CloudTrailData = require('./cloudtraildata');
|
|
@@ -338,5 +338,6 @@ module.exports = {
|
|
|
338
338
|
KinesisVideoWebRTCStorage: require('./kinesisvideowebrtcstorage'),
|
|
339
339
|
LicenseManagerLinuxSubscriptions: require('./licensemanagerlinuxsubscriptions'),
|
|
340
340
|
KendraRanking: require('./kendraranking'),
|
|
341
|
-
CleanRooms: require('./cleanrooms')
|
|
341
|
+
CleanRooms: require('./cleanrooms'),
|
|
342
|
+
CloudTrailData: require('./cloudtraildata')
|
|
342
343
|
};
|
|
@@ -717,6 +717,10 @@ declare namespace AppSync {
|
|
|
717
717
|
* Relational database settings.
|
|
718
718
|
*/
|
|
719
719
|
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
|
|
720
|
+
/**
|
|
721
|
+
* Amazon EventBridge settings.
|
|
722
|
+
*/
|
|
723
|
+
eventBridgeConfig?: EventBridgeDataSourceConfig;
|
|
720
724
|
}
|
|
721
725
|
export interface CreateDataSourceResponse {
|
|
722
726
|
/**
|
|
@@ -925,7 +929,7 @@ declare namespace AppSync {
|
|
|
925
929
|
*/
|
|
926
930
|
description?: String;
|
|
927
931
|
/**
|
|
928
|
-
* The type of the data source. AWS_LAMBDA: The data source is an Lambda function. AMAZON_DYNAMODB: The data source is an Amazon DynamoDB table. AMAZON_ELASTICSEARCH: The data source is an Amazon OpenSearch Service domain. AMAZON_OPENSEARCH_SERVICE: The data source is an Amazon OpenSearch Service domain. NONE: There is no data source. Use this type when you want to invoke a GraphQL operation without connecting to a data source, such as when you're performing data transformation with resolvers or invoking a subscription from a mutation. HTTP: The data source is an HTTP endpoint. RELATIONAL_DATABASE: The data source is a relational database.
|
|
932
|
+
* The type of the data source. AWS_LAMBDA: The data source is an Lambda function. AMAZON_DYNAMODB: The data source is an Amazon DynamoDB table. AMAZON_ELASTICSEARCH: The data source is an Amazon OpenSearch Service domain. AMAZON_OPENSEARCH_SERVICE: The data source is an Amazon OpenSearch Service domain. AMAZON_EVENTBRIDGE: The data source is an Amazon EventBridge configuration. NONE: There is no data source. Use this type when you want to invoke a GraphQL operation without connecting to a data source, such as when you're performing data transformation with resolvers or invoking a subscription from a mutation. HTTP: The data source is an HTTP endpoint. RELATIONAL_DATABASE: The data source is a relational database.
|
|
929
933
|
*/
|
|
930
934
|
type?: DataSourceType;
|
|
931
935
|
/**
|
|
@@ -956,8 +960,12 @@ declare namespace AppSync {
|
|
|
956
960
|
* Relational database settings.
|
|
957
961
|
*/
|
|
958
962
|
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
|
|
963
|
+
/**
|
|
964
|
+
* Amazon EventBridge settings.
|
|
965
|
+
*/
|
|
966
|
+
eventBridgeConfig?: EventBridgeDataSourceConfig;
|
|
959
967
|
}
|
|
960
|
-
export type DataSourceType = "AWS_LAMBDA"|"AMAZON_DYNAMODB"|"AMAZON_ELASTICSEARCH"|"NONE"|"HTTP"|"RELATIONAL_DATABASE"|"AMAZON_OPENSEARCH_SERVICE"|string;
|
|
968
|
+
export type DataSourceType = "AWS_LAMBDA"|"AMAZON_DYNAMODB"|"AMAZON_ELASTICSEARCH"|"NONE"|"HTTP"|"RELATIONAL_DATABASE"|"AMAZON_OPENSEARCH_SERVICE"|"AMAZON_EVENTBRIDGE"|string;
|
|
961
969
|
export type DataSources = DataSource[];
|
|
962
970
|
export type DefaultAction = "ALLOW"|"DENY"|string;
|
|
963
971
|
export interface DeleteApiCacheRequest {
|
|
@@ -1201,6 +1209,12 @@ declare namespace AppSync {
|
|
|
1201
1209
|
logs?: Logs;
|
|
1202
1210
|
}
|
|
1203
1211
|
export type EvaluationResult = string;
|
|
1212
|
+
export interface EventBridgeDataSourceConfig {
|
|
1213
|
+
/**
|
|
1214
|
+
* The ARN of the event bus. For more information about event buses, see Amazon EventBridge event buses.
|
|
1215
|
+
*/
|
|
1216
|
+
eventBusArn: String;
|
|
1217
|
+
}
|
|
1204
1218
|
export type FieldLogLevel = "NONE"|"ERROR"|"ALL"|string;
|
|
1205
1219
|
export interface FlushApiCacheRequest {
|
|
1206
1220
|
/**
|
|
@@ -2035,6 +2049,10 @@ declare namespace AppSync {
|
|
|
2035
2049
|
* The new relational database configuration.
|
|
2036
2050
|
*/
|
|
2037
2051
|
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
|
|
2052
|
+
/**
|
|
2053
|
+
* The new Amazon EventBridge settings.
|
|
2054
|
+
*/
|
|
2055
|
+
eventBridgeConfig?: EventBridgeDataSourceConfig;
|
|
2038
2056
|
}
|
|
2039
2057
|
export interface UpdateDataSourceResponse {
|
|
2040
2058
|
/**
|
|
@@ -3591,6 +3591,7 @@ declare namespace CloudFormation {
|
|
|
3591
3591
|
* Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.
|
|
3592
3592
|
*/
|
|
3593
3593
|
ManagedExecution?: ManagedExecution;
|
|
3594
|
+
Regions?: RegionList;
|
|
3594
3595
|
}
|
|
3595
3596
|
export type StackSetARN = string;
|
|
3596
3597
|
export interface StackSetDriftDetectionDetails {
|