cdk-docker-image-deployment 0.0.76 → 0.0.78
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 +18 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appflow-2020-08-23.min.json +24 -0
- package/node_modules/aws-sdk/apis/auditmanager-2017-07-25.min.json +41 -27
- package/node_modules/aws-sdk/apis/{ssmsap-2018-05-10.examples.json → chime-sdk-voice-2022-08-03.examples.json} +0 -0
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.min.json +2734 -0
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.paginators.json +46 -0
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +774 -409
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +185 -158
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +3 -0
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +505 -501
- package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.min.json +923 -0
- package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/metadata.json +9 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +321 -138
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +263 -263
- package/node_modules/aws-sdk/apis/servicecatalog-2015-12-10.min.json +183 -115
- package/node_modules/aws-sdk/apis/ssm-sap-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/{ssmsap-2018-05-10.min.json → ssm-sap-2018-05-10.min.json} +2 -2
- package/node_modules/aws-sdk/apis/{ssmsap-2018-05-10.paginators.json → ssm-sap-2018-05-10.paginators.json} +0 -0
- package/node_modules/aws-sdk/apis/states-2016-11-23.min.json +17 -5
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +2 -0
- package/node_modules/aws-sdk/clients/appflow.d.ts +30 -5
- package/node_modules/aws-sdk/clients/auditmanager.d.ts +50 -12
- package/node_modules/aws-sdk/clients/chimesdkvoice.d.ts +1401 -0
- package/node_modules/aws-sdk/clients/chimesdkvoice.js +18 -0
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +300 -12
- package/node_modules/aws-sdk/clients/connect.d.ts +31 -1
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +7 -7
- package/node_modules/aws-sdk/clients/ec2.d.ts +17 -13
- package/node_modules/aws-sdk/clients/glue.d.ts +9 -3
- package/node_modules/aws-sdk/clients/iotroborunner.d.ts +534 -0
- package/node_modules/aws-sdk/clients/iotroborunner.js +18 -0
- package/node_modules/aws-sdk/clients/quicksight.d.ts +230 -13
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +5 -1
- package/node_modules/aws-sdk/clients/servicecatalog.d.ts +141 -29
- package/node_modules/aws-sdk/clients/ssmsap.d.ts +31 -31
- package/node_modules/aws-sdk/clients/ssmsap.js +2 -2
- package/node_modules/aws-sdk/clients/stepfunctions.d.ts +67 -52
- package/node_modules/aws-sdk/clients/transfer.d.ts +7 -7
- 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 +94 -20
- package/node_modules/aws-sdk/dist/aws-sdk.js +1155 -683
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +87 -86
- 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/lib/dynamodb/document_client.d.ts +3 -3
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -12,19 +12,19 @@ declare class StepFunctions extends Service {
|
|
|
12
12
|
constructor(options?: StepFunctions.Types.ClientConfiguration)
|
|
13
13
|
config: Config & StepFunctions.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
* Creates an activity. An activity is a task that you write in any programming language and host on any machine that has access to
|
|
15
|
+
* Creates an activity. An activity is a task that you write in any programming language and host on any machine that has access to Step Functions. Activities must poll Step Functions using the GetActivityTask API action and respond using SendTask* API actions. This function lets Step Functions know the existence of your activity and returns an identifier for use in a state machine and when polling from the activity. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes. CreateActivity is an idempotent API. Subsequent requests won’t create a duplicate resource if it was already created. CreateActivity's idempotency check is based on the activity name. If a following request has different tags values, Step Functions will ignore these differences and treat it as an idempotent request of the previous. In this case, tags will not be updated, even if they are different.
|
|
16
16
|
*/
|
|
17
17
|
createActivity(params: StepFunctions.Types.CreateActivityInput, callback?: (err: AWSError, data: StepFunctions.Types.CreateActivityOutput) => void): Request<StepFunctions.Types.CreateActivityOutput, AWSError>;
|
|
18
18
|
/**
|
|
19
|
-
* Creates an activity. An activity is a task that you write in any programming language and host on any machine that has access to
|
|
19
|
+
* Creates an activity. An activity is a task that you write in any programming language and host on any machine that has access to Step Functions. Activities must poll Step Functions using the GetActivityTask API action and respond using SendTask* API actions. This function lets Step Functions know the existence of your activity and returns an identifier for use in a state machine and when polling from the activity. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes. CreateActivity is an idempotent API. Subsequent requests won’t create a duplicate resource if it was already created. CreateActivity's idempotency check is based on the activity name. If a following request has different tags values, Step Functions will ignore these differences and treat it as an idempotent request of the previous. In this case, tags will not be updated, even if they are different.
|
|
20
20
|
*/
|
|
21
21
|
createActivity(callback?: (err: AWSError, data: StepFunctions.Types.CreateActivityOutput) => void): Request<StepFunctions.Types.CreateActivityOutput, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Creates a state machine. A state machine consists of a collection of states that can do work (Task states), determine to which states to transition next (Choice states), stop an execution with an error (Fail states), and so on. State machines are specified using a JSON-based, structured language. For more information, see Amazon States Language in the
|
|
23
|
+
* Creates a state machine. A state machine consists of a collection of states that can do work (Task states), determine to which states to transition next (Choice states), stop an execution with an error (Fail states), and so on. State machines are specified using a JSON-based, structured language. For more information, see Amazon States Language in the Step Functions User Guide. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes. CreateStateMachine is an idempotent API. Subsequent requests won’t create a duplicate resource if it was already created. CreateStateMachine's idempotency check is based on the state machine name, definition, type, LoggingConfiguration and TracingConfiguration. If a following request has a different roleArn or tags, Step Functions will ignore these differences and treat it as an idempotent request of the previous. In this case, roleArn and tags will not be updated, even if they are different.
|
|
24
24
|
*/
|
|
25
25
|
createStateMachine(params: StepFunctions.Types.CreateStateMachineInput, callback?: (err: AWSError, data: StepFunctions.Types.CreateStateMachineOutput) => void): Request<StepFunctions.Types.CreateStateMachineOutput, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Creates a state machine. A state machine consists of a collection of states that can do work (Task states), determine to which states to transition next (Choice states), stop an execution with an error (Fail states), and so on. State machines are specified using a JSON-based, structured language. For more information, see Amazon States Language in the
|
|
27
|
+
* Creates a state machine. A state machine consists of a collection of states that can do work (Task states), determine to which states to transition next (Choice states), stop an execution with an error (Fail states), and so on. State machines are specified using a JSON-based, structured language. For more information, see Amazon States Language in the Step Functions User Guide. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes. CreateStateMachine is an idempotent API. Subsequent requests won’t create a duplicate resource if it was already created. CreateStateMachine's idempotency check is based on the state machine name, definition, type, LoggingConfiguration and TracingConfiguration. If a following request has a different roleArn or tags, Step Functions will ignore these differences and treat it as an idempotent request of the previous. In this case, roleArn and tags will not be updated, even if they are different.
|
|
28
28
|
*/
|
|
29
29
|
createStateMachine(callback?: (err: AWSError, data: StepFunctions.Types.CreateStateMachineOutput) => void): Request<StepFunctions.Types.CreateStateMachineOutput, AWSError>;
|
|
30
30
|
/**
|
|
@@ -36,11 +36,11 @@ declare class StepFunctions extends Service {
|
|
|
36
36
|
*/
|
|
37
37
|
deleteActivity(callback?: (err: AWSError, data: StepFunctions.Types.DeleteActivityOutput) => void): Request<StepFunctions.Types.DeleteActivityOutput, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* Deletes a state machine. This is an asynchronous operation: It sets the state machine's status to DELETING and begins the deletion process. For
|
|
39
|
+
* Deletes a state machine. This is an asynchronous operation: It sets the state machine's status to DELETING and begins the deletion process. For EXPRESS state machines, the deletion will happen eventually (usually less than a minute). Running executions may emit logs after DeleteStateMachine API is called.
|
|
40
40
|
*/
|
|
41
41
|
deleteStateMachine(params: StepFunctions.Types.DeleteStateMachineInput, callback?: (err: AWSError, data: StepFunctions.Types.DeleteStateMachineOutput) => void): Request<StepFunctions.Types.DeleteStateMachineOutput, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* Deletes a state machine. This is an asynchronous operation: It sets the state machine's status to DELETING and begins the deletion process. For
|
|
43
|
+
* Deletes a state machine. This is an asynchronous operation: It sets the state machine's status to DELETING and begins the deletion process. For EXPRESS state machines, the deletion will happen eventually (usually less than a minute). Running executions may emit logs after DeleteStateMachine API is called.
|
|
44
44
|
*/
|
|
45
45
|
deleteStateMachine(callback?: (err: AWSError, data: StepFunctions.Types.DeleteStateMachineOutput) => void): Request<StepFunctions.Types.DeleteStateMachineOutput, AWSError>;
|
|
46
46
|
/**
|
|
@@ -76,11 +76,11 @@ declare class StepFunctions extends Service {
|
|
|
76
76
|
*/
|
|
77
77
|
describeStateMachineForExecution(callback?: (err: AWSError, data: StepFunctions.Types.DescribeStateMachineForExecutionOutput) => void): Request<StepFunctions.Types.DescribeStateMachineForExecutionOutput, AWSError>;
|
|
78
78
|
/**
|
|
79
|
-
* Used by workers to retrieve a task (with the specified activity ARN) which has been scheduled for execution by a running state machine. This initiates a long poll, where the service holds the HTTP connection open and responds as soon as a task becomes available (i.e. an execution of a task of this type is needed.) The maximum time the service holds on to the request before responding is 60 seconds. If no task is available within 60 seconds, the poll returns a taskToken with a null string. Workers should set their client side socket timeout to at least 65 seconds (5 seconds higher than the maximum time the service may hold the poll request). Polling with GetActivityTask can cause latency in some implementations. See Avoid Latency When Polling for Activity Tasks in the Step Functions Developer Guide.
|
|
79
|
+
* Used by workers to retrieve a task (with the specified activity ARN) which has been scheduled for execution by a running state machine. This initiates a long poll, where the service holds the HTTP connection open and responds as soon as a task becomes available (i.e. an execution of a task of this type is needed.) The maximum time the service holds on to the request before responding is 60 seconds. If no task is available within 60 seconds, the poll returns a taskToken with a null string. This API action isn't logged in CloudTrail. Workers should set their client side socket timeout to at least 65 seconds (5 seconds higher than the maximum time the service may hold the poll request). Polling with GetActivityTask can cause latency in some implementations. See Avoid Latency When Polling for Activity Tasks in the Step Functions Developer Guide.
|
|
80
80
|
*/
|
|
81
81
|
getActivityTask(params: StepFunctions.Types.GetActivityTaskInput, callback?: (err: AWSError, data: StepFunctions.Types.GetActivityTaskOutput) => void): Request<StepFunctions.Types.GetActivityTaskOutput, AWSError>;
|
|
82
82
|
/**
|
|
83
|
-
* Used by workers to retrieve a task (with the specified activity ARN) which has been scheduled for execution by a running state machine. This initiates a long poll, where the service holds the HTTP connection open and responds as soon as a task becomes available (i.e. an execution of a task of this type is needed.) The maximum time the service holds on to the request before responding is 60 seconds. If no task is available within 60 seconds, the poll returns a taskToken with a null string. Workers should set their client side socket timeout to at least 65 seconds (5 seconds higher than the maximum time the service may hold the poll request). Polling with GetActivityTask can cause latency in some implementations. See Avoid Latency When Polling for Activity Tasks in the Step Functions Developer Guide.
|
|
83
|
+
* Used by workers to retrieve a task (with the specified activity ARN) which has been scheduled for execution by a running state machine. This initiates a long poll, where the service holds the HTTP connection open and responds as soon as a task becomes available (i.e. an execution of a task of this type is needed.) The maximum time the service holds on to the request before responding is 60 seconds. If no task is available within 60 seconds, the poll returns a taskToken with a null string. This API action isn't logged in CloudTrail. Workers should set their client side socket timeout to at least 65 seconds (5 seconds higher than the maximum time the service may hold the poll request). Polling with GetActivityTask can cause latency in some implementations. See Avoid Latency When Polling for Activity Tasks in the Step Functions Developer Guide.
|
|
84
84
|
*/
|
|
85
85
|
getActivityTask(callback?: (err: AWSError, data: StepFunctions.Types.GetActivityTaskOutput) => void): Request<StepFunctions.Types.GetActivityTaskOutput, AWSError>;
|
|
86
86
|
/**
|
|
@@ -148,19 +148,19 @@ declare class StepFunctions extends Service {
|
|
|
148
148
|
*/
|
|
149
149
|
sendTaskSuccess(callback?: (err: AWSError, data: StepFunctions.Types.SendTaskSuccessOutput) => void): Request<StepFunctions.Types.SendTaskSuccessOutput, AWSError>;
|
|
150
150
|
/**
|
|
151
|
-
* Starts a state machine execution. StartExecution is idempotent.
|
|
151
|
+
* Starts a state machine execution. StartExecution is idempotent for STANDARD workflows. For a STANDARD workflow, if StartExecution is called with the same name and input as a running execution, the call will succeed and return the same response as the original request. If the execution is closed or if the input is different, it will return a 400 ExecutionAlreadyExists error. Names can be reused after 90 days. StartExecution is not idempotent for EXPRESS workflows.
|
|
152
152
|
*/
|
|
153
153
|
startExecution(params: StepFunctions.Types.StartExecutionInput, callback?: (err: AWSError, data: StepFunctions.Types.StartExecutionOutput) => void): Request<StepFunctions.Types.StartExecutionOutput, AWSError>;
|
|
154
154
|
/**
|
|
155
|
-
* Starts a state machine execution. StartExecution is idempotent.
|
|
155
|
+
* Starts a state machine execution. StartExecution is idempotent for STANDARD workflows. For a STANDARD workflow, if StartExecution is called with the same name and input as a running execution, the call will succeed and return the same response as the original request. If the execution is closed or if the input is different, it will return a 400 ExecutionAlreadyExists error. Names can be reused after 90 days. StartExecution is not idempotent for EXPRESS workflows.
|
|
156
156
|
*/
|
|
157
157
|
startExecution(callback?: (err: AWSError, data: StepFunctions.Types.StartExecutionOutput) => void): Request<StepFunctions.Types.StartExecutionOutput, AWSError>;
|
|
158
158
|
/**
|
|
159
|
-
* Starts a Synchronous Express state machine execution.
|
|
159
|
+
* Starts a Synchronous Express state machine execution. StartSyncExecution is not available for STANDARD workflows. StartSyncExecution will return a 200 OK response, even if your execution fails, because the status code in the API response doesn't reflect function errors. Error codes are reserved for errors that prevent your execution from running, such as permissions errors, limit errors, or issues with your state machine code and configuration. This API action isn't logged in CloudTrail.
|
|
160
160
|
*/
|
|
161
161
|
startSyncExecution(params: StepFunctions.Types.StartSyncExecutionInput, callback?: (err: AWSError, data: StepFunctions.Types.StartSyncExecutionOutput) => void): Request<StepFunctions.Types.StartSyncExecutionOutput, AWSError>;
|
|
162
162
|
/**
|
|
163
|
-
* Starts a Synchronous Express state machine execution.
|
|
163
|
+
* Starts a Synchronous Express state machine execution. StartSyncExecution is not available for STANDARD workflows. StartSyncExecution will return a 200 OK response, even if your execution fails, because the status code in the API response doesn't reflect function errors. Error codes are reserved for errors that prevent your execution from running, such as permissions errors, limit errors, or issues with your state machine code and configuration. This API action isn't logged in CloudTrail.
|
|
164
164
|
*/
|
|
165
165
|
startSyncExecution(callback?: (err: AWSError, data: StepFunctions.Types.StartSyncExecutionOutput) => void): Request<StepFunctions.Types.StartSyncExecutionOutput, AWSError>;
|
|
166
166
|
/**
|
|
@@ -172,11 +172,11 @@ declare class StepFunctions extends Service {
|
|
|
172
172
|
*/
|
|
173
173
|
stopExecution(callback?: (err: AWSError, data: StepFunctions.Types.StopExecutionOutput) => void): Request<StepFunctions.Types.StopExecutionOutput, AWSError>;
|
|
174
174
|
/**
|
|
175
|
-
* Add a tag to a Step Functions resource. An array of key-value pairs. For more information, see Using Cost Allocation Tags in the
|
|
175
|
+
* Add a tag to a Step Functions resource. An array of key-value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide, and Controlling Access Using IAM Tags. Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @.
|
|
176
176
|
*/
|
|
177
177
|
tagResource(params: StepFunctions.Types.TagResourceInput, callback?: (err: AWSError, data: StepFunctions.Types.TagResourceOutput) => void): Request<StepFunctions.Types.TagResourceOutput, AWSError>;
|
|
178
178
|
/**
|
|
179
|
-
* Add a tag to a Step Functions resource. An array of key-value pairs. For more information, see Using Cost Allocation Tags in the
|
|
179
|
+
* Add a tag to a Step Functions resource. An array of key-value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide, and Controlling Access Using IAM Tags. Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @.
|
|
180
180
|
*/
|
|
181
181
|
tagResource(callback?: (err: AWSError, data: StepFunctions.Types.TagResourceOutput) => void): Request<StepFunctions.Types.TagResourceOutput, AWSError>;
|
|
182
182
|
/**
|
|
@@ -308,11 +308,11 @@ declare namespace StepFunctions {
|
|
|
308
308
|
export type ConnectorParameters = string;
|
|
309
309
|
export interface CreateActivityInput {
|
|
310
310
|
/**
|
|
311
|
-
* The name of the activity to create. This name must be unique for your
|
|
311
|
+
* The name of the activity to create. This name must be unique for your Amazon Web Services account and region for 90 days. For more information, see Limits Related to State Machine Executions in the Step Functions Developer Guide. A name must not contain: white space brackets < > { } [ ] wildcard characters ? * special characters " # % \ ^ | ~ ` $ & , ; : / control characters (U+0000-001F, U+007F-009F) To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
|
|
312
312
|
*/
|
|
313
313
|
name: Name;
|
|
314
314
|
/**
|
|
315
|
-
* The list of tags to add to a resource. An array of key-value pairs. For more information, see Using Cost Allocation Tags in the
|
|
315
|
+
* The list of tags to add to a resource. An array of key-value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide, and Controlling Access Using IAM Tags. Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @.
|
|
316
316
|
*/
|
|
317
317
|
tags?: TagList;
|
|
318
318
|
}
|
|
@@ -344,15 +344,15 @@ declare namespace StepFunctions {
|
|
|
344
344
|
*/
|
|
345
345
|
type?: StateMachineType;
|
|
346
346
|
/**
|
|
347
|
-
* Defines what execution history events are logged and where they are logged. By default, the level is set to OFF. For more information see Log Levels in the
|
|
347
|
+
* Defines what execution history events are logged and where they are logged. By default, the level is set to OFF. For more information see Log Levels in the Step Functions User Guide.
|
|
348
348
|
*/
|
|
349
349
|
loggingConfiguration?: LoggingConfiguration;
|
|
350
350
|
/**
|
|
351
|
-
* Tags to be added when creating a state machine. An array of key-value pairs. For more information, see Using Cost Allocation Tags in the
|
|
351
|
+
* Tags to be added when creating a state machine. An array of key-value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide, and Controlling Access Using IAM Tags. Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @.
|
|
352
352
|
*/
|
|
353
353
|
tags?: TagList;
|
|
354
354
|
/**
|
|
355
|
-
* Selects whether
|
|
355
|
+
* Selects whether X-Ray tracing is enabled.
|
|
356
356
|
*/
|
|
357
357
|
tracingConfiguration?: TracingConfiguration;
|
|
358
358
|
}
|
|
@@ -445,7 +445,7 @@ declare namespace StepFunctions {
|
|
|
445
445
|
output?: SensitiveData;
|
|
446
446
|
outputDetails?: CloudWatchEventsExecutionDataDetails;
|
|
447
447
|
/**
|
|
448
|
-
* The
|
|
448
|
+
* The X-Ray trace header that was passed to the execution.
|
|
449
449
|
*/
|
|
450
450
|
traceHeader?: TraceHeader;
|
|
451
451
|
}
|
|
@@ -478,7 +478,7 @@ declare namespace StepFunctions {
|
|
|
478
478
|
updateDate: Timestamp;
|
|
479
479
|
loggingConfiguration?: LoggingConfiguration;
|
|
480
480
|
/**
|
|
481
|
-
* Selects whether
|
|
481
|
+
* Selects whether X-Ray tracing is enabled.
|
|
482
482
|
*/
|
|
483
483
|
tracingConfiguration?: TracingConfiguration;
|
|
484
484
|
}
|
|
@@ -506,7 +506,7 @@ declare namespace StepFunctions {
|
|
|
506
506
|
*/
|
|
507
507
|
definition: Definition;
|
|
508
508
|
/**
|
|
509
|
-
* The Amazon Resource Name (ARN) of the IAM role used when creating this state machine. (The IAM role maintains security by granting Step Functions access to
|
|
509
|
+
* The Amazon Resource Name (ARN) of the IAM role used when creating this state machine. (The IAM role maintains security by granting Step Functions access to Amazon Web Services resources.)
|
|
510
510
|
*/
|
|
511
511
|
roleArn: Arn;
|
|
512
512
|
/**
|
|
@@ -519,7 +519,7 @@ declare namespace StepFunctions {
|
|
|
519
519
|
creationDate: Timestamp;
|
|
520
520
|
loggingConfiguration?: LoggingConfiguration;
|
|
521
521
|
/**
|
|
522
|
-
* Selects whether
|
|
522
|
+
* Selects whether X-Ray tracing is enabled.
|
|
523
523
|
*/
|
|
524
524
|
tracingConfiguration?: TracingConfiguration;
|
|
525
525
|
}
|
|
@@ -582,7 +582,7 @@ declare namespace StepFunctions {
|
|
|
582
582
|
*/
|
|
583
583
|
inputDetails?: HistoryEventExecutionDataDetails;
|
|
584
584
|
/**
|
|
585
|
-
* The Amazon Resource Name (ARN) of the IAM role used for executing
|
|
585
|
+
* The Amazon Resource Name (ARN) of the IAM role used for executing Lambda tasks.
|
|
586
586
|
*/
|
|
587
587
|
roleArn?: Arn;
|
|
588
588
|
}
|
|
@@ -750,7 +750,7 @@ declare namespace StepFunctions {
|
|
|
750
750
|
*/
|
|
751
751
|
lambdaFunctionStartFailedEventDetails?: LambdaFunctionStartFailedEventDetails;
|
|
752
752
|
/**
|
|
753
|
-
* Contains details about a
|
|
753
|
+
* Contains details about a Lambda function that terminated successfully during an execution.
|
|
754
754
|
*/
|
|
755
755
|
lambdaFunctionSucceededEventDetails?: LambdaFunctionSucceededEventDetails;
|
|
756
756
|
lambdaFunctionTimedOutEventDetails?: LambdaFunctionTimedOutEventDetails;
|
|
@@ -790,11 +790,11 @@ declare namespace StepFunctions {
|
|
|
790
790
|
}
|
|
791
791
|
export interface LambdaFunctionScheduledEventDetails {
|
|
792
792
|
/**
|
|
793
|
-
* The Amazon Resource Name (ARN) of the scheduled
|
|
793
|
+
* The Amazon Resource Name (ARN) of the scheduled Lambda function.
|
|
794
794
|
*/
|
|
795
795
|
resource: Arn;
|
|
796
796
|
/**
|
|
797
|
-
* The JSON data input to the
|
|
797
|
+
* The JSON data input to the Lambda function. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
|
|
798
798
|
*/
|
|
799
799
|
input?: SensitiveData;
|
|
800
800
|
/**
|
|
@@ -802,9 +802,13 @@ declare namespace StepFunctions {
|
|
|
802
802
|
*/
|
|
803
803
|
inputDetails?: HistoryEventExecutionDataDetails;
|
|
804
804
|
/**
|
|
805
|
-
* The maximum allowed duration of the
|
|
805
|
+
* The maximum allowed duration of the Lambda function.
|
|
806
806
|
*/
|
|
807
807
|
timeoutInSeconds?: TimeoutInSeconds;
|
|
808
|
+
/**
|
|
809
|
+
* The credentials that Step Functions uses for the task.
|
|
810
|
+
*/
|
|
811
|
+
taskCredentials?: TaskCredentials;
|
|
808
812
|
}
|
|
809
813
|
export interface LambdaFunctionStartFailedEventDetails {
|
|
810
814
|
/**
|
|
@@ -818,7 +822,7 @@ declare namespace StepFunctions {
|
|
|
818
822
|
}
|
|
819
823
|
export interface LambdaFunctionSucceededEventDetails {
|
|
820
824
|
/**
|
|
821
|
-
* The JSON data output by the
|
|
825
|
+
* The JSON data output by the Lambda function. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
|
|
822
826
|
*/
|
|
823
827
|
output?: SensitiveData;
|
|
824
828
|
/**
|
|
@@ -916,7 +920,7 @@ declare namespace StepFunctions {
|
|
|
916
920
|
}
|
|
917
921
|
export interface LogDestination {
|
|
918
922
|
/**
|
|
919
|
-
* An object describing a CloudWatch log group. For more information, see AWS::Logs::LogGroup in the
|
|
923
|
+
* An object describing a CloudWatch log group. For more information, see AWS::Logs::LogGroup in the CloudFormation User Guide.
|
|
920
924
|
*/
|
|
921
925
|
cloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
|
|
922
926
|
}
|
|
@@ -936,6 +940,7 @@ declare namespace StepFunctions {
|
|
|
936
940
|
*/
|
|
937
941
|
destinations?: LogDestinationList;
|
|
938
942
|
}
|
|
943
|
+
export type LongArn = string;
|
|
939
944
|
export interface MapIterationEventDetails {
|
|
940
945
|
/**
|
|
941
946
|
* The name of the iteration’s parent Map state.
|
|
@@ -1002,7 +1007,7 @@ declare namespace StepFunctions {
|
|
|
1002
1007
|
*/
|
|
1003
1008
|
stateMachineArn: Arn;
|
|
1004
1009
|
/**
|
|
1005
|
-
* The name of the execution. This name must be unique for your
|
|
1010
|
+
* The name of the execution. This name must be unique for your Amazon Web Services account, region, and state machine for 90 days. For more information, see Limits Related to State Machine Executions in the Step Functions Developer Guide. A name must not contain: white space brackets < > { } [ ] wildcard characters ? * special characters " # % \ ^ | ~ ` $ & , ; : / control characters (U+0000-001F, U+007F-009F) To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
|
|
1006
1011
|
*/
|
|
1007
1012
|
name?: Name;
|
|
1008
1013
|
/**
|
|
@@ -1010,7 +1015,7 @@ declare namespace StepFunctions {
|
|
|
1010
1015
|
*/
|
|
1011
1016
|
input?: SensitiveData;
|
|
1012
1017
|
/**
|
|
1013
|
-
* Passes the
|
|
1018
|
+
* Passes the X-Ray trace header. The trace header can also be passed in the request payload.
|
|
1014
1019
|
*/
|
|
1015
1020
|
traceHeader?: TraceHeader;
|
|
1016
1021
|
}
|
|
@@ -1038,7 +1043,7 @@ declare namespace StepFunctions {
|
|
|
1038
1043
|
*/
|
|
1039
1044
|
input?: SensitiveData;
|
|
1040
1045
|
/**
|
|
1041
|
-
* Passes the
|
|
1046
|
+
* Passes the X-Ray trace header. The trace header can also be passed in the request payload.
|
|
1042
1047
|
*/
|
|
1043
1048
|
traceHeader?: TraceHeader;
|
|
1044
1049
|
}
|
|
@@ -1086,7 +1091,7 @@ declare namespace StepFunctions {
|
|
|
1086
1091
|
output?: SensitiveData;
|
|
1087
1092
|
outputDetails?: CloudWatchEventsExecutionDataDetails;
|
|
1088
1093
|
/**
|
|
1089
|
-
* The
|
|
1094
|
+
* The X-Ray trace header that was passed to the execution.
|
|
1090
1095
|
*/
|
|
1091
1096
|
traceHeader?: TraceHeader;
|
|
1092
1097
|
/**
|
|
@@ -1190,13 +1195,19 @@ declare namespace StepFunctions {
|
|
|
1190
1195
|
export interface TagResourceOutput {
|
|
1191
1196
|
}
|
|
1192
1197
|
export type TagValue = string;
|
|
1198
|
+
export interface TaskCredentials {
|
|
1199
|
+
/**
|
|
1200
|
+
* The ARN of an IAM role that Step Functions assumes for the task. The role can allow cross-account access to resources.
|
|
1201
|
+
*/
|
|
1202
|
+
roleArn?: LongArn;
|
|
1203
|
+
}
|
|
1193
1204
|
export interface TaskFailedEventDetails {
|
|
1194
1205
|
/**
|
|
1195
|
-
* The
|
|
1206
|
+
* The service name of the resource in a task state.
|
|
1196
1207
|
*/
|
|
1197
1208
|
resourceType: Name;
|
|
1198
1209
|
/**
|
|
1199
|
-
* The
|
|
1210
|
+
* The action of the resource called by a task state.
|
|
1200
1211
|
*/
|
|
1201
1212
|
resource: Name;
|
|
1202
1213
|
/**
|
|
@@ -1210,11 +1221,11 @@ declare namespace StepFunctions {
|
|
|
1210
1221
|
}
|
|
1211
1222
|
export interface TaskScheduledEventDetails {
|
|
1212
1223
|
/**
|
|
1213
|
-
* The
|
|
1224
|
+
* The service name of the resource in a task state.
|
|
1214
1225
|
*/
|
|
1215
1226
|
resourceType: Name;
|
|
1216
1227
|
/**
|
|
1217
|
-
* The
|
|
1228
|
+
* The action of the resource called by a task state.
|
|
1218
1229
|
*/
|
|
1219
1230
|
resource: Name;
|
|
1220
1231
|
/**
|
|
@@ -1233,14 +1244,18 @@ declare namespace StepFunctions {
|
|
|
1233
1244
|
* The maximum allowed duration between two heartbeats for the task.
|
|
1234
1245
|
*/
|
|
1235
1246
|
heartbeatInSeconds?: TimeoutInSeconds;
|
|
1247
|
+
/**
|
|
1248
|
+
* The credentials that Step Functions uses for the task.
|
|
1249
|
+
*/
|
|
1250
|
+
taskCredentials?: TaskCredentials;
|
|
1236
1251
|
}
|
|
1237
1252
|
export interface TaskStartFailedEventDetails {
|
|
1238
1253
|
/**
|
|
1239
|
-
* The
|
|
1254
|
+
* The service name of the resource in a task state.
|
|
1240
1255
|
*/
|
|
1241
1256
|
resourceType: Name;
|
|
1242
1257
|
/**
|
|
1243
|
-
* The
|
|
1258
|
+
* The action of the resource called by a task state.
|
|
1244
1259
|
*/
|
|
1245
1260
|
resource: Name;
|
|
1246
1261
|
/**
|
|
@@ -1254,21 +1269,21 @@ declare namespace StepFunctions {
|
|
|
1254
1269
|
}
|
|
1255
1270
|
export interface TaskStartedEventDetails {
|
|
1256
1271
|
/**
|
|
1257
|
-
* The
|
|
1272
|
+
* The service name of the resource in a task state.
|
|
1258
1273
|
*/
|
|
1259
1274
|
resourceType: Name;
|
|
1260
1275
|
/**
|
|
1261
|
-
* The
|
|
1276
|
+
* The action of the resource called by a task state.
|
|
1262
1277
|
*/
|
|
1263
1278
|
resource: Name;
|
|
1264
1279
|
}
|
|
1265
1280
|
export interface TaskSubmitFailedEventDetails {
|
|
1266
1281
|
/**
|
|
1267
|
-
* The
|
|
1282
|
+
* The service name of the resource in a task state.
|
|
1268
1283
|
*/
|
|
1269
1284
|
resourceType: Name;
|
|
1270
1285
|
/**
|
|
1271
|
-
* The
|
|
1286
|
+
* The action of the resource called by a task state.
|
|
1272
1287
|
*/
|
|
1273
1288
|
resource: Name;
|
|
1274
1289
|
/**
|
|
@@ -1282,11 +1297,11 @@ declare namespace StepFunctions {
|
|
|
1282
1297
|
}
|
|
1283
1298
|
export interface TaskSubmittedEventDetails {
|
|
1284
1299
|
/**
|
|
1285
|
-
* The
|
|
1300
|
+
* The service name of the resource in a task state.
|
|
1286
1301
|
*/
|
|
1287
1302
|
resourceType: Name;
|
|
1288
1303
|
/**
|
|
1289
|
-
* The
|
|
1304
|
+
* The action of the resource called by a task state.
|
|
1290
1305
|
*/
|
|
1291
1306
|
resource: Name;
|
|
1292
1307
|
/**
|
|
@@ -1300,11 +1315,11 @@ declare namespace StepFunctions {
|
|
|
1300
1315
|
}
|
|
1301
1316
|
export interface TaskSucceededEventDetails {
|
|
1302
1317
|
/**
|
|
1303
|
-
* The
|
|
1318
|
+
* The service name of the resource in a task state.
|
|
1304
1319
|
*/
|
|
1305
1320
|
resourceType: Name;
|
|
1306
1321
|
/**
|
|
1307
|
-
* The
|
|
1322
|
+
* The action of the resource called by a task state.
|
|
1308
1323
|
*/
|
|
1309
1324
|
resource: Name;
|
|
1310
1325
|
/**
|
|
@@ -1318,11 +1333,11 @@ declare namespace StepFunctions {
|
|
|
1318
1333
|
}
|
|
1319
1334
|
export interface TaskTimedOutEventDetails {
|
|
1320
1335
|
/**
|
|
1321
|
-
* The
|
|
1336
|
+
* The service name of the resource in a task state.
|
|
1322
1337
|
*/
|
|
1323
1338
|
resourceType: Name;
|
|
1324
1339
|
/**
|
|
1325
|
-
* The
|
|
1340
|
+
* The action of the resource called by a task state.
|
|
1326
1341
|
*/
|
|
1327
1342
|
resource: Name;
|
|
1328
1343
|
/**
|
|
@@ -1340,7 +1355,7 @@ declare namespace StepFunctions {
|
|
|
1340
1355
|
export type TraceHeader = string;
|
|
1341
1356
|
export interface TracingConfiguration {
|
|
1342
1357
|
/**
|
|
1343
|
-
* When set to true,
|
|
1358
|
+
* When set to true, X-Ray tracing is enabled.
|
|
1344
1359
|
*/
|
|
1345
1360
|
enabled?: Enabled;
|
|
1346
1361
|
}
|
|
@@ -1375,7 +1390,7 @@ declare namespace StepFunctions {
|
|
|
1375
1390
|
*/
|
|
1376
1391
|
loggingConfiguration?: LoggingConfiguration;
|
|
1377
1392
|
/**
|
|
1378
|
-
* Selects whether
|
|
1393
|
+
* Selects whether X-Ray tracing is enabled.
|
|
1379
1394
|
*/
|
|
1380
1395
|
tracingConfiguration?: TracingConfiguration;
|
|
1381
1396
|
}
|
|
@@ -517,7 +517,7 @@ declare namespace Transfer {
|
|
|
517
517
|
*/
|
|
518
518
|
Compression?: CompressionEnum;
|
|
519
519
|
/**
|
|
520
|
-
* The algorithm that is used to encrypt the file.
|
|
520
|
+
* The algorithm that is used to encrypt the file. You can only specify NONE if the URL for your connector uses HTTPS. This ensures that no traffic is sent in clear text.
|
|
521
521
|
*/
|
|
522
522
|
EncryptionAlgorithm?: EncryptionAlg;
|
|
523
523
|
/**
|
|
@@ -525,7 +525,7 @@ declare namespace Transfer {
|
|
|
525
525
|
*/
|
|
526
526
|
SigningAlgorithm?: SigningAlg;
|
|
527
527
|
/**
|
|
528
|
-
* The signing algorithm for the MDN response. If set to DEFAULT (or not set at all), the value for
|
|
528
|
+
* The signing algorithm for the MDN response. If set to DEFAULT (or not set at all), the value for SigningAlgorithm is used.
|
|
529
529
|
*/
|
|
530
530
|
MdnSigningAlgorithm?: MdnSigningAlg;
|
|
531
531
|
/**
|
|
@@ -758,7 +758,7 @@ declare namespace Transfer {
|
|
|
758
758
|
*/
|
|
759
759
|
Tags?: Tags;
|
|
760
760
|
/**
|
|
761
|
-
* Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow. In
|
|
761
|
+
* Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow. In addition to a workflow to execute when a file is uploaded completely, WorkflowDetails can also contain a workflow ID (and execution role) for a workflow to execute on partial upload. A partial upload occurs when a file is open when the session disconnects.
|
|
762
762
|
*/
|
|
763
763
|
WorkflowDetails?: WorkflowDetails;
|
|
764
764
|
}
|
|
@@ -798,7 +798,7 @@ declare namespace Transfer {
|
|
|
798
798
|
*/
|
|
799
799
|
ServerId: ServerId;
|
|
800
800
|
/**
|
|
801
|
-
* The public portion of the Secure Shell (SSH) key used to authenticate the user to the server. Transfer Family accepts RSA, ECDSA, and ED25519 keys.
|
|
801
|
+
* The public portion of the Secure Shell (SSH) key used to authenticate the user to the server. The three standard SSH public key format elements are <key type>, <body base64>, and an optional <comment>, with spaces between each element. Transfer Family accepts RSA, ECDSA, and ED25519 keys. For RSA keys, the key type is ssh-rsa. For ED25519 keys, the key type is ssh-ed25519. For ECDSA keys, the key type is either ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521, depending on the size of the key you generated.
|
|
802
802
|
*/
|
|
803
803
|
SshPublicKeyBody?: SshPublicKeyBody;
|
|
804
804
|
/**
|
|
@@ -1468,7 +1468,7 @@ declare namespace Transfer {
|
|
|
1468
1468
|
*/
|
|
1469
1469
|
UserCount?: UserCount;
|
|
1470
1470
|
/**
|
|
1471
|
-
* Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow. In
|
|
1471
|
+
* Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow. In addition to a workflow to execute when a file is uploaded completely, WorkflowDetails can also contain a workflow ID (and execution role) for a workflow to execute on partial upload. A partial upload occurs when a file is open when the session disconnects.
|
|
1472
1472
|
*/
|
|
1473
1473
|
WorkflowDetails?: WorkflowDetails;
|
|
1474
1474
|
}
|
|
@@ -1555,7 +1555,7 @@ declare namespace Transfer {
|
|
|
1555
1555
|
}
|
|
1556
1556
|
export type EfsFileSystemId = string;
|
|
1557
1557
|
export type EfsPath = string;
|
|
1558
|
-
export type EncryptionAlg = "AES128_CBC"|"AES192_CBC"|"AES256_CBC"|string;
|
|
1558
|
+
export type EncryptionAlg = "AES128_CBC"|"AES192_CBC"|"AES256_CBC"|"NONE"|string;
|
|
1559
1559
|
export interface EndpointDetails {
|
|
1560
1560
|
/**
|
|
1561
1561
|
* A list of address allocation IDs that are required to attach an Elastic IP address to your server's endpoint. This property can only be set when EndpointType is set to VPC and it is only valid in the UpdateServer API.
|
|
@@ -2821,7 +2821,7 @@ declare namespace Transfer {
|
|
|
2821
2821
|
*/
|
|
2822
2822
|
ServerId: ServerId;
|
|
2823
2823
|
/**
|
|
2824
|
-
* Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow. In
|
|
2824
|
+
* Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow. In addition to a workflow to execute when a file is uploaded completely, WorkflowDetails can also contain a workflow ID (and execution role) for a workflow to execute on partial upload. A partial upload occurs when a file is open when the session disconnects. To remove an associated workflow from a server, you can provide an empty OnUpload object, as in the following example. aws transfer update-server --server-id s-01234567890abcdef --workflow-details '{"OnUpload":[]}'
|
|
2825
2825
|
*/
|
|
2826
2826
|
WorkflowDetails?: WorkflowDetails;
|
|
2827
2827
|
}
|