cdk-lambda-subminute 2.0.269 → 2.0.271
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/CHANGELOG.md +22 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +28 -6
- package/node_modules/aws-sdk/apis/ecs-2014-11-13.examples.json +24 -24
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +721 -79
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.paginators.json +18 -0
- package/node_modules/aws-sdk/apis/globalaccelerator-2018-08-08.paginators.json +2 -1
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +3 -0
- package/node_modules/aws-sdk/apis/kafka-2018-11-14.min.json +571 -38
- package/node_modules/aws-sdk/apis/kafka-2018-11-14.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/managedblockchain-query-2023-05-04.min.json +111 -0
- package/node_modules/aws-sdk/apis/managedblockchain-query-2023-05-04.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +78 -59
- package/node_modules/aws-sdk/apis/redshift-2012-12-01.min.json +205 -184
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.min.json +34 -18
- package/node_modules/aws-sdk/apis/route53-recovery-cluster-2019-12-02.min.json +5 -4
- package/node_modules/aws-sdk/apis/route53-recovery-control-config-2020-11-02.min.json +67 -37
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.min.json +40 -18
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +1 -1
- package/node_modules/aws-sdk/clients/codepipeline.d.ts +4 -4
- package/node_modules/aws-sdk/clients/drs.d.ts +27 -1
- package/node_modules/aws-sdk/clients/ecs.d.ts +3 -3
- package/node_modules/aws-sdk/clients/entityresolution.d.ts +650 -12
- package/node_modules/aws-sdk/clients/guardduty.d.ts +5 -1
- package/node_modules/aws-sdk/clients/kafka.d.ts +467 -0
- package/node_modules/aws-sdk/clients/managedblockchainquery.d.ts +125 -9
- package/node_modules/aws-sdk/clients/mediapackagev2.d.ts +13 -13
- package/node_modules/aws-sdk/clients/opensearch.d.ts +46 -6
- package/node_modules/aws-sdk/clients/redshift.d.ts +47 -7
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +42 -2
- package/node_modules/aws-sdk/clients/route53recoverycluster.d.ts +16 -11
- package/node_modules/aws-sdk/clients/route53recoverycontrolconfig.d.ts +42 -0
- package/node_modules/aws-sdk/clients/sesv2.d.ts +43 -3
- package/node_modules/aws-sdk/clients/transfer.d.ts +8 -8
- package/node_modules/aws-sdk/clients/xray.d.ts +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +45 -13
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +104 -40
- package/node_modules/aws-sdk/dist/aws-sdk.js +208 -187
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +28 -28
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/s3/managed_upload.d.ts +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
@@ -268,11 +268,11 @@ declare class CodePipeline extends Service {
|
|
268
268
|
*/
|
269
269
|
registerWebhookWithThirdParty(callback?: (err: AWSError, data: CodePipeline.Types.RegisterWebhookWithThirdPartyOutput) => void): Request<CodePipeline.Types.RegisterWebhookWithThirdPartyOutput, AWSError>;
|
270
270
|
/**
|
271
|
-
*
|
271
|
+
* You can retry a stage that has failed without having to run a pipeline again from the beginning. You do this by either retrying the failed actions in a stage or by retrying all actions in the stage starting from the first action in the stage. When you retry the failed actions in a stage, all actions that are still in progress continue working, and failed actions are triggered again. When you retry a failed stage from the first action in the stage, the stage cannot have any actions in progress. Before a stage can be retried, it must either have all actions failed or some actions failed and some succeeded.
|
272
272
|
*/
|
273
273
|
retryStageExecution(params: CodePipeline.Types.RetryStageExecutionInput, callback?: (err: AWSError, data: CodePipeline.Types.RetryStageExecutionOutput) => void): Request<CodePipeline.Types.RetryStageExecutionOutput, AWSError>;
|
274
274
|
/**
|
275
|
-
*
|
275
|
+
* You can retry a stage that has failed without having to run a pipeline again from the beginning. You do this by either retrying the failed actions in a stage or by retrying all actions in the stage starting from the first action in the stage. When you retry the failed actions in a stage, all actions that are still in progress continue working, and failed actions are triggered again. When you retry a failed stage from the first action in the stage, the stage cannot have any actions in progress. Before a stage can be retried, it must either have all actions failed or some actions failed and some succeeded.
|
276
276
|
*/
|
277
277
|
retryStageExecution(callback?: (err: AWSError, data: CodePipeline.Types.RetryStageExecutionOutput) => void): Request<CodePipeline.Types.RetryStageExecutionOutput, AWSError>;
|
278
278
|
/**
|
@@ -1966,7 +1966,7 @@ declare namespace CodePipeline {
|
|
1966
1966
|
*/
|
1967
1967
|
pipelineExecutionId: PipelineExecutionId;
|
1968
1968
|
/**
|
1969
|
-
* The scope of the retry attempt.
|
1969
|
+
* The scope of the retry attempt.
|
1970
1970
|
*/
|
1971
1971
|
retryMode: StageRetryMode;
|
1972
1972
|
}
|
@@ -2060,7 +2060,7 @@ declare namespace CodePipeline {
|
|
2060
2060
|
}
|
2061
2061
|
export type StageExecutionStatus = "Cancelled"|"InProgress"|"Failed"|"Stopped"|"Stopping"|"Succeeded"|string;
|
2062
2062
|
export type StageName = string;
|
2063
|
-
export type StageRetryMode = "FAILED_ACTIONS"|string;
|
2063
|
+
export type StageRetryMode = "FAILED_ACTIONS"|"ALL_ACTIONS"|string;
|
2064
2064
|
export interface StageState {
|
2065
2065
|
/**
|
2066
2066
|
* The name of the stage.
|
@@ -511,6 +511,10 @@ declare namespace Drs {
|
|
511
511
|
* Launch disposition.
|
512
512
|
*/
|
513
513
|
launchDisposition?: LaunchDisposition;
|
514
|
+
/**
|
515
|
+
* DRS will set the 'launch into instance ID' of any source server when performing a drill, recovery or failback to the previous region or availability zone, using the instance ID of the source instance.
|
516
|
+
*/
|
517
|
+
launchIntoSourceInstance?: Boolean;
|
514
518
|
/**
|
515
519
|
* Licensing.
|
516
520
|
*/
|
@@ -1338,6 +1342,10 @@ declare namespace Drs {
|
|
1338
1342
|
* The state of the Recovery Instance in EC2 after the recovery operation.
|
1339
1343
|
*/
|
1340
1344
|
launchDisposition?: LaunchDisposition;
|
1345
|
+
/**
|
1346
|
+
* Launch into existing instance properties.
|
1347
|
+
*/
|
1348
|
+
launchIntoInstanceProperties?: LaunchIntoInstanceProperties;
|
1341
1349
|
/**
|
1342
1350
|
* The licensing configuration to be used for this launch configuration.
|
1343
1351
|
*/
|
@@ -1384,6 +1392,10 @@ declare namespace Drs {
|
|
1384
1392
|
* Launch disposition.
|
1385
1393
|
*/
|
1386
1394
|
launchDisposition?: LaunchDisposition;
|
1395
|
+
/**
|
1396
|
+
* DRS will set the 'launch into instance ID' of any source server when performing a drill, recovery or failback to the previous region or availability zone, using the instance ID of the source instance.
|
1397
|
+
*/
|
1398
|
+
launchIntoSourceInstance?: Boolean;
|
1387
1399
|
/**
|
1388
1400
|
* Licensing.
|
1389
1401
|
*/
|
@@ -1405,6 +1417,12 @@ declare namespace Drs {
|
|
1405
1417
|
export type LaunchConfigurationTemplateIDs = LaunchConfigurationTemplateID[];
|
1406
1418
|
export type LaunchConfigurationTemplates = LaunchConfigurationTemplate[];
|
1407
1419
|
export type LaunchDisposition = "STOPPED"|"STARTED"|string;
|
1420
|
+
export interface LaunchIntoInstanceProperties {
|
1421
|
+
/**
|
1422
|
+
* Optionally holds EC2 instance ID of an instance to launch into, instead of launching a new instance during drill, recovery or failback.
|
1423
|
+
*/
|
1424
|
+
launchIntoEC2InstanceID?: EC2InstanceID;
|
1425
|
+
}
|
1408
1426
|
export type LaunchStatus = "PENDING"|"IN_PROGRESS"|"LAUNCHED"|"FAILED"|"TERMINATED"|string;
|
1409
1427
|
export interface Licensing {
|
1410
1428
|
/**
|
@@ -1638,7 +1656,7 @@ declare namespace Drs {
|
|
1638
1656
|
*/
|
1639
1657
|
active: Boolean;
|
1640
1658
|
category: LaunchActionCategory;
|
1641
|
-
description
|
1659
|
+
description: LaunchActionDescription;
|
1642
1660
|
name: LaunchActionName;
|
1643
1661
|
/**
|
1644
1662
|
* Whether the launch will not be marked as failed if this action fails.
|
@@ -2561,6 +2579,10 @@ declare namespace Drs {
|
|
2561
2579
|
* The state of the Recovery Instance in EC2 after the recovery operation.
|
2562
2580
|
*/
|
2563
2581
|
launchDisposition?: LaunchDisposition;
|
2582
|
+
/**
|
2583
|
+
* Launch into existing instance properties.
|
2584
|
+
*/
|
2585
|
+
launchIntoInstanceProperties?: LaunchIntoInstanceProperties;
|
2564
2586
|
/**
|
2565
2587
|
* The licensing configuration to be used for this launch configuration.
|
2566
2588
|
*/
|
@@ -2603,6 +2625,10 @@ declare namespace Drs {
|
|
2603
2625
|
* Launch disposition.
|
2604
2626
|
*/
|
2605
2627
|
launchDisposition?: LaunchDisposition;
|
2628
|
+
/**
|
2629
|
+
* DRS will set the 'launch into instance ID' of any source server when performing a drill, recovery or failback to the previous region or availability zone, using the instance ID of the source instance.
|
2630
|
+
*/
|
2631
|
+
launchIntoSourceInstance?: Boolean;
|
2606
2632
|
/**
|
2607
2633
|
* Licensing.
|
2608
2634
|
*/
|
@@ -723,7 +723,7 @@ declare namespace ECS {
|
|
723
723
|
}
|
724
724
|
export interface ClusterServiceConnectDefaultsRequest {
|
725
725
|
/**
|
726
|
-
* The namespace name or full Amazon Resource Name (ARN) of the Cloud Map namespace that's used when you create a service and don't specify a Service Connect configuration. The namespace name can include up to 1024 characters. The name is case-sensitive. The name can't include hyphens (-), tilde (~), greater than (>), less than (<), or slash (/). If you enter an existing namespace name or ARN, then that namespace will be used. Any namespace type is supported. The namespace must be in this account and this Amazon Web Services Region. If you enter a new name, a Cloud Map namespace will be created. Amazon ECS creates a Cloud Map namespace with the "API calls" method of instance discovery only. This instance discovery method is the "HTTP" namespace type in the Command Line Interface. Other types of instance discovery aren't used by Service Connect. If you update the
|
726
|
+
* The namespace name or full Amazon Resource Name (ARN) of the Cloud Map namespace that's used when you create a service and don't specify a Service Connect configuration. The namespace name can include up to 1024 characters. The name is case-sensitive. The name can't include hyphens (-), tilde (~), greater than (>), less than (<), or slash (/). If you enter an existing namespace name or ARN, then that namespace will be used. Any namespace type is supported. The namespace must be in this account and this Amazon Web Services Region. If you enter a new name, a Cloud Map namespace will be created. Amazon ECS creates a Cloud Map namespace with the "API calls" method of instance discovery only. This instance discovery method is the "HTTP" namespace type in the Command Line Interface. Other types of instance discovery aren't used by Service Connect. If you update the cluster with an empty string "" for the namespace name, the cluster configuration for Service Connect is removed. Note that the namespace will remain in Cloud Map and must be deleted separately. For more information about Cloud Map, see Working with Services in the Cloud Map Developer Guide.
|
727
727
|
*/
|
728
728
|
namespace: String;
|
729
729
|
}
|
@@ -2651,7 +2651,7 @@ declare namespace ECS {
|
|
2651
2651
|
*/
|
2652
2652
|
protocol?: TransportProtocol;
|
2653
2653
|
/**
|
2654
|
-
* The port number range on the container that's bound to the dynamically mapped host port range. The following rules apply when you specify a containerPortRange: You must use either the bridge network mode or the awsvpc network mode. This parameter is available for both the EC2 and Fargate launch types. This parameter is available for both the Linux and Windows operating systems. The container instance must have at least version 1.67.0 of the container agent and at least version 1.67.0-1 of the ecs-init package You can specify a maximum of 100 port ranges per container. You do not specify a hostPortRange. The value of the hostPortRange is set as follows: For containers in a task with the awsvpc network mode, the
|
2654
|
+
* The port number range on the container that's bound to the dynamically mapped host port range. The following rules apply when you specify a containerPortRange: You must use either the bridge network mode or the awsvpc network mode. This parameter is available for both the EC2 and Fargate launch types. This parameter is available for both the Linux and Windows operating systems. The container instance must have at least version 1.67.0 of the container agent and at least version 1.67.0-1 of the ecs-init package You can specify a maximum of 100 port ranges per container. You do not specify a hostPortRange. The value of the hostPortRange is set as follows: For containers in a task with the awsvpc network mode, the hostPortRange is set to the same value as the containerPortRange. This is a static mapping strategy. For containers in a task with the bridge network mode, the Amazon ECS agent finds open host ports from the default ephemeral range and passes it to docker to bind them to the container ports. The containerPortRange valid values are between 1 and 65535. A port can only be included in one port mapping per container. You cannot specify overlapping port ranges. The first port in the range must be less than last port in the range. Docker recommends that you turn off the docker-proxy in the Docker daemon config file when you have a large number of ports. For more information, see Issue #11185 on the Github website. For information about how to turn off the docker-proxy in the Docker daemon config file, see Docker daemon in the Amazon ECS Developer Guide. You can call DescribeTasks to view the hostPortRange which are the host ports that are bound to the container ports.
|
2655
2655
|
*/
|
2656
2656
|
containerPortRange?: String;
|
2657
2657
|
/**
|
@@ -2742,7 +2742,7 @@ declare namespace ECS {
|
|
2742
2742
|
*/
|
2743
2743
|
appProtocol?: ApplicationProtocol;
|
2744
2744
|
/**
|
2745
|
-
* The port number range on the container that's bound to the dynamically mapped host port range. The following rules apply when you specify a containerPortRange: You must use either the bridge network mode or the awsvpc network mode. This parameter is available for both the EC2 and Fargate launch types. This parameter is available for both the Linux and Windows operating systems. The container instance must have at least version 1.67.0 of the container agent and at least version 1.67.0-1 of the ecs-init package You can specify a maximum of 100 port ranges per container. You do not specify a hostPortRange. The value of the hostPortRange is set as follows: For containers in a task with the awsvpc network mode, the
|
2745
|
+
* The port number range on the container that's bound to the dynamically mapped host port range. The following rules apply when you specify a containerPortRange: You must use either the bridge network mode or the awsvpc network mode. This parameter is available for both the EC2 and Fargate launch types. This parameter is available for both the Linux and Windows operating systems. The container instance must have at least version 1.67.0 of the container agent and at least version 1.67.0-1 of the ecs-init package You can specify a maximum of 100 port ranges per container. You do not specify a hostPortRange. The value of the hostPortRange is set as follows: For containers in a task with the awsvpc network mode, the hostPortRange is set to the same value as the containerPortRange. This is a static mapping strategy. For containers in a task with the bridge network mode, the Amazon ECS agent finds open host ports from the default ephemeral range and passes it to docker to bind them to the container ports. The containerPortRange valid values are between 1 and 65535. A port can only be included in one port mapping per container. You cannot specify overlapping port ranges. The first port in the range must be less than last port in the range. Docker recommends that you turn off the docker-proxy in the Docker daemon config file when you have a large number of ports. For more information, see Issue #11185 on the Github website. For information about how to turn off the docker-proxy in the Docker daemon config file, see Docker daemon in the Amazon ECS Developer Guide. You can call DescribeTasks to view the hostPortRange which are the host ports that are bound to the container ports.
|
2746
2746
|
*/
|
2747
2747
|
containerPortRange?: String;
|
2748
2748
|
}
|