@aws-sdk/client-sfn 3.1125.0 → 3.1126.0
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/dist-cjs/index.js +1 -1
- package/dist-types/commands/GetActivityTaskCommand.d.ts +0 -3
- package/dist-types/commands/ListExecutionsCommand.d.ts +2 -3
- package/dist-types/commands/StartExecutionCommand.d.ts +1 -1
- package/dist-types/commands/StartSyncExecutionCommand.d.ts +0 -3
- package/dist-types/models/models_0.d.ts +5 -5
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -30,9 +30,6 @@ declare const GetActivityTaskCommand_base: {
|
|
|
30
30
|
* an execution of a task of this type is needed.) The maximum time the service holds on to the
|
|
31
31
|
* request before responding is 60 seconds. If no task is available within 60 seconds, the poll
|
|
32
32
|
* returns a <code>taskToken</code> with a null string.</p>
|
|
33
|
-
* <note>
|
|
34
|
-
* <p>This API action isn't logged in CloudTrail.</p>
|
|
35
|
-
* </note>
|
|
36
33
|
* <important>
|
|
37
34
|
* <p>Workers should set their client side socket timeout to at least 65 seconds (5 seconds
|
|
38
35
|
* higher than the maximum time the service may hold the poll request).</p>
|
|
@@ -26,14 +26,13 @@ declare const ListExecutionsCommand_base: {
|
|
|
26
26
|
/**
|
|
27
27
|
* <p>Lists all executions of a state machine or a Map Run. You can list all executions related to a state machine by specifying a state machine Amazon Resource Name (ARN), or those related to a Map Run by specifying a Map Run ARN. Using this API action, you can also list all <a href="https://docs.aws.amazon.com/step-functions/latest/dg/redrive-executions.html">redriven</a> executions.</p>
|
|
28
28
|
* <p>You can also provide a state machine <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-state-machine-alias.html">alias</a> ARN or <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-state-machine-version.html">version</a> ARN to list the executions associated with a specific alias or version.</p>
|
|
29
|
-
* <p>Results are
|
|
30
|
-
* sorted by time, with the most recent execution first.</p>
|
|
29
|
+
* <p>Results are sorted by time, with the most recent execution first. Running executions are sorted by their <code>startDate</code> or <code>redriveDate</code>, and other executions are sorted by their <code>stopDate</code>.</p>
|
|
31
30
|
* <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
32
31
|
* Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
|
|
33
32
|
* <note>
|
|
34
33
|
* <p>This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.</p>
|
|
35
34
|
* </note>
|
|
36
|
-
* <p>This API action is not supported by <code>EXPRESS</code> state machines.</p>
|
|
35
|
+
* <p>This API action is not supported by <code>EXPRESS</code> state machines. However, you may list <code>EXPRESS</code> children started by a map run using the <code>mapRunArn</code> parameter.</p>
|
|
37
36
|
* @example
|
|
38
37
|
* Use a bare-bones client and the command you need to make an API call.
|
|
39
38
|
* ```javascript
|
|
@@ -62,7 +62,7 @@ declare const StartExecutionCommand_base: {
|
|
|
62
62
|
* <code>STANDARD</code> workflow, if you call <code>StartExecution</code> with the same name
|
|
63
63
|
* and input as a running execution, the call succeeds and return the same response as the
|
|
64
64
|
* original request. If the execution is closed or if the input is different, it returns a
|
|
65
|
-
* <code>400 ExecutionAlreadyExists</code> error. You can reuse
|
|
65
|
+
* <code>400 ExecutionAlreadyExists</code> error. You can reuse the name 90 days after it closes. </p>
|
|
66
66
|
* <p>
|
|
67
67
|
* <code>StartExecution</code> isn't idempotent for <code>EXPRESS</code> workflows. </p>
|
|
68
68
|
* </note>
|
|
@@ -34,9 +34,6 @@ declare const StartSyncExecutionCommand_base: {
|
|
|
34
34
|
* as permissions errors, limit errors, or issues with your state machine code and
|
|
35
35
|
* configuration. </p>
|
|
36
36
|
* </note>
|
|
37
|
-
* <note>
|
|
38
|
-
* <p>This API action isn't logged in CloudTrail.</p>
|
|
39
|
-
* </note>
|
|
40
37
|
* @example
|
|
41
38
|
* Use a bare-bones client and the command you need to make an API call.
|
|
42
39
|
* ```javascript
|
|
@@ -237,9 +237,7 @@ export interface Tag {
|
|
|
237
237
|
*/
|
|
238
238
|
export interface CreateActivityInput {
|
|
239
239
|
/**
|
|
240
|
-
* <p>The name of the activity to create. This name must be unique for your Amazon Web Services account and region
|
|
241
|
-
* see <a href="https://docs.aws.amazon.com/step-functions/latest/dg/limits.html#service-limits-state-machine-executions">
|
|
242
|
-
* Limits Related to State Machine Executions</a> in the <i>Step Functions Developer Guide</i>.</p>
|
|
240
|
+
* <p>The name of the activity to create. This name must be unique for your Amazon Web Services account and region.</p>
|
|
243
241
|
* <p>A name must <i>not</i> contain:</p>
|
|
244
242
|
* <ul>
|
|
245
243
|
* <li>
|
|
@@ -2910,8 +2908,10 @@ export interface StartExecutionInput {
|
|
|
2910
2908
|
*/
|
|
2911
2909
|
stateMachineArn: string | undefined;
|
|
2912
2910
|
/**
|
|
2913
|
-
* <p>Optional name of the execution.
|
|
2914
|
-
*
|
|
2911
|
+
* <p>Optional name of the execution. For STANDARD workflows, this name must be unique for your Amazon Web Services account, region, and state machine.
|
|
2912
|
+
* If a previous execution with the same name exists, you can reuse the name 90 days after it closes. For EXPRESS workflows, execution names
|
|
2913
|
+
* can be reused immediately.
|
|
2914
|
+
* For more information, see <a href="https://docs.aws.amazon.com/step-functions/latest/dg/limits.html#service-limits-state-machine-executions">
|
|
2915
2915
|
* Limits Related to State Machine Executions</a> in the <i>Step Functions Developer Guide</i>.</p>
|
|
2916
2916
|
* <p>If you don't provide a name for the execution, Step Functions automatically generates a universally unique identifier (UUID) as the execution name.</p>
|
|
2917
2917
|
* <p>A name must <i>not</i> contain:</p>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sfn",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1126.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Sfn Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-sfn",
|
|
6
6
|
"license": "Apache-2.0",
|