@aws-sdk/client-swf 3.300.0 → 3.303.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 (42) hide show
  1. package/dist-cjs/models/models_0.js +200 -226
  2. package/dist-es/models/models_0.js +200 -226
  3. package/dist-types/commands/CountClosedWorkflowExecutionsCommand.d.ts +6 -6
  4. package/dist-types/commands/CountOpenWorkflowExecutionsCommand.d.ts +5 -5
  5. package/dist-types/commands/CountPendingActivityTasksCommand.d.ts +2 -2
  6. package/dist-types/commands/CountPendingDecisionTasksCommand.d.ts +2 -2
  7. package/dist-types/commands/DeprecateActivityTypeCommand.d.ts +2 -2
  8. package/dist-types/commands/DeprecateDomainCommand.d.ts +1 -1
  9. package/dist-types/commands/DeprecateWorkflowTypeCommand.d.ts +2 -2
  10. package/dist-types/commands/DescribeActivityTypeCommand.d.ts +2 -2
  11. package/dist-types/commands/DescribeDomainCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeWorkflowExecutionCommand.d.ts +2 -2
  13. package/dist-types/commands/DescribeWorkflowTypeCommand.d.ts +2 -2
  14. package/dist-types/commands/GetWorkflowExecutionHistoryCommand.d.ts +2 -2
  15. package/dist-types/commands/ListActivityTypesCommand.d.ts +1 -1
  16. package/dist-types/commands/ListClosedWorkflowExecutionsCommand.d.ts +6 -6
  17. package/dist-types/commands/ListDomainsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListOpenWorkflowExecutionsCommand.d.ts +5 -5
  19. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  20. package/dist-types/commands/ListWorkflowTypesCommand.d.ts +1 -1
  21. package/dist-types/commands/PollForActivityTaskCommand.d.ts +2 -2
  22. package/dist-types/commands/PollForDecisionTaskCommand.d.ts +2 -2
  23. package/dist-types/commands/RecordActivityTaskHeartbeatCommand.d.ts +1 -1
  24. package/dist-types/commands/RegisterActivityTypeCommand.d.ts +2 -2
  25. package/dist-types/commands/RegisterDomainCommand.d.ts +3 -3
  26. package/dist-types/commands/RegisterWorkflowTypeCommand.d.ts +2 -2
  27. package/dist-types/commands/RequestCancelWorkflowExecutionCommand.d.ts +1 -1
  28. package/dist-types/commands/RespondActivityTaskCanceledCommand.d.ts +1 -1
  29. package/dist-types/commands/RespondActivityTaskCompletedCommand.d.ts +1 -1
  30. package/dist-types/commands/RespondActivityTaskFailedCommand.d.ts +1 -1
  31. package/dist-types/commands/RespondDecisionTaskCompletedCommand.d.ts +20 -20
  32. package/dist-types/commands/SignalWorkflowExecutionCommand.d.ts +1 -1
  33. package/dist-types/commands/StartWorkflowExecutionCommand.d.ts +4 -4
  34. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  35. package/dist-types/commands/TerminateWorkflowExecutionCommand.d.ts +1 -1
  36. package/dist-types/commands/UndeprecateActivityTypeCommand.d.ts +2 -2
  37. package/dist-types/commands/UndeprecateDomainCommand.d.ts +1 -1
  38. package/dist-types/commands/UndeprecateWorkflowTypeCommand.d.ts +2 -2
  39. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  40. package/dist-types/models/models_0.d.ts +331 -201
  41. package/dist-types/ts3.4/models/models_0.d.ts +248 -200
  42. package/package.json +34 -34
@@ -54,9 +54,9 @@ export interface DescribeWorkflowExecutionCommandOutput extends WorkflowExecutio
54
54
  * import { SWFClient, DescribeWorkflowExecutionCommand } from "@aws-sdk/client-swf"; // ES Modules import
55
55
  * // const { SWFClient, DescribeWorkflowExecutionCommand } = require("@aws-sdk/client-swf"); // CommonJS import
56
56
  * const client = new SWFClient(config);
57
- * const input = {
57
+ * const input = { // DescribeWorkflowExecutionInput
58
58
  * domain: "STRING_VALUE", // required
59
- * execution: {
59
+ * execution: { // WorkflowExecution
60
60
  * workflowId: "STRING_VALUE", // required
61
61
  * runId: "STRING_VALUE", // required
62
62
  * },
@@ -64,9 +64,9 @@ export interface DescribeWorkflowTypeCommandOutput extends WorkflowTypeDetail, _
64
64
  * import { SWFClient, DescribeWorkflowTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
65
65
  * // const { SWFClient, DescribeWorkflowTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
66
66
  * const client = new SWFClient(config);
67
- * const input = {
67
+ * const input = { // DescribeWorkflowTypeInput
68
68
  * domain: "STRING_VALUE", // required
69
- * workflowType: {
69
+ * workflowType: { // WorkflowType
70
70
  * name: "STRING_VALUE", // required
71
71
  * version: "STRING_VALUE", // required
72
72
  * },
@@ -55,9 +55,9 @@ export interface GetWorkflowExecutionHistoryCommandOutput extends History, __Met
55
55
  * import { SWFClient, GetWorkflowExecutionHistoryCommand } from "@aws-sdk/client-swf"; // ES Modules import
56
56
  * // const { SWFClient, GetWorkflowExecutionHistoryCommand } = require("@aws-sdk/client-swf"); // CommonJS import
57
57
  * const client = new SWFClient(config);
58
- * const input = {
58
+ * const input = { // GetWorkflowExecutionHistoryInput
59
59
  * domain: "STRING_VALUE", // required
60
- * execution: {
60
+ * execution: { // WorkflowExecution
61
61
  * workflowId: "STRING_VALUE", // required
62
62
  * runId: "STRING_VALUE", // required
63
63
  * },
@@ -53,7 +53,7 @@ export interface ListActivityTypesCommandOutput extends ActivityTypeInfos, __Met
53
53
  * import { SWFClient, ListActivityTypesCommand } from "@aws-sdk/client-swf"; // ES Modules import
54
54
  * // const { SWFClient, ListActivityTypesCommand } = require("@aws-sdk/client-swf"); // CommonJS import
55
55
  * const client = new SWFClient(config);
56
- * const input = {
56
+ * const input = { // ListActivityTypesInput
57
57
  * domain: "STRING_VALUE", // required
58
58
  * name: "STRING_VALUE",
59
59
  * registrationStatus: "REGISTERED" || "DEPRECATED", // required
@@ -73,9 +73,9 @@ export interface ListClosedWorkflowExecutionsCommandOutput extends WorkflowExecu
73
73
  * import { SWFClient, ListClosedWorkflowExecutionsCommand } from "@aws-sdk/client-swf"; // ES Modules import
74
74
  * // const { SWFClient, ListClosedWorkflowExecutionsCommand } = require("@aws-sdk/client-swf"); // CommonJS import
75
75
  * const client = new SWFClient(config);
76
- * const input = {
76
+ * const input = { // ListClosedWorkflowExecutionsInput
77
77
  * domain: "STRING_VALUE", // required
78
- * startTimeFilter: {
78
+ * startTimeFilter: { // ExecutionTimeFilter
79
79
  * oldestDate: new Date("TIMESTAMP"), // required
80
80
  * latestDate: new Date("TIMESTAMP"),
81
81
  * },
@@ -83,17 +83,17 @@ export interface ListClosedWorkflowExecutionsCommandOutput extends WorkflowExecu
83
83
  * oldestDate: new Date("TIMESTAMP"), // required
84
84
  * latestDate: new Date("TIMESTAMP"),
85
85
  * },
86
- * executionFilter: {
86
+ * executionFilter: { // WorkflowExecutionFilter
87
87
  * workflowId: "STRING_VALUE", // required
88
88
  * },
89
- * closeStatusFilter: {
89
+ * closeStatusFilter: { // CloseStatusFilter
90
90
  * status: "COMPLETED" || "FAILED" || "CANCELED" || "TERMINATED" || "CONTINUED_AS_NEW" || "TIMED_OUT", // required
91
91
  * },
92
- * typeFilter: {
92
+ * typeFilter: { // WorkflowTypeFilter
93
93
  * name: "STRING_VALUE", // required
94
94
  * version: "STRING_VALUE",
95
95
  * },
96
- * tagFilter: {
96
+ * tagFilter: { // TagFilter
97
97
  * tag: "STRING_VALUE", // required
98
98
  * },
99
99
  * nextPageToken: "STRING_VALUE",
@@ -57,7 +57,7 @@ export interface ListDomainsCommandOutput extends DomainInfos, __MetadataBearer
57
57
  * import { SWFClient, ListDomainsCommand } from "@aws-sdk/client-swf"; // ES Modules import
58
58
  * // const { SWFClient, ListDomainsCommand } = require("@aws-sdk/client-swf"); // CommonJS import
59
59
  * const client = new SWFClient(config);
60
- * const input = {
60
+ * const input = { // ListDomainsInput
61
61
  * nextPageToken: "STRING_VALUE",
62
62
  * registrationStatus: "REGISTERED" || "DEPRECATED", // required
63
63
  * maximumPageSize: Number("int"),
@@ -73,23 +73,23 @@ export interface ListOpenWorkflowExecutionsCommandOutput extends WorkflowExecuti
73
73
  * import { SWFClient, ListOpenWorkflowExecutionsCommand } from "@aws-sdk/client-swf"; // ES Modules import
74
74
  * // const { SWFClient, ListOpenWorkflowExecutionsCommand } = require("@aws-sdk/client-swf"); // CommonJS import
75
75
  * const client = new SWFClient(config);
76
- * const input = {
76
+ * const input = { // ListOpenWorkflowExecutionsInput
77
77
  * domain: "STRING_VALUE", // required
78
- * startTimeFilter: {
78
+ * startTimeFilter: { // ExecutionTimeFilter
79
79
  * oldestDate: new Date("TIMESTAMP"), // required
80
80
  * latestDate: new Date("TIMESTAMP"),
81
81
  * },
82
- * typeFilter: {
82
+ * typeFilter: { // WorkflowTypeFilter
83
83
  * name: "STRING_VALUE", // required
84
84
  * version: "STRING_VALUE",
85
85
  * },
86
- * tagFilter: {
86
+ * tagFilter: { // TagFilter
87
87
  * tag: "STRING_VALUE", // required
88
88
  * },
89
89
  * nextPageToken: "STRING_VALUE",
90
90
  * maximumPageSize: Number("int"),
91
91
  * reverseOrder: true || false,
92
- * executionFilter: {
92
+ * executionFilter: { // WorkflowExecutionFilter
93
93
  * workflowId: "STRING_VALUE", // required
94
94
  * },
95
95
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
26
26
  * import { SWFClient, ListTagsForResourceCommand } from "@aws-sdk/client-swf"; // ES Modules import
27
27
  * // const { SWFClient, ListTagsForResourceCommand } = require("@aws-sdk/client-swf"); // CommonJS import
28
28
  * const client = new SWFClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceInput
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -50,7 +50,7 @@ export interface ListWorkflowTypesCommandOutput extends WorkflowTypeInfos, __Met
50
50
  * import { SWFClient, ListWorkflowTypesCommand } from "@aws-sdk/client-swf"; // ES Modules import
51
51
  * // const { SWFClient, ListWorkflowTypesCommand } = require("@aws-sdk/client-swf"); // CommonJS import
52
52
  * const client = new SWFClient(config);
53
- * const input = {
53
+ * const input = { // ListWorkflowTypesInput
54
54
  * domain: "STRING_VALUE", // required
55
55
  * name: "STRING_VALUE",
56
56
  * registrationStatus: "REGISTERED" || "DEPRECATED", // required
@@ -61,9 +61,9 @@ export interface PollForActivityTaskCommandOutput extends ActivityTask, __Metada
61
61
  * import { SWFClient, PollForActivityTaskCommand } from "@aws-sdk/client-swf"; // ES Modules import
62
62
  * // const { SWFClient, PollForActivityTaskCommand } = require("@aws-sdk/client-swf"); // CommonJS import
63
63
  * const client = new SWFClient(config);
64
- * const input = {
64
+ * const input = { // PollForActivityTaskInput
65
65
  * domain: "STRING_VALUE", // required
66
- * taskList: {
66
+ * taskList: { // TaskList
67
67
  * name: "STRING_VALUE", // required
68
68
  * },
69
69
  * identity: "STRING_VALUE",
@@ -73,9 +73,9 @@ export interface PollForDecisionTaskCommandOutput extends DecisionTask, __Metada
73
73
  * import { SWFClient, PollForDecisionTaskCommand } from "@aws-sdk/client-swf"; // ES Modules import
74
74
  * // const { SWFClient, PollForDecisionTaskCommand } = require("@aws-sdk/client-swf"); // CommonJS import
75
75
  * const client = new SWFClient(config);
76
- * const input = {
76
+ * const input = { // PollForDecisionTaskInput
77
77
  * domain: "STRING_VALUE", // required
78
- * taskList: {
78
+ * taskList: { // TaskList
79
79
  * name: "STRING_VALUE", // required
80
80
  * },
81
81
  * identity: "STRING_VALUE",
@@ -73,7 +73,7 @@ export interface RecordActivityTaskHeartbeatCommandOutput extends ActivityTaskSt
73
73
  * import { SWFClient, RecordActivityTaskHeartbeatCommand } from "@aws-sdk/client-swf"; // ES Modules import
74
74
  * // const { SWFClient, RecordActivityTaskHeartbeatCommand } = require("@aws-sdk/client-swf"); // CommonJS import
75
75
  * const client = new SWFClient(config);
76
- * const input = {
76
+ * const input = { // RecordActivityTaskHeartbeatInput
77
77
  * taskToken: "STRING_VALUE", // required
78
78
  * details: "STRING_VALUE",
79
79
  * };
@@ -72,14 +72,14 @@ export interface RegisterActivityTypeCommandOutput extends __MetadataBearer {
72
72
  * import { SWFClient, RegisterActivityTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
73
73
  * // const { SWFClient, RegisterActivityTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
74
74
  * const client = new SWFClient(config);
75
- * const input = {
75
+ * const input = { // RegisterActivityTypeInput
76
76
  * domain: "STRING_VALUE", // required
77
77
  * name: "STRING_VALUE", // required
78
78
  * version: "STRING_VALUE", // required
79
79
  * description: "STRING_VALUE",
80
80
  * defaultTaskStartToCloseTimeout: "STRING_VALUE",
81
81
  * defaultTaskHeartbeatTimeout: "STRING_VALUE",
82
- * defaultTaskList: {
82
+ * defaultTaskList: { // TaskList
83
83
  * name: "STRING_VALUE", // required
84
84
  * },
85
85
  * defaultTaskPriority: "STRING_VALUE",
@@ -49,12 +49,12 @@ export interface RegisterDomainCommandOutput extends __MetadataBearer {
49
49
  * import { SWFClient, RegisterDomainCommand } from "@aws-sdk/client-swf"; // ES Modules import
50
50
  * // const { SWFClient, RegisterDomainCommand } = require("@aws-sdk/client-swf"); // CommonJS import
51
51
  * const client = new SWFClient(config);
52
- * const input = {
52
+ * const input = { // RegisterDomainInput
53
53
  * name: "STRING_VALUE", // required
54
54
  * description: "STRING_VALUE",
55
55
  * workflowExecutionRetentionPeriodInDays: "STRING_VALUE", // required
56
- * tags: [
57
- * {
56
+ * tags: [ // ResourceTagList
57
+ * { // ResourceTag
58
58
  * key: "STRING_VALUE", // required
59
59
  * value: "STRING_VALUE",
60
60
  * },
@@ -73,14 +73,14 @@ export interface RegisterWorkflowTypeCommandOutput extends __MetadataBearer {
73
73
  * import { SWFClient, RegisterWorkflowTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
74
74
  * // const { SWFClient, RegisterWorkflowTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
75
75
  * const client = new SWFClient(config);
76
- * const input = {
76
+ * const input = { // RegisterWorkflowTypeInput
77
77
  * domain: "STRING_VALUE", // required
78
78
  * name: "STRING_VALUE", // required
79
79
  * version: "STRING_VALUE", // required
80
80
  * description: "STRING_VALUE",
81
81
  * defaultTaskStartToCloseTimeout: "STRING_VALUE",
82
82
  * defaultExecutionStartToCloseTimeout: "STRING_VALUE",
83
- * defaultTaskList: {
83
+ * defaultTaskList: { // TaskList
84
84
  * name: "STRING_VALUE", // required
85
85
  * },
86
86
  * defaultTaskPriority: "STRING_VALUE",
@@ -64,7 +64,7 @@ export interface RequestCancelWorkflowExecutionCommandOutput extends __MetadataB
64
64
  * import { SWFClient, RequestCancelWorkflowExecutionCommand } from "@aws-sdk/client-swf"; // ES Modules import
65
65
  * // const { SWFClient, RequestCancelWorkflowExecutionCommand } = require("@aws-sdk/client-swf"); // CommonJS import
66
66
  * const client = new SWFClient(config);
67
- * const input = {
67
+ * const input = { // RequestCancelWorkflowExecutionInput
68
68
  * domain: "STRING_VALUE", // required
69
69
  * workflowId: "STRING_VALUE", // required
70
70
  * runId: "STRING_VALUE",
@@ -67,7 +67,7 @@ export interface RespondActivityTaskCanceledCommandOutput extends __MetadataBear
67
67
  * import { SWFClient, RespondActivityTaskCanceledCommand } from "@aws-sdk/client-swf"; // ES Modules import
68
68
  * // const { SWFClient, RespondActivityTaskCanceledCommand } = require("@aws-sdk/client-swf"); // CommonJS import
69
69
  * const client = new SWFClient(config);
70
- * const input = {
70
+ * const input = { // RespondActivityTaskCanceledInput
71
71
  * taskToken: "STRING_VALUE", // required
72
72
  * details: "STRING_VALUE",
73
73
  * };
@@ -65,7 +65,7 @@ export interface RespondActivityTaskCompletedCommandOutput extends __MetadataBea
65
65
  * import { SWFClient, RespondActivityTaskCompletedCommand } from "@aws-sdk/client-swf"; // ES Modules import
66
66
  * // const { SWFClient, RespondActivityTaskCompletedCommand } = require("@aws-sdk/client-swf"); // CommonJS import
67
67
  * const client = new SWFClient(config);
68
- * const input = {
68
+ * const input = { // RespondActivityTaskCompletedInput
69
69
  * taskToken: "STRING_VALUE", // required
70
70
  * result: "STRING_VALUE",
71
71
  * };
@@ -58,7 +58,7 @@ export interface RespondActivityTaskFailedCommandOutput extends __MetadataBearer
58
58
  * import { SWFClient, RespondActivityTaskFailedCommand } from "@aws-sdk/client-swf"; // ES Modules import
59
59
  * // const { SWFClient, RespondActivityTaskFailedCommand } = require("@aws-sdk/client-swf"); // CommonJS import
60
60
  * const client = new SWFClient(config);
61
- * const input = {
61
+ * const input = { // RespondActivityTaskFailedInput
62
62
  * taskToken: "STRING_VALUE", // required
63
63
  * reason: "STRING_VALUE",
64
64
  * details: "STRING_VALUE",
@@ -45,13 +45,13 @@ export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBea
45
45
  * import { SWFClient, RespondDecisionTaskCompletedCommand } from "@aws-sdk/client-swf"; // ES Modules import
46
46
  * // const { SWFClient, RespondDecisionTaskCompletedCommand } = require("@aws-sdk/client-swf"); // CommonJS import
47
47
  * const client = new SWFClient(config);
48
- * const input = {
48
+ * const input = { // RespondDecisionTaskCompletedInput
49
49
  * taskToken: "STRING_VALUE", // required
50
- * decisions: [
51
- * {
50
+ * decisions: [ // DecisionList
51
+ * { // Decision
52
52
  * decisionType: "ScheduleActivityTask" || "RequestCancelActivityTask" || "CompleteWorkflowExecution" || "FailWorkflowExecution" || "CancelWorkflowExecution" || "ContinueAsNewWorkflowExecution" || "RecordMarker" || "StartTimer" || "CancelTimer" || "SignalExternalWorkflowExecution" || "RequestCancelExternalWorkflowExecution" || "StartChildWorkflowExecution" || "ScheduleLambdaFunction", // required
53
- * scheduleActivityTaskDecisionAttributes: {
54
- * activityType: {
53
+ * scheduleActivityTaskDecisionAttributes: { // ScheduleActivityTaskDecisionAttributes
54
+ * activityType: { // ActivityType
55
55
  * name: "STRING_VALUE", // required
56
56
  * version: "STRING_VALUE", // required
57
57
  * },
@@ -59,7 +59,7 @@ export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBea
59
59
  * control: "STRING_VALUE",
60
60
  * input: "STRING_VALUE",
61
61
  * scheduleToCloseTimeout: "STRING_VALUE",
62
- * taskList: {
62
+ * taskList: { // TaskList
63
63
  * name: "STRING_VALUE", // required
64
64
  * },
65
65
  * taskPriority: "STRING_VALUE",
@@ -67,20 +67,20 @@ export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBea
67
67
  * startToCloseTimeout: "STRING_VALUE",
68
68
  * heartbeatTimeout: "STRING_VALUE",
69
69
  * },
70
- * requestCancelActivityTaskDecisionAttributes: {
70
+ * requestCancelActivityTaskDecisionAttributes: { // RequestCancelActivityTaskDecisionAttributes
71
71
  * activityId: "STRING_VALUE", // required
72
72
  * },
73
- * completeWorkflowExecutionDecisionAttributes: {
73
+ * completeWorkflowExecutionDecisionAttributes: { // CompleteWorkflowExecutionDecisionAttributes
74
74
  * result: "STRING_VALUE",
75
75
  * },
76
- * failWorkflowExecutionDecisionAttributes: {
76
+ * failWorkflowExecutionDecisionAttributes: { // FailWorkflowExecutionDecisionAttributes
77
77
  * reason: "STRING_VALUE",
78
78
  * details: "STRING_VALUE",
79
79
  * },
80
- * cancelWorkflowExecutionDecisionAttributes: {
80
+ * cancelWorkflowExecutionDecisionAttributes: { // CancelWorkflowExecutionDecisionAttributes
81
81
  * details: "STRING_VALUE",
82
82
  * },
83
- * continueAsNewWorkflowExecutionDecisionAttributes: {
83
+ * continueAsNewWorkflowExecutionDecisionAttributes: { // ContinueAsNewWorkflowExecutionDecisionAttributes
84
84
  * input: "STRING_VALUE",
85
85
  * executionStartToCloseTimeout: "STRING_VALUE",
86
86
  * taskList: {
@@ -89,38 +89,38 @@ export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBea
89
89
  * taskPriority: "STRING_VALUE",
90
90
  * taskStartToCloseTimeout: "STRING_VALUE",
91
91
  * childPolicy: "TERMINATE" || "REQUEST_CANCEL" || "ABANDON",
92
- * tagList: [
92
+ * tagList: [ // TagList
93
93
  * "STRING_VALUE",
94
94
  * ],
95
95
  * workflowTypeVersion: "STRING_VALUE",
96
96
  * lambdaRole: "STRING_VALUE",
97
97
  * },
98
- * recordMarkerDecisionAttributes: {
98
+ * recordMarkerDecisionAttributes: { // RecordMarkerDecisionAttributes
99
99
  * markerName: "STRING_VALUE", // required
100
100
  * details: "STRING_VALUE",
101
101
  * },
102
- * startTimerDecisionAttributes: {
102
+ * startTimerDecisionAttributes: { // StartTimerDecisionAttributes
103
103
  * timerId: "STRING_VALUE", // required
104
104
  * control: "STRING_VALUE",
105
105
  * startToFireTimeout: "STRING_VALUE", // required
106
106
  * },
107
- * cancelTimerDecisionAttributes: {
107
+ * cancelTimerDecisionAttributes: { // CancelTimerDecisionAttributes
108
108
  * timerId: "STRING_VALUE", // required
109
109
  * },
110
- * signalExternalWorkflowExecutionDecisionAttributes: {
110
+ * signalExternalWorkflowExecutionDecisionAttributes: { // SignalExternalWorkflowExecutionDecisionAttributes
111
111
  * workflowId: "STRING_VALUE", // required
112
112
  * runId: "STRING_VALUE",
113
113
  * signalName: "STRING_VALUE", // required
114
114
  * input: "STRING_VALUE",
115
115
  * control: "STRING_VALUE",
116
116
  * },
117
- * requestCancelExternalWorkflowExecutionDecisionAttributes: {
117
+ * requestCancelExternalWorkflowExecutionDecisionAttributes: { // RequestCancelExternalWorkflowExecutionDecisionAttributes
118
118
  * workflowId: "STRING_VALUE", // required
119
119
  * runId: "STRING_VALUE",
120
120
  * control: "STRING_VALUE",
121
121
  * },
122
- * startChildWorkflowExecutionDecisionAttributes: {
123
- * workflowType: {
122
+ * startChildWorkflowExecutionDecisionAttributes: { // StartChildWorkflowExecutionDecisionAttributes
123
+ * workflowType: { // WorkflowType
124
124
  * name: "STRING_VALUE", // required
125
125
  * version: "STRING_VALUE", // required
126
126
  * },
@@ -139,7 +139,7 @@ export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBea
139
139
  * ],
140
140
  * lambdaRole: "STRING_VALUE",
141
141
  * },
142
- * scheduleLambdaFunctionDecisionAttributes: {
142
+ * scheduleLambdaFunctionDecisionAttributes: { // ScheduleLambdaFunctionDecisionAttributes
143
143
  * id: "STRING_VALUE", // required
144
144
  * name: "STRING_VALUE", // required
145
145
  * control: "STRING_VALUE",
@@ -64,7 +64,7 @@ export interface SignalWorkflowExecutionCommandOutput extends __MetadataBearer {
64
64
  * import { SWFClient, SignalWorkflowExecutionCommand } from "@aws-sdk/client-swf"; // ES Modules import
65
65
  * // const { SWFClient, SignalWorkflowExecutionCommand } = require("@aws-sdk/client-swf"); // CommonJS import
66
66
  * const client = new SWFClient(config);
67
- * const input = {
67
+ * const input = { // SignalWorkflowExecutionInput
68
68
  * domain: "STRING_VALUE", // required
69
69
  * workflowId: "STRING_VALUE", // required
70
70
  * runId: "STRING_VALUE",
@@ -91,20 +91,20 @@ export interface StartWorkflowExecutionCommandOutput extends Run, __MetadataBear
91
91
  * import { SWFClient, StartWorkflowExecutionCommand } from "@aws-sdk/client-swf"; // ES Modules import
92
92
  * // const { SWFClient, StartWorkflowExecutionCommand } = require("@aws-sdk/client-swf"); // CommonJS import
93
93
  * const client = new SWFClient(config);
94
- * const input = {
94
+ * const input = { // StartWorkflowExecutionInput
95
95
  * domain: "STRING_VALUE", // required
96
96
  * workflowId: "STRING_VALUE", // required
97
- * workflowType: {
97
+ * workflowType: { // WorkflowType
98
98
  * name: "STRING_VALUE", // required
99
99
  * version: "STRING_VALUE", // required
100
100
  * },
101
- * taskList: {
101
+ * taskList: { // TaskList
102
102
  * name: "STRING_VALUE", // required
103
103
  * },
104
104
  * taskPriority: "STRING_VALUE",
105
105
  * input: "STRING_VALUE",
106
106
  * executionStartToCloseTimeout: "STRING_VALUE",
107
- * tagList: [
107
+ * tagList: [ // TagList
108
108
  * "STRING_VALUE",
109
109
  * ],
110
110
  * taskStartToCloseTimeout: "STRING_VALUE",
@@ -29,10 +29,10 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
29
29
  * import { SWFClient, TagResourceCommand } from "@aws-sdk/client-swf"; // ES Modules import
30
30
  * // const { SWFClient, TagResourceCommand } = require("@aws-sdk/client-swf"); // CommonJS import
31
31
  * const client = new SWFClient(config);
32
- * const input = {
32
+ * const input = { // TagResourceInput
33
33
  * resourceArn: "STRING_VALUE", // required
34
- * tags: [ // required
35
- * {
34
+ * tags: [ // ResourceTagList // required
35
+ * { // ResourceTag
36
36
  * key: "STRING_VALUE", // required
37
37
  * value: "STRING_VALUE",
38
38
  * },
@@ -69,7 +69,7 @@ export interface TerminateWorkflowExecutionCommandOutput extends __MetadataBeare
69
69
  * import { SWFClient, TerminateWorkflowExecutionCommand } from "@aws-sdk/client-swf"; // ES Modules import
70
70
  * // const { SWFClient, TerminateWorkflowExecutionCommand } = require("@aws-sdk/client-swf"); // CommonJS import
71
71
  * const client = new SWFClient(config);
72
- * const input = {
72
+ * const input = { // TerminateWorkflowExecutionInput
73
73
  * domain: "STRING_VALUE", // required
74
74
  * workflowId: "STRING_VALUE", // required
75
75
  * runId: "STRING_VALUE",
@@ -67,9 +67,9 @@ export interface UndeprecateActivityTypeCommandOutput extends __MetadataBearer {
67
67
  * import { SWFClient, UndeprecateActivityTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
68
68
  * // const { SWFClient, UndeprecateActivityTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
69
69
  * const client = new SWFClient(config);
70
- * const input = {
70
+ * const input = { // UndeprecateActivityTypeInput
71
71
  * domain: "STRING_VALUE", // required
72
- * activityType: {
72
+ * activityType: { // ActivityType
73
73
  * name: "STRING_VALUE", // required
74
74
  * version: "STRING_VALUE", // required
75
75
  * },
@@ -54,7 +54,7 @@ export interface UndeprecateDomainCommandOutput extends __MetadataBearer {
54
54
  * import { SWFClient, UndeprecateDomainCommand } from "@aws-sdk/client-swf"; // ES Modules import
55
55
  * // const { SWFClient, UndeprecateDomainCommand } = require("@aws-sdk/client-swf"); // CommonJS import
56
56
  * const client = new SWFClient(config);
57
- * const input = {
57
+ * const input = { // UndeprecateDomainInput
58
58
  * name: "STRING_VALUE", // required
59
59
  * };
60
60
  * const command = new UndeprecateDomainCommand(input);
@@ -67,9 +67,9 @@ export interface UndeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
67
67
  * import { SWFClient, UndeprecateWorkflowTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
68
68
  * // const { SWFClient, UndeprecateWorkflowTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
69
69
  * const client = new SWFClient(config);
70
- * const input = {
70
+ * const input = { // UndeprecateWorkflowTypeInput
71
71
  * domain: "STRING_VALUE", // required
72
- * workflowType: {
72
+ * workflowType: { // WorkflowType
73
73
  * name: "STRING_VALUE", // required
74
74
  * version: "STRING_VALUE", // required
75
75
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
26
26
  * import { SWFClient, UntagResourceCommand } from "@aws-sdk/client-swf"; // ES Modules import
27
27
  * // const { SWFClient, UntagResourceCommand } = require("@aws-sdk/client-swf"); // CommonJS import
28
28
  * const client = new SWFClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceInput
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // ResourceTagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };