@aws-sdk/client-swf 3.296.0 → 3.297.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-types/SWF.d.ts +38 -0
- package/dist-types/SWFClient.d.ts +24 -4
- package/dist-types/commands/CountClosedWorkflowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/CountOpenWorkflowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/CountPendingActivityTasksCommand.d.ts +16 -0
- package/dist-types/commands/CountPendingDecisionTasksCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateActivityTypeCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateDomainCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateWorkflowTypeCommand.d.ts +16 -0
- package/dist-types/commands/DescribeActivityTypeCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkflowExecutionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkflowTypeCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowExecutionHistoryCommand.d.ts +16 -0
- package/dist-types/commands/ListActivityTypesCommand.d.ts +16 -0
- package/dist-types/commands/ListClosedWorkflowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
- package/dist-types/commands/ListOpenWorkflowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkflowTypesCommand.d.ts +16 -0
- package/dist-types/commands/PollForActivityTaskCommand.d.ts +16 -0
- package/dist-types/commands/PollForDecisionTaskCommand.d.ts +16 -0
- package/dist-types/commands/RecordActivityTaskHeartbeatCommand.d.ts +16 -0
- package/dist-types/commands/RegisterActivityTypeCommand.d.ts +16 -0
- package/dist-types/commands/RegisterDomainCommand.d.ts +16 -0
- package/dist-types/commands/RegisterWorkflowTypeCommand.d.ts +16 -0
- package/dist-types/commands/RequestCancelWorkflowExecutionCommand.d.ts +16 -0
- package/dist-types/commands/RespondActivityTaskCanceledCommand.d.ts +16 -0
- package/dist-types/commands/RespondActivityTaskCompletedCommand.d.ts +16 -0
- package/dist-types/commands/RespondActivityTaskFailedCommand.d.ts +16 -0
- package/dist-types/commands/RespondDecisionTaskCompletedCommand.d.ts +16 -0
- package/dist-types/commands/SignalWorkflowExecutionCommand.d.ts +16 -0
- package/dist-types/commands/StartWorkflowExecutionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/TerminateWorkflowExecutionCommand.d.ts +16 -0
- package/dist-types/commands/UndeprecateActivityTypeCommand.d.ts +16 -0
- package/dist-types/commands/UndeprecateDomainCommand.d.ts +16 -0
- package/dist-types/commands/UndeprecateWorkflowTypeCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/SWFServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +303 -0
- package/dist-types/pagination/GetWorkflowExecutionHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListActivityTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListClosedWorkflowExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOpenWorkflowExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkflowTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/PollForDecisionTaskPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ActivityTask, PollForActivityTaskInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PollForActivityTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PollForActivityTaskCommandInput extends PollForActivityTaskInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PollForActivityTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PollForActivityTaskCommandOutput extends ActivityTask, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Used by workers to get an <a>ActivityTask</a> from the specified activity
|
|
18
23
|
* <code>taskList</code>. This initiates a long poll, where the service holds the HTTP
|
|
19
24
|
* connection open and responds as soon as a task becomes available. The maximum time the service
|
|
@@ -60,6 +65,8 @@ export interface PollForActivityTaskCommandOutput extends ActivityTask, __Metada
|
|
|
60
65
|
* const response = await client.send(command);
|
|
61
66
|
* ```
|
|
62
67
|
*
|
|
68
|
+
* @param PollForActivityTaskCommandInput - {@link PollForActivityTaskCommandInput}
|
|
69
|
+
* @returns {@link PollForActivityTaskCommandOutput}
|
|
63
70
|
* @see {@link PollForActivityTaskCommandInput} for command's `input` shape.
|
|
64
71
|
* @see {@link PollForActivityTaskCommandOutput} for command's `response` shape.
|
|
65
72
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -78,11 +85,20 @@ export interface PollForActivityTaskCommandOutput extends ActivityTask, __Metada
|
|
|
78
85
|
export declare class PollForActivityTaskCommand extends $Command<PollForActivityTaskCommandInput, PollForActivityTaskCommandOutput, SWFClientResolvedConfig> {
|
|
79
86
|
readonly input: PollForActivityTaskCommandInput;
|
|
80
87
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
81
91
|
constructor(input: PollForActivityTaskCommandInput);
|
|
82
92
|
/**
|
|
83
93
|
* @internal
|
|
84
94
|
*/
|
|
85
95
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PollForActivityTaskCommandInput, PollForActivityTaskCommandOutput>;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
86
99
|
private serialize;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
87
103
|
private deserialize;
|
|
88
104
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DecisionTask, PollForDecisionTaskInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PollForDecisionTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PollForDecisionTaskCommandInput extends PollForDecisionTaskInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PollForDecisionTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PollForDecisionTaskCommandOutput extends DecisionTask, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Used by deciders to get a <a>DecisionTask</a> from the specified decision
|
|
18
23
|
* <code>taskList</code>. A decision task may be returned for any open workflow execution that
|
|
19
24
|
* is using the specified task list. The task includes a paginated view of the history of the
|
|
@@ -72,6 +77,8 @@ export interface PollForDecisionTaskCommandOutput extends DecisionTask, __Metada
|
|
|
72
77
|
* const response = await client.send(command);
|
|
73
78
|
* ```
|
|
74
79
|
*
|
|
80
|
+
* @param PollForDecisionTaskCommandInput - {@link PollForDecisionTaskCommandInput}
|
|
81
|
+
* @returns {@link PollForDecisionTaskCommandOutput}
|
|
75
82
|
* @see {@link PollForDecisionTaskCommandInput} for command's `input` shape.
|
|
76
83
|
* @see {@link PollForDecisionTaskCommandOutput} for command's `response` shape.
|
|
77
84
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -90,11 +97,20 @@ export interface PollForDecisionTaskCommandOutput extends DecisionTask, __Metada
|
|
|
90
97
|
export declare class PollForDecisionTaskCommand extends $Command<PollForDecisionTaskCommandInput, PollForDecisionTaskCommandOutput, SWFClientResolvedConfig> {
|
|
91
98
|
readonly input: PollForDecisionTaskCommandInput;
|
|
92
99
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
93
103
|
constructor(input: PollForDecisionTaskCommandInput);
|
|
94
104
|
/**
|
|
95
105
|
* @internal
|
|
96
106
|
*/
|
|
97
107
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PollForDecisionTaskCommandInput, PollForDecisionTaskCommandOutput>;
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
98
111
|
private serialize;
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
99
115
|
private deserialize;
|
|
100
116
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ActivityTaskStatus, RecordActivityTaskHeartbeatInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RecordActivityTaskHeartbeatCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RecordActivityTaskHeartbeatCommandInput extends RecordActivityTaskHeartbeatInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RecordActivityTaskHeartbeatCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RecordActivityTaskHeartbeatCommandOutput extends ActivityTaskStatus, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Used by activity workers to report to the service that the <a>ActivityTask</a> represented by the specified <code>taskToken</code> is still making progress. The worker
|
|
18
23
|
* can also specify details of the progress, for example percent complete, using the
|
|
19
24
|
* <code>details</code> parameter. This action can also be used by the worker as a mechanism to
|
|
@@ -72,6 +77,8 @@ export interface RecordActivityTaskHeartbeatCommandOutput extends ActivityTaskSt
|
|
|
72
77
|
* const response = await client.send(command);
|
|
73
78
|
* ```
|
|
74
79
|
*
|
|
80
|
+
* @param RecordActivityTaskHeartbeatCommandInput - {@link RecordActivityTaskHeartbeatCommandInput}
|
|
81
|
+
* @returns {@link RecordActivityTaskHeartbeatCommandOutput}
|
|
75
82
|
* @see {@link RecordActivityTaskHeartbeatCommandInput} for command's `input` shape.
|
|
76
83
|
* @see {@link RecordActivityTaskHeartbeatCommandOutput} for command's `response` shape.
|
|
77
84
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -87,11 +94,20 @@ export interface RecordActivityTaskHeartbeatCommandOutput extends ActivityTaskSt
|
|
|
87
94
|
export declare class RecordActivityTaskHeartbeatCommand extends $Command<RecordActivityTaskHeartbeatCommandInput, RecordActivityTaskHeartbeatCommandOutput, SWFClientResolvedConfig> {
|
|
88
95
|
readonly input: RecordActivityTaskHeartbeatCommandInput;
|
|
89
96
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
97
|
+
/**
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
90
100
|
constructor(input: RecordActivityTaskHeartbeatCommandInput);
|
|
91
101
|
/**
|
|
92
102
|
* @internal
|
|
93
103
|
*/
|
|
94
104
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RecordActivityTaskHeartbeatCommandInput, RecordActivityTaskHeartbeatCommandOutput>;
|
|
105
|
+
/**
|
|
106
|
+
* @internal
|
|
107
|
+
*/
|
|
95
108
|
private serialize;
|
|
109
|
+
/**
|
|
110
|
+
* @internal
|
|
111
|
+
*/
|
|
96
112
|
private deserialize;
|
|
97
113
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RegisterActivityTypeInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RegisterActivityTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RegisterActivityTypeCommandInput extends RegisterActivityTypeInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RegisterActivityTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RegisterActivityTypeCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Registers a new <i>activity type</i> along with its configuration
|
|
18
23
|
* settings in the specified domain.</p>
|
|
19
24
|
* <important>
|
|
@@ -71,6 +76,8 @@ export interface RegisterActivityTypeCommandOutput extends __MetadataBearer {
|
|
|
71
76
|
* const response = await client.send(command);
|
|
72
77
|
* ```
|
|
73
78
|
*
|
|
79
|
+
* @param RegisterActivityTypeCommandInput - {@link RegisterActivityTypeCommandInput}
|
|
80
|
+
* @returns {@link RegisterActivityTypeCommandOutput}
|
|
74
81
|
* @see {@link RegisterActivityTypeCommandInput} for command's `input` shape.
|
|
75
82
|
* @see {@link RegisterActivityTypeCommandOutput} for command's `response` shape.
|
|
76
83
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -92,11 +99,20 @@ export interface RegisterActivityTypeCommandOutput extends __MetadataBearer {
|
|
|
92
99
|
export declare class RegisterActivityTypeCommand extends $Command<RegisterActivityTypeCommandInput, RegisterActivityTypeCommandOutput, SWFClientResolvedConfig> {
|
|
93
100
|
readonly input: RegisterActivityTypeCommandInput;
|
|
94
101
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
95
105
|
constructor(input: RegisterActivityTypeCommandInput);
|
|
96
106
|
/**
|
|
97
107
|
* @internal
|
|
98
108
|
*/
|
|
99
109
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterActivityTypeCommandInput, RegisterActivityTypeCommandOutput>;
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
100
113
|
private serialize;
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
101
117
|
private deserialize;
|
|
102
118
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RegisterDomainInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RegisterDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RegisterDomainCommandInput extends RegisterDomainInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RegisterDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RegisterDomainCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Registers a new domain.</p>
|
|
18
23
|
* <p>
|
|
19
24
|
* <b>Access Control</b>
|
|
@@ -48,6 +53,8 @@ export interface RegisterDomainCommandOutput extends __MetadataBearer {
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param RegisterDomainCommandInput - {@link RegisterDomainCommandInput}
|
|
57
|
+
* @returns {@link RegisterDomainCommandOutput}
|
|
51
58
|
* @see {@link RegisterDomainCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link RegisterDomainCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface RegisterDomainCommandOutput extends __MetadataBearer {
|
|
|
69
76
|
export declare class RegisterDomainCommand extends $Command<RegisterDomainCommandInput, RegisterDomainCommandOutput, SWFClientResolvedConfig> {
|
|
70
77
|
readonly input: RegisterDomainCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: RegisterDomainCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterDomainCommandInput, RegisterDomainCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RegisterWorkflowTypeInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RegisterWorkflowTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RegisterWorkflowTypeCommandInput extends RegisterWorkflowTypeInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RegisterWorkflowTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RegisterWorkflowTypeCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Registers a new <i>workflow type</i> and its configuration settings in
|
|
18
23
|
* the specified domain.</p>
|
|
19
24
|
* <p>The retention period for the workflow history is set by the <a>RegisterDomain</a> action.</p>
|
|
@@ -72,6 +77,8 @@ export interface RegisterWorkflowTypeCommandOutput extends __MetadataBearer {
|
|
|
72
77
|
* const response = await client.send(command);
|
|
73
78
|
* ```
|
|
74
79
|
*
|
|
80
|
+
* @param RegisterWorkflowTypeCommandInput - {@link RegisterWorkflowTypeCommandInput}
|
|
81
|
+
* @returns {@link RegisterWorkflowTypeCommandOutput}
|
|
75
82
|
* @see {@link RegisterWorkflowTypeCommandInput} for command's `input` shape.
|
|
76
83
|
* @see {@link RegisterWorkflowTypeCommandOutput} for command's `response` shape.
|
|
77
84
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -93,11 +100,20 @@ export interface RegisterWorkflowTypeCommandOutput extends __MetadataBearer {
|
|
|
93
100
|
export declare class RegisterWorkflowTypeCommand extends $Command<RegisterWorkflowTypeCommandInput, RegisterWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
|
|
94
101
|
readonly input: RegisterWorkflowTypeCommandInput;
|
|
95
102
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
96
106
|
constructor(input: RegisterWorkflowTypeCommandInput);
|
|
97
107
|
/**
|
|
98
108
|
* @internal
|
|
99
109
|
*/
|
|
100
110
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterWorkflowTypeCommandInput, RegisterWorkflowTypeCommandOutput>;
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
101
114
|
private serialize;
|
|
115
|
+
/**
|
|
116
|
+
* @internal
|
|
117
|
+
*/
|
|
102
118
|
private deserialize;
|
|
103
119
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RequestCancelWorkflowExecutionInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RequestCancelWorkflowExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RequestCancelWorkflowExecutionCommandInput extends RequestCancelWorkflowExecutionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RequestCancelWorkflowExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RequestCancelWorkflowExecutionCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Records a <code>WorkflowExecutionCancelRequested</code> event in the currently running
|
|
18
23
|
* workflow execution identified by the given domain, workflowId, and runId. This logically
|
|
19
24
|
* requests the cancellation of the workflow execution as a whole. It is up to the decider to
|
|
@@ -63,6 +68,8 @@ export interface RequestCancelWorkflowExecutionCommandOutput extends __MetadataB
|
|
|
63
68
|
* const response = await client.send(command);
|
|
64
69
|
* ```
|
|
65
70
|
*
|
|
71
|
+
* @param RequestCancelWorkflowExecutionCommandInput - {@link RequestCancelWorkflowExecutionCommandInput}
|
|
72
|
+
* @returns {@link RequestCancelWorkflowExecutionCommandOutput}
|
|
66
73
|
* @see {@link RequestCancelWorkflowExecutionCommandInput} for command's `input` shape.
|
|
67
74
|
* @see {@link RequestCancelWorkflowExecutionCommandOutput} for command's `response` shape.
|
|
68
75
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -78,11 +85,20 @@ export interface RequestCancelWorkflowExecutionCommandOutput extends __MetadataB
|
|
|
78
85
|
export declare class RequestCancelWorkflowExecutionCommand extends $Command<RequestCancelWorkflowExecutionCommandInput, RequestCancelWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
|
|
79
86
|
readonly input: RequestCancelWorkflowExecutionCommandInput;
|
|
80
87
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
81
91
|
constructor(input: RequestCancelWorkflowExecutionCommandInput);
|
|
82
92
|
/**
|
|
83
93
|
* @internal
|
|
84
94
|
*/
|
|
85
95
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RequestCancelWorkflowExecutionCommandInput, RequestCancelWorkflowExecutionCommandOutput>;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
86
99
|
private serialize;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
87
103
|
private deserialize;
|
|
88
104
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RespondActivityTaskCanceledInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RespondActivityTaskCanceledCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RespondActivityTaskCanceledCommandInput extends RespondActivityTaskCanceledInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RespondActivityTaskCanceledCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RespondActivityTaskCanceledCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Used by workers to tell the service that the <a>ActivityTask</a> identified
|
|
18
23
|
* by the <code>taskToken</code> was successfully canceled. Additional <code>details</code> can
|
|
19
24
|
* be provided using the <code>details</code> argument.</p>
|
|
@@ -66,6 +71,8 @@ export interface RespondActivityTaskCanceledCommandOutput extends __MetadataBear
|
|
|
66
71
|
* const response = await client.send(command);
|
|
67
72
|
* ```
|
|
68
73
|
*
|
|
74
|
+
* @param RespondActivityTaskCanceledCommandInput - {@link RespondActivityTaskCanceledCommandInput}
|
|
75
|
+
* @returns {@link RespondActivityTaskCanceledCommandOutput}
|
|
69
76
|
* @see {@link RespondActivityTaskCanceledCommandInput} for command's `input` shape.
|
|
70
77
|
* @see {@link RespondActivityTaskCanceledCommandOutput} for command's `response` shape.
|
|
71
78
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -81,11 +88,20 @@ export interface RespondActivityTaskCanceledCommandOutput extends __MetadataBear
|
|
|
81
88
|
export declare class RespondActivityTaskCanceledCommand extends $Command<RespondActivityTaskCanceledCommandInput, RespondActivityTaskCanceledCommandOutput, SWFClientResolvedConfig> {
|
|
82
89
|
readonly input: RespondActivityTaskCanceledCommandInput;
|
|
83
90
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
84
94
|
constructor(input: RespondActivityTaskCanceledCommandInput);
|
|
85
95
|
/**
|
|
86
96
|
* @internal
|
|
87
97
|
*/
|
|
88
98
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RespondActivityTaskCanceledCommandInput, RespondActivityTaskCanceledCommandOutput>;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
89
102
|
private serialize;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
90
106
|
private deserialize;
|
|
91
107
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RespondActivityTaskCompletedInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RespondActivityTaskCompletedCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RespondActivityTaskCompletedCommandInput extends RespondActivityTaskCompletedInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RespondActivityTaskCompletedCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RespondActivityTaskCompletedCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Used by workers to tell the service that the <a>ActivityTask</a> identified
|
|
18
23
|
* by the <code>taskToken</code> completed successfully with a <code>result</code> (if provided).
|
|
19
24
|
* The <code>result</code> appears in the <code>ActivityTaskCompleted</code> event in the
|
|
@@ -64,6 +69,8 @@ export interface RespondActivityTaskCompletedCommandOutput extends __MetadataBea
|
|
|
64
69
|
* const response = await client.send(command);
|
|
65
70
|
* ```
|
|
66
71
|
*
|
|
72
|
+
* @param RespondActivityTaskCompletedCommandInput - {@link RespondActivityTaskCompletedCommandInput}
|
|
73
|
+
* @returns {@link RespondActivityTaskCompletedCommandOutput}
|
|
67
74
|
* @see {@link RespondActivityTaskCompletedCommandInput} for command's `input` shape.
|
|
68
75
|
* @see {@link RespondActivityTaskCompletedCommandOutput} for command's `response` shape.
|
|
69
76
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -79,11 +86,20 @@ export interface RespondActivityTaskCompletedCommandOutput extends __MetadataBea
|
|
|
79
86
|
export declare class RespondActivityTaskCompletedCommand extends $Command<RespondActivityTaskCompletedCommandInput, RespondActivityTaskCompletedCommandOutput, SWFClientResolvedConfig> {
|
|
80
87
|
readonly input: RespondActivityTaskCompletedCommandInput;
|
|
81
88
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
82
92
|
constructor(input: RespondActivityTaskCompletedCommandInput);
|
|
83
93
|
/**
|
|
84
94
|
* @internal
|
|
85
95
|
*/
|
|
86
96
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RespondActivityTaskCompletedCommandInput, RespondActivityTaskCompletedCommandOutput>;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
87
100
|
private serialize;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
88
104
|
private deserialize;
|
|
89
105
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RespondActivityTaskFailedInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RespondActivityTaskFailedCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RespondActivityTaskFailedCommandInput extends RespondActivityTaskFailedInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RespondActivityTaskFailedCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RespondActivityTaskFailedCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Used by workers to tell the service that the <a>ActivityTask</a> identified
|
|
18
23
|
* by the <code>taskToken</code> has failed with <code>reason</code> (if specified). The
|
|
19
24
|
* <code>reason</code> and <code>details</code> appear in the <code>ActivityTaskFailed</code>
|
|
@@ -57,6 +62,8 @@ export interface RespondActivityTaskFailedCommandOutput extends __MetadataBearer
|
|
|
57
62
|
* const response = await client.send(command);
|
|
58
63
|
* ```
|
|
59
64
|
*
|
|
65
|
+
* @param RespondActivityTaskFailedCommandInput - {@link RespondActivityTaskFailedCommandInput}
|
|
66
|
+
* @returns {@link RespondActivityTaskFailedCommandOutput}
|
|
60
67
|
* @see {@link RespondActivityTaskFailedCommandInput} for command's `input` shape.
|
|
61
68
|
* @see {@link RespondActivityTaskFailedCommandOutput} for command's `response` shape.
|
|
62
69
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface RespondActivityTaskFailedCommandOutput extends __MetadataBearer
|
|
|
72
79
|
export declare class RespondActivityTaskFailedCommand extends $Command<RespondActivityTaskFailedCommandInput, RespondActivityTaskFailedCommandOutput, SWFClientResolvedConfig> {
|
|
73
80
|
readonly input: RespondActivityTaskFailedCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: RespondActivityTaskFailedCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RespondActivityTaskFailedCommandInput, RespondActivityTaskFailedCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RespondDecisionTaskCompletedInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RespondDecisionTaskCompletedCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RespondDecisionTaskCompletedCommandInput extends RespondDecisionTaskCompletedInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RespondDecisionTaskCompletedCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Used by deciders to tell the service that the <a>DecisionTask</a> identified
|
|
18
23
|
* by the <code>taskToken</code> has successfully completed. The <code>decisions</code> argument
|
|
19
24
|
* specifies the list of decisions made while processing the task.</p>
|
|
@@ -44,6 +49,8 @@ export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBea
|
|
|
44
49
|
* const response = await client.send(command);
|
|
45
50
|
* ```
|
|
46
51
|
*
|
|
52
|
+
* @param RespondDecisionTaskCompletedCommandInput - {@link RespondDecisionTaskCompletedCommandInput}
|
|
53
|
+
* @returns {@link RespondDecisionTaskCompletedCommandOutput}
|
|
47
54
|
* @see {@link RespondDecisionTaskCompletedCommandInput} for command's `input` shape.
|
|
48
55
|
* @see {@link RespondDecisionTaskCompletedCommandOutput} for command's `response` shape.
|
|
49
56
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBea
|
|
|
59
66
|
export declare class RespondDecisionTaskCompletedCommand extends $Command<RespondDecisionTaskCompletedCommandInput, RespondDecisionTaskCompletedCommandOutput, SWFClientResolvedConfig> {
|
|
60
67
|
readonly input: RespondDecisionTaskCompletedCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: RespondDecisionTaskCompletedCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RespondDecisionTaskCompletedCommandInput, RespondDecisionTaskCompletedCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { SignalWorkflowExecutionInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SignalWorkflowExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SignalWorkflowExecutionCommandInput extends SignalWorkflowExecutionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SignalWorkflowExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SignalWorkflowExecutionCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Records a <code>WorkflowExecutionSignaled</code> event in the workflow execution
|
|
18
23
|
* history and creates a decision task for the workflow execution identified by the given domain,
|
|
19
24
|
* workflowId and runId. The event is recorded with the specified user defined signalName and
|
|
@@ -63,6 +68,8 @@ export interface SignalWorkflowExecutionCommandOutput extends __MetadataBearer {
|
|
|
63
68
|
* const response = await client.send(command);
|
|
64
69
|
* ```
|
|
65
70
|
*
|
|
71
|
+
* @param SignalWorkflowExecutionCommandInput - {@link SignalWorkflowExecutionCommandInput}
|
|
72
|
+
* @returns {@link SignalWorkflowExecutionCommandOutput}
|
|
66
73
|
* @see {@link SignalWorkflowExecutionCommandInput} for command's `input` shape.
|
|
67
74
|
* @see {@link SignalWorkflowExecutionCommandOutput} for command's `response` shape.
|
|
68
75
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -78,11 +85,20 @@ export interface SignalWorkflowExecutionCommandOutput extends __MetadataBearer {
|
|
|
78
85
|
export declare class SignalWorkflowExecutionCommand extends $Command<SignalWorkflowExecutionCommandInput, SignalWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
|
|
79
86
|
readonly input: SignalWorkflowExecutionCommandInput;
|
|
80
87
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
81
91
|
constructor(input: SignalWorkflowExecutionCommandInput);
|
|
82
92
|
/**
|
|
83
93
|
* @internal
|
|
84
94
|
*/
|
|
85
95
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SignalWorkflowExecutionCommandInput, SignalWorkflowExecutionCommandOutput>;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
86
99
|
private serialize;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
87
103
|
private deserialize;
|
|
88
104
|
}
|