@aws-sdk/client-sfn 3.300.0 → 3.301.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.
Files changed (27) hide show
  1. package/dist-types/commands/CreateActivityCommand.d.ts +3 -3
  2. package/dist-types/commands/CreateStateMachineCommand.d.ts +8 -8
  3. package/dist-types/commands/DeleteActivityCommand.d.ts +1 -1
  4. package/dist-types/commands/DeleteStateMachineCommand.d.ts +1 -1
  5. package/dist-types/commands/DescribeActivityCommand.d.ts +1 -1
  6. package/dist-types/commands/DescribeExecutionCommand.d.ts +1 -1
  7. package/dist-types/commands/DescribeMapRunCommand.d.ts +1 -1
  8. package/dist-types/commands/DescribeStateMachineCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeStateMachineForExecutionCommand.d.ts +1 -1
  10. package/dist-types/commands/GetActivityTaskCommand.d.ts +1 -1
  11. package/dist-types/commands/GetExecutionHistoryCommand.d.ts +1 -1
  12. package/dist-types/commands/ListActivitiesCommand.d.ts +1 -1
  13. package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
  14. package/dist-types/commands/ListMapRunsCommand.d.ts +1 -1
  15. package/dist-types/commands/ListStateMachinesCommand.d.ts +1 -1
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  17. package/dist-types/commands/SendTaskFailureCommand.d.ts +1 -1
  18. package/dist-types/commands/SendTaskHeartbeatCommand.d.ts +1 -1
  19. package/dist-types/commands/SendTaskSuccessCommand.d.ts +1 -1
  20. package/dist-types/commands/StartExecutionCommand.d.ts +1 -1
  21. package/dist-types/commands/StartSyncExecutionCommand.d.ts +1 -1
  22. package/dist-types/commands/StopExecutionCommand.d.ts +1 -1
  23. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  24. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  25. package/dist-types/commands/UpdateMapRunCommand.d.ts +1 -1
  26. package/dist-types/commands/UpdateStateMachineCommand.d.ts +6 -6
  27. package/package.json +3 -3
@@ -42,10 +42,10 @@ export interface CreateActivityCommandOutput extends CreateActivityOutput, __Met
42
42
  * import { SFNClient, CreateActivityCommand } from "@aws-sdk/client-sfn"; // ES Modules import
43
43
  * // const { SFNClient, CreateActivityCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
44
44
  * const client = new SFNClient(config);
45
- * const input = {
45
+ * const input = { // CreateActivityInput
46
46
  * name: "STRING_VALUE", // required
47
- * tags: [
48
- * {
47
+ * tags: [ // TagList
48
+ * { // Tag
49
49
  * key: "STRING_VALUE",
50
50
  * value: "STRING_VALUE",
51
51
  * },
@@ -45,29 +45,29 @@ export interface CreateStateMachineCommandOutput extends CreateStateMachineOutpu
45
45
  * import { SFNClient, CreateStateMachineCommand } from "@aws-sdk/client-sfn"; // ES Modules import
46
46
  * // const { SFNClient, CreateStateMachineCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
47
47
  * const client = new SFNClient(config);
48
- * const input = {
48
+ * const input = { // CreateStateMachineInput
49
49
  * name: "STRING_VALUE", // required
50
50
  * definition: "STRING_VALUE", // required
51
51
  * roleArn: "STRING_VALUE", // required
52
52
  * type: "STANDARD" || "EXPRESS",
53
- * loggingConfiguration: {
53
+ * loggingConfiguration: { // LoggingConfiguration
54
54
  * level: "ALL" || "ERROR" || "FATAL" || "OFF",
55
55
  * includeExecutionData: true || false,
56
- * destinations: [
57
- * {
58
- * cloudWatchLogsLogGroup: {
56
+ * destinations: [ // LogDestinationList
57
+ * { // LogDestination
58
+ * cloudWatchLogsLogGroup: { // CloudWatchLogsLogGroup
59
59
  * logGroupArn: "STRING_VALUE",
60
60
  * },
61
61
  * },
62
62
  * ],
63
63
  * },
64
- * tags: [
65
- * {
64
+ * tags: [ // TagList
65
+ * { // Tag
66
66
  * key: "STRING_VALUE",
67
67
  * value: "STRING_VALUE",
68
68
  * },
69
69
  * ],
70
- * tracingConfiguration: {
70
+ * tracingConfiguration: { // TracingConfiguration
71
71
  * enabled: true || false,
72
72
  * },
73
73
  * };
@@ -26,7 +26,7 @@ export interface DeleteActivityCommandOutput extends DeleteActivityOutput, __Met
26
26
  * import { SFNClient, DeleteActivityCommand } from "@aws-sdk/client-sfn"; // ES Modules import
27
27
  * // const { SFNClient, DeleteActivityCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
28
28
  * const client = new SFNClient(config);
29
- * const input = {
29
+ * const input = { // DeleteActivityInput
30
30
  * activityArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteActivityCommand(input);
@@ -37,7 +37,7 @@ export interface DeleteStateMachineCommandOutput extends DeleteStateMachineOutpu
37
37
  * import { SFNClient, DeleteStateMachineCommand } from "@aws-sdk/client-sfn"; // ES Modules import
38
38
  * // const { SFNClient, DeleteStateMachineCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
39
39
  * const client = new SFNClient(config);
40
- * const input = {
40
+ * const input = { // DeleteStateMachineInput
41
41
  * stateMachineArn: "STRING_VALUE", // required
42
42
  * };
43
43
  * const command = new DeleteStateMachineCommand(input);
@@ -29,7 +29,7 @@ export interface DescribeActivityCommandOutput extends DescribeActivityOutput, _
29
29
  * import { SFNClient, DescribeActivityCommand } from "@aws-sdk/client-sfn"; // ES Modules import
30
30
  * // const { SFNClient, DescribeActivityCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
31
31
  * const client = new SFNClient(config);
32
- * const input = {
32
+ * const input = { // DescribeActivityInput
33
33
  * activityArn: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new DescribeActivityCommand(input);
@@ -30,7 +30,7 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput,
30
30
  * import { SFNClient, DescribeExecutionCommand } from "@aws-sdk/client-sfn"; // ES Modules import
31
31
  * // const { SFNClient, DescribeExecutionCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
32
32
  * const client = new SFNClient(config);
33
- * const input = {
33
+ * const input = { // DescribeExecutionInput
34
34
  * executionArn: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DescribeExecutionCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeMapRunCommandOutput extends DescribeMapRunOutput, __Met
26
26
  * import { SFNClient, DescribeMapRunCommand } from "@aws-sdk/client-sfn"; // ES Modules import
27
27
  * // const { SFNClient, DescribeMapRunCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
28
28
  * const client = new SFNClient(config);
29
- * const input = {
29
+ * const input = { // DescribeMapRunInput
30
30
  * mapRunArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeMapRunCommand(input);
@@ -32,7 +32,7 @@ export interface DescribeStateMachineCommandOutput extends DescribeStateMachineO
32
32
  * import { SFNClient, DescribeStateMachineCommand } from "@aws-sdk/client-sfn"; // ES Modules import
33
33
  * // const { SFNClient, DescribeStateMachineCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
34
34
  * const client = new SFNClient(config);
35
- * const input = {
35
+ * const input = { // DescribeStateMachineInput
36
36
  * stateMachineArn: "STRING_VALUE", // required
37
37
  * };
38
38
  * const command = new DescribeStateMachineCommand(input);
@@ -30,7 +30,7 @@ export interface DescribeStateMachineForExecutionCommandOutput extends DescribeS
30
30
  * import { SFNClient, DescribeStateMachineForExecutionCommand } from "@aws-sdk/client-sfn"; // ES Modules import
31
31
  * // const { SFNClient, DescribeStateMachineForExecutionCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
32
32
  * const client = new SFNClient(config);
33
- * const input = {
33
+ * const input = { // DescribeStateMachineForExecutionInput
34
34
  * executionArn: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DescribeStateMachineForExecutionCommand(input);
@@ -43,7 +43,7 @@ export interface GetActivityTaskCommandOutput extends GetActivityTaskOutput, __M
43
43
  * import { SFNClient, GetActivityTaskCommand } from "@aws-sdk/client-sfn"; // ES Modules import
44
44
  * // const { SFNClient, GetActivityTaskCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
45
45
  * const client = new SFNClient(config);
46
- * const input = {
46
+ * const input = { // GetActivityTaskInput
47
47
  * activityArn: "STRING_VALUE", // required
48
48
  * workerName: "STRING_VALUE",
49
49
  * };
@@ -31,7 +31,7 @@ export interface GetExecutionHistoryCommandOutput extends GetExecutionHistoryOut
31
31
  * import { SFNClient, GetExecutionHistoryCommand } from "@aws-sdk/client-sfn"; // ES Modules import
32
32
  * // const { SFNClient, GetExecutionHistoryCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
33
33
  * const client = new SFNClient(config);
34
- * const input = {
34
+ * const input = { // GetExecutionHistoryInput
35
35
  * executionArn: "STRING_VALUE", // required
36
36
  * maxResults: Number("int"),
37
37
  * reverseOrder: true || false,
@@ -31,7 +31,7 @@ export interface ListActivitiesCommandOutput extends ListActivitiesOutput, __Met
31
31
  * import { SFNClient, ListActivitiesCommand } from "@aws-sdk/client-sfn"; // ES Modules import
32
32
  * // const { SFNClient, ListActivitiesCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
33
33
  * const client = new SFNClient(config);
34
- * const input = {
34
+ * const input = { // ListActivitiesInput
35
35
  * maxResults: Number("int"),
36
36
  * nextToken: "STRING_VALUE",
37
37
  * };
@@ -34,7 +34,7 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met
34
34
  * import { SFNClient, ListExecutionsCommand } from "@aws-sdk/client-sfn"; // ES Modules import
35
35
  * // const { SFNClient, ListExecutionsCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
36
36
  * const client = new SFNClient(config);
37
- * const input = {
37
+ * const input = { // ListExecutionsInput
38
38
  * stateMachineArn: "STRING_VALUE",
39
39
  * statusFilter: "RUNNING" || "SUCCEEDED" || "FAILED" || "TIMED_OUT" || "ABORTED",
40
40
  * maxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListMapRunsCommandOutput extends ListMapRunsOutput, __MetadataB
26
26
  * import { SFNClient, ListMapRunsCommand } from "@aws-sdk/client-sfn"; // ES Modules import
27
27
  * // const { SFNClient, ListMapRunsCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
28
28
  * const client = new SFNClient(config);
29
- * const input = {
29
+ * const input = { // ListMapRunsInput
30
30
  * executionArn: "STRING_VALUE", // required
31
31
  * maxResults: Number("int"),
32
32
  * nextToken: "STRING_VALUE",
@@ -31,7 +31,7 @@ export interface ListStateMachinesCommandOutput extends ListStateMachinesOutput,
31
31
  * import { SFNClient, ListStateMachinesCommand } from "@aws-sdk/client-sfn"; // ES Modules import
32
32
  * // const { SFNClient, ListStateMachinesCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
33
33
  * const client = new SFNClient(config);
34
- * const input = {
34
+ * const input = { // ListStateMachinesInput
35
35
  * maxResults: Number("int"),
36
36
  * nextToken: "STRING_VALUE",
37
37
  * };
@@ -27,7 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
27
27
  * import { SFNClient, ListTagsForResourceCommand } from "@aws-sdk/client-sfn"; // ES Modules import
28
28
  * // const { SFNClient, ListTagsForResourceCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
29
29
  * const client = new SFNClient(config);
30
- * const input = {
30
+ * const input = { // ListTagsForResourceInput
31
31
  * resourceArn: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new ListTagsForResourceCommand(input);
@@ -27,7 +27,7 @@ export interface SendTaskFailureCommandOutput extends SendTaskFailureOutput, __M
27
27
  * import { SFNClient, SendTaskFailureCommand } from "@aws-sdk/client-sfn"; // ES Modules import
28
28
  * // const { SFNClient, SendTaskFailureCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
29
29
  * const client = new SFNClient(config);
30
- * const input = {
30
+ * const input = { // SendTaskFailureInput
31
31
  * taskToken: "STRING_VALUE", // required
32
32
  * error: "STRING_VALUE",
33
33
  * cause: "STRING_VALUE",
@@ -40,7 +40,7 @@ export interface SendTaskHeartbeatCommandOutput extends SendTaskHeartbeatOutput,
40
40
  * import { SFNClient, SendTaskHeartbeatCommand } from "@aws-sdk/client-sfn"; // ES Modules import
41
41
  * // const { SFNClient, SendTaskHeartbeatCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
42
42
  * const client = new SFNClient(config);
43
- * const input = {
43
+ * const input = { // SendTaskHeartbeatInput
44
44
  * taskToken: "STRING_VALUE", // required
45
45
  * };
46
46
  * const command = new SendTaskHeartbeatCommand(input);
@@ -28,7 +28,7 @@ export interface SendTaskSuccessCommandOutput extends SendTaskSuccessOutput, __M
28
28
  * import { SFNClient, SendTaskSuccessCommand } from "@aws-sdk/client-sfn"; // ES Modules import
29
29
  * // const { SFNClient, SendTaskSuccessCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
30
30
  * const client = new SFNClient(config);
31
- * const input = {
31
+ * const input = { // SendTaskSuccessInput
32
32
  * taskToken: "STRING_VALUE", // required
33
33
  * output: "STRING_VALUE", // required
34
34
  * };
@@ -39,7 +39,7 @@ export interface StartExecutionCommandOutput extends StartExecutionOutput, __Met
39
39
  * import { SFNClient, StartExecutionCommand } from "@aws-sdk/client-sfn"; // ES Modules import
40
40
  * // const { SFNClient, StartExecutionCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
41
41
  * const client = new SFNClient(config);
42
- * const input = {
42
+ * const input = { // StartExecutionInput
43
43
  * stateMachineArn: "STRING_VALUE", // required
44
44
  * name: "STRING_VALUE",
45
45
  * input: "STRING_VALUE",
@@ -38,7 +38,7 @@ export interface StartSyncExecutionCommandOutput extends StartSyncExecutionOutpu
38
38
  * import { SFNClient, StartSyncExecutionCommand } from "@aws-sdk/client-sfn"; // ES Modules import
39
39
  * // const { SFNClient, StartSyncExecutionCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
40
40
  * const client = new SFNClient(config);
41
- * const input = {
41
+ * const input = { // StartSyncExecutionInput
42
42
  * stateMachineArn: "STRING_VALUE", // required
43
43
  * name: "STRING_VALUE",
44
44
  * input: "STRING_VALUE",
@@ -27,7 +27,7 @@ export interface StopExecutionCommandOutput extends StopExecutionOutput, __Metad
27
27
  * import { SFNClient, StopExecutionCommand } from "@aws-sdk/client-sfn"; // ES Modules import
28
28
  * // const { SFNClient, StopExecutionCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
29
29
  * const client = new SFNClient(config);
30
- * const input = {
30
+ * const input = { // StopExecutionInput
31
31
  * executionArn: "STRING_VALUE", // required
32
32
  * error: "STRING_VALUE",
33
33
  * cause: "STRING_VALUE",
@@ -31,10 +31,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
31
31
  * import { SFNClient, TagResourceCommand } from "@aws-sdk/client-sfn"; // ES Modules import
32
32
  * // const { SFNClient, TagResourceCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
33
33
  * const client = new SFNClient(config);
34
- * const input = {
34
+ * const input = { // TagResourceInput
35
35
  * resourceArn: "STRING_VALUE", // required
36
- * tags: [ // required
37
- * {
36
+ * tags: [ // TagList // required
37
+ * { // Tag
38
38
  * key: "STRING_VALUE",
39
39
  * value: "STRING_VALUE",
40
40
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
26
26
  * import { SFNClient, UntagResourceCommand } from "@aws-sdk/client-sfn"; // ES Modules import
27
27
  * // const { SFNClient, UntagResourceCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
28
28
  * const client = new SFNClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceInput
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,7 +26,7 @@ export interface UpdateMapRunCommandOutput extends UpdateMapRunOutput, __Metadat
26
26
  * import { SFNClient, UpdateMapRunCommand } from "@aws-sdk/client-sfn"; // ES Modules import
27
27
  * // const { SFNClient, UpdateMapRunCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
28
28
  * const client = new SFNClient(config);
29
- * const input = {
29
+ * const input = { // UpdateMapRunInput
30
30
  * mapRunArn: "STRING_VALUE", // required
31
31
  * maxConcurrency: Number("int"),
32
32
  * toleratedFailurePercentage: Number("float"),
@@ -41,22 +41,22 @@ export interface UpdateStateMachineCommandOutput extends UpdateStateMachineOutpu
41
41
  * import { SFNClient, UpdateStateMachineCommand } from "@aws-sdk/client-sfn"; // ES Modules import
42
42
  * // const { SFNClient, UpdateStateMachineCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
43
43
  * const client = new SFNClient(config);
44
- * const input = {
44
+ * const input = { // UpdateStateMachineInput
45
45
  * stateMachineArn: "STRING_VALUE", // required
46
46
  * definition: "STRING_VALUE",
47
47
  * roleArn: "STRING_VALUE",
48
- * loggingConfiguration: {
48
+ * loggingConfiguration: { // LoggingConfiguration
49
49
  * level: "ALL" || "ERROR" || "FATAL" || "OFF",
50
50
  * includeExecutionData: true || false,
51
- * destinations: [
52
- * {
53
- * cloudWatchLogsLogGroup: {
51
+ * destinations: [ // LogDestinationList
52
+ * { // LogDestination
53
+ * cloudWatchLogsLogGroup: { // CloudWatchLogsLogGroup
54
54
  * logGroupArn: "STRING_VALUE",
55
55
  * },
56
56
  * },
57
57
  * ],
58
58
  * },
59
- * tracingConfiguration: {
59
+ * tracingConfiguration: { // TracingConfiguration
60
60
  * enabled: true || false,
61
61
  * },
62
62
  * };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sfn",
3
3
  "description": "AWS SDK for JavaScript Sfn Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",