@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 { Run, StartWorkflowExecutionInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartWorkflowExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartWorkflowExecutionCommandInput extends StartWorkflowExecutionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartWorkflowExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartWorkflowExecutionCommandOutput extends Run, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts an execution of the workflow type in the specified domain using the provided
|
|
18
23
|
* <code>workflowId</code> and input data.</p>
|
|
19
24
|
*
|
|
@@ -90,6 +95,8 @@ export interface StartWorkflowExecutionCommandOutput extends Run, __MetadataBear
|
|
|
90
95
|
* const response = await client.send(command);
|
|
91
96
|
* ```
|
|
92
97
|
*
|
|
98
|
+
* @param StartWorkflowExecutionCommandInput - {@link StartWorkflowExecutionCommandInput}
|
|
99
|
+
* @returns {@link StartWorkflowExecutionCommandOutput}
|
|
93
100
|
* @see {@link StartWorkflowExecutionCommandInput} for command's `input` shape.
|
|
94
101
|
* @see {@link StartWorkflowExecutionCommandOutput} for command's `response` shape.
|
|
95
102
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -128,11 +135,20 @@ export interface StartWorkflowExecutionCommandOutput extends Run, __MetadataBear
|
|
|
128
135
|
export declare class StartWorkflowExecutionCommand extends $Command<StartWorkflowExecutionCommandInput, StartWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
|
|
129
136
|
readonly input: StartWorkflowExecutionCommandInput;
|
|
130
137
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
131
141
|
constructor(input: StartWorkflowExecutionCommandInput);
|
|
132
142
|
/**
|
|
133
143
|
* @internal
|
|
134
144
|
*/
|
|
135
145
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartWorkflowExecutionCommandInput, StartWorkflowExecutionCommandOutput>;
|
|
146
|
+
/**
|
|
147
|
+
* @internal
|
|
148
|
+
*/
|
|
136
149
|
private serialize;
|
|
150
|
+
/**
|
|
151
|
+
* @internal
|
|
152
|
+
*/
|
|
137
153
|
private deserialize;
|
|
138
154
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { TagResourceInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Add a tag to a Amazon SWF domain.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>Amazon SWF supports a maximum of 50 tags per resource.</p>
|
|
@@ -28,6 +33,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
37
|
+
* @returns {@link TagResourceCommandOutput}
|
|
31
38
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
49
56
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SWFClientResolvedConfig> {
|
|
50
57
|
readonly input: TagResourceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: TagResourceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { TerminateWorkflowExecutionInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TerminateWorkflowExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TerminateWorkflowExecutionCommandInput extends TerminateWorkflowExecutionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TerminateWorkflowExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TerminateWorkflowExecutionCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Records a <code>WorkflowExecutionTerminated</code> event and forces closure of the
|
|
18
23
|
* workflow execution identified by the given domain, runId, and workflowId. The child policy,
|
|
19
24
|
* registered with the workflow type or specified when starting this execution, is applied to any
|
|
@@ -68,6 +73,8 @@ export interface TerminateWorkflowExecutionCommandOutput extends __MetadataBeare
|
|
|
68
73
|
* const response = await client.send(command);
|
|
69
74
|
* ```
|
|
70
75
|
*
|
|
76
|
+
* @param TerminateWorkflowExecutionCommandInput - {@link TerminateWorkflowExecutionCommandInput}
|
|
77
|
+
* @returns {@link TerminateWorkflowExecutionCommandOutput}
|
|
71
78
|
* @see {@link TerminateWorkflowExecutionCommandInput} for command's `input` shape.
|
|
72
79
|
* @see {@link TerminateWorkflowExecutionCommandOutput} for command's `response` shape.
|
|
73
80
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -83,11 +90,20 @@ export interface TerminateWorkflowExecutionCommandOutput extends __MetadataBeare
|
|
|
83
90
|
export declare class TerminateWorkflowExecutionCommand extends $Command<TerminateWorkflowExecutionCommandInput, TerminateWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
|
|
84
91
|
readonly input: TerminateWorkflowExecutionCommandInput;
|
|
85
92
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
86
96
|
constructor(input: TerminateWorkflowExecutionCommandInput);
|
|
87
97
|
/**
|
|
88
98
|
* @internal
|
|
89
99
|
*/
|
|
90
100
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TerminateWorkflowExecutionCommandInput, TerminateWorkflowExecutionCommandOutput>;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
91
104
|
private serialize;
|
|
105
|
+
/**
|
|
106
|
+
* @internal
|
|
107
|
+
*/
|
|
92
108
|
private deserialize;
|
|
93
109
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UndeprecateActivityTypeInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UndeprecateActivityTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UndeprecateActivityTypeCommandInput extends UndeprecateActivityTypeInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UndeprecateActivityTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UndeprecateActivityTypeCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Undeprecates a previously deprecated <i>activity type</i>. After an activity type has
|
|
18
23
|
* been undeprecated, you can create new tasks of that activity type.</p>
|
|
19
24
|
* <note>
|
|
@@ -66,6 +71,8 @@ export interface UndeprecateActivityTypeCommandOutput extends __MetadataBearer {
|
|
|
66
71
|
* const response = await client.send(command);
|
|
67
72
|
* ```
|
|
68
73
|
*
|
|
74
|
+
* @param UndeprecateActivityTypeCommandInput - {@link UndeprecateActivityTypeCommandInput}
|
|
75
|
+
* @returns {@link UndeprecateActivityTypeCommandOutput}
|
|
69
76
|
* @see {@link UndeprecateActivityTypeCommandInput} for command's `input` shape.
|
|
70
77
|
* @see {@link UndeprecateActivityTypeCommandOutput} for command's `response` shape.
|
|
71
78
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -84,11 +91,20 @@ export interface UndeprecateActivityTypeCommandOutput extends __MetadataBearer {
|
|
|
84
91
|
export declare class UndeprecateActivityTypeCommand extends $Command<UndeprecateActivityTypeCommandInput, UndeprecateActivityTypeCommandOutput, SWFClientResolvedConfig> {
|
|
85
92
|
readonly input: UndeprecateActivityTypeCommandInput;
|
|
86
93
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
87
97
|
constructor(input: UndeprecateActivityTypeCommandInput);
|
|
88
98
|
/**
|
|
89
99
|
* @internal
|
|
90
100
|
*/
|
|
91
101
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UndeprecateActivityTypeCommandInput, UndeprecateActivityTypeCommandOutput>;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
92
105
|
private serialize;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
93
109
|
private deserialize;
|
|
94
110
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UndeprecateDomainInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UndeprecateDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UndeprecateDomainCommandInput extends UndeprecateDomainInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UndeprecateDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UndeprecateDomainCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Undeprecates a previously deprecated domain. After a domain has been undeprecated it can be used
|
|
18
23
|
* to create new workflow executions or register new types.</p>
|
|
19
24
|
* <note>
|
|
@@ -53,6 +58,8 @@ export interface UndeprecateDomainCommandOutput extends __MetadataBearer {
|
|
|
53
58
|
* const response = await client.send(command);
|
|
54
59
|
* ```
|
|
55
60
|
*
|
|
61
|
+
* @param UndeprecateDomainCommandInput - {@link UndeprecateDomainCommandInput}
|
|
62
|
+
* @returns {@link UndeprecateDomainCommandOutput}
|
|
56
63
|
* @see {@link UndeprecateDomainCommandInput} for command's `input` shape.
|
|
57
64
|
* @see {@link UndeprecateDomainCommandOutput} for command's `response` shape.
|
|
58
65
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface UndeprecateDomainCommandOutput extends __MetadataBearer {
|
|
|
71
78
|
export declare class UndeprecateDomainCommand extends $Command<UndeprecateDomainCommandInput, UndeprecateDomainCommandOutput, SWFClientResolvedConfig> {
|
|
72
79
|
readonly input: UndeprecateDomainCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: UndeprecateDomainCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UndeprecateDomainCommandInput, UndeprecateDomainCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UndeprecateWorkflowTypeInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UndeprecateWorkflowTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UndeprecateWorkflowTypeCommandInput extends UndeprecateWorkflowTypeInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UndeprecateWorkflowTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UndeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Undeprecates a previously deprecated <i>workflow type</i>. After a workflow type has
|
|
18
23
|
* been undeprecated, you can create new executions of that type. </p>
|
|
19
24
|
* <note>
|
|
@@ -66,6 +71,8 @@ export interface UndeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
|
|
|
66
71
|
* const response = await client.send(command);
|
|
67
72
|
* ```
|
|
68
73
|
*
|
|
74
|
+
* @param UndeprecateWorkflowTypeCommandInput - {@link UndeprecateWorkflowTypeCommandInput}
|
|
75
|
+
* @returns {@link UndeprecateWorkflowTypeCommandOutput}
|
|
69
76
|
* @see {@link UndeprecateWorkflowTypeCommandInput} for command's `input` shape.
|
|
70
77
|
* @see {@link UndeprecateWorkflowTypeCommandOutput} for command's `response` shape.
|
|
71
78
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -84,11 +91,20 @@ export interface UndeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
|
|
|
84
91
|
export declare class UndeprecateWorkflowTypeCommand extends $Command<UndeprecateWorkflowTypeCommandInput, UndeprecateWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
|
|
85
92
|
readonly input: UndeprecateWorkflowTypeCommandInput;
|
|
86
93
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
87
97
|
constructor(input: UndeprecateWorkflowTypeCommandInput);
|
|
88
98
|
/**
|
|
89
99
|
* @internal
|
|
90
100
|
*/
|
|
91
101
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UndeprecateWorkflowTypeCommandInput, UndeprecateWorkflowTypeCommandOutput>;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
92
105
|
private serialize;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
93
109
|
private deserialize;
|
|
94
110
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UntagResourceInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Remove a tag from a Amazon SWF domain.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
43
50
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SWFClientResolvedConfig> {
|
|
44
51
|
readonly input: UntagResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UntagResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from SWF service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class SWFServiceException extends __ServiceException {
|