@aws-sdk/client-swf 3.168.0 → 3.170.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 (61) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/SWF.d.ts +1467 -16
  3. package/dist-types/ts3.4/SWFClient.d.ts +350 -110
  4. package/dist-types/ts3.4/commands/CountClosedWorkflowExecutionsCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CountOpenWorkflowExecutionsCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CountPendingActivityTasksCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CountPendingDecisionTasksCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeprecateActivityTypeCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DeprecateDomainCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeprecateWorkflowTypeCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/DescribeActivityTypeCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeDomainCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/DescribeWorkflowExecutionCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DescribeWorkflowTypeCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/GetWorkflowExecutionHistoryCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/ListActivityTypesCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/ListClosedWorkflowExecutionsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +17 -8
  19. package/dist-types/ts3.4/commands/ListOpenWorkflowExecutionsCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/ListWorkflowTypesCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/PollForActivityTaskCommand.d.ts +35 -17
  23. package/dist-types/ts3.4/commands/PollForDecisionTaskCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/RecordActivityTaskHeartbeatCommand.d.ts +41 -17
  25. package/dist-types/ts3.4/commands/RegisterActivityTypeCommand.d.ts +36 -17
  26. package/dist-types/ts3.4/commands/RegisterDomainCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/RegisterWorkflowTypeCommand.d.ts +36 -17
  28. package/dist-types/ts3.4/commands/RequestCancelWorkflowExecutionCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/RespondActivityTaskCanceledCommand.d.ts +37 -17
  30. package/dist-types/ts3.4/commands/RespondActivityTaskCompletedCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/RespondActivityTaskFailedCommand.d.ts +37 -17
  32. package/dist-types/ts3.4/commands/RespondDecisionTaskCompletedCommand.d.ts +37 -17
  33. package/dist-types/ts3.4/commands/SignalWorkflowExecutionCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/StartWorkflowExecutionCommand.d.ts +38 -17
  35. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  36. package/dist-types/ts3.4/commands/TerminateWorkflowExecutionCommand.d.ts +37 -17
  37. package/dist-types/ts3.4/commands/UndeprecateActivityTypeCommand.d.ts +37 -17
  38. package/dist-types/ts3.4/commands/UndeprecateDomainCommand.d.ts +32 -17
  39. package/dist-types/ts3.4/commands/UndeprecateWorkflowTypeCommand.d.ts +37 -17
  40. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  41. package/dist-types/ts3.4/commands/index.d.ts +37 -37
  42. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  43. package/dist-types/ts3.4/index.d.ts +6 -6
  44. package/dist-types/ts3.4/models/SWFServiceException.d.ts +8 -6
  45. package/dist-types/ts3.4/models/index.d.ts +1 -1
  46. package/dist-types/ts3.4/models/models_0.d.ts +2218 -1950
  47. package/dist-types/ts3.4/pagination/GetWorkflowExecutionHistoryPaginator.d.ts +11 -4
  48. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  49. package/dist-types/ts3.4/pagination/ListActivityTypesPaginator.d.ts +11 -4
  50. package/dist-types/ts3.4/pagination/ListClosedWorkflowExecutionsPaginator.d.ts +11 -4
  51. package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +11 -4
  52. package/dist-types/ts3.4/pagination/ListOpenWorkflowExecutionsPaginator.d.ts +11 -4
  53. package/dist-types/ts3.4/pagination/ListWorkflowTypesPaginator.d.ts +11 -4
  54. package/dist-types/ts3.4/pagination/PollForDecisionTaskPaginator.d.ts +11 -4
  55. package/dist-types/ts3.4/pagination/index.d.ts +8 -8
  56. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +449 -113
  57. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  58. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  59. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  60. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  61. package/package.json +34 -34
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { RespondActivityTaskCompletedInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface RespondActivityTaskCompletedCommandInput extends RespondActivityTaskCompletedInput {
6
- }
7
- export interface RespondActivityTaskCompletedCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RespondActivityTaskCompletedCommand extends $Command<RespondActivityTaskCompletedCommandInput, RespondActivityTaskCompletedCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: RespondActivityTaskCompletedCommandInput;
12
- constructor(input: RespondActivityTaskCompletedCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RespondActivityTaskCompletedCommandInput, RespondActivityTaskCompletedCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { RespondActivityTaskCompletedInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface RespondActivityTaskCompletedCommandInput
15
+ extends RespondActivityTaskCompletedInput {}
16
+ export interface RespondActivityTaskCompletedCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class RespondActivityTaskCompletedCommand extends $Command<
20
+ RespondActivityTaskCompletedCommandInput,
21
+ RespondActivityTaskCompletedCommandOutput,
22
+ SWFClientResolvedConfig
23
+ > {
24
+ readonly input: RespondActivityTaskCompletedCommandInput;
25
+ constructor(input: RespondActivityTaskCompletedCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SWFClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ RespondActivityTaskCompletedCommandInput,
33
+ RespondActivityTaskCompletedCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { RespondActivityTaskFailedInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface RespondActivityTaskFailedCommandInput extends RespondActivityTaskFailedInput {
6
- }
7
- export interface RespondActivityTaskFailedCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RespondActivityTaskFailedCommand extends $Command<RespondActivityTaskFailedCommandInput, RespondActivityTaskFailedCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: RespondActivityTaskFailedCommandInput;
12
- constructor(input: RespondActivityTaskFailedCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RespondActivityTaskFailedCommandInput, RespondActivityTaskFailedCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { RespondActivityTaskFailedInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface RespondActivityTaskFailedCommandInput
15
+ extends RespondActivityTaskFailedInput {}
16
+ export interface RespondActivityTaskFailedCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class RespondActivityTaskFailedCommand extends $Command<
20
+ RespondActivityTaskFailedCommandInput,
21
+ RespondActivityTaskFailedCommandOutput,
22
+ SWFClientResolvedConfig
23
+ > {
24
+ readonly input: RespondActivityTaskFailedCommandInput;
25
+ constructor(input: RespondActivityTaskFailedCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SWFClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ RespondActivityTaskFailedCommandInput,
33
+ RespondActivityTaskFailedCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { RespondDecisionTaskCompletedInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface RespondDecisionTaskCompletedCommandInput extends RespondDecisionTaskCompletedInput {
6
- }
7
- export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RespondDecisionTaskCompletedCommand extends $Command<RespondDecisionTaskCompletedCommandInput, RespondDecisionTaskCompletedCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: RespondDecisionTaskCompletedCommandInput;
12
- constructor(input: RespondDecisionTaskCompletedCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RespondDecisionTaskCompletedCommandInput, RespondDecisionTaskCompletedCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { RespondDecisionTaskCompletedInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface RespondDecisionTaskCompletedCommandInput
15
+ extends RespondDecisionTaskCompletedInput {}
16
+ export interface RespondDecisionTaskCompletedCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class RespondDecisionTaskCompletedCommand extends $Command<
20
+ RespondDecisionTaskCompletedCommandInput,
21
+ RespondDecisionTaskCompletedCommandOutput,
22
+ SWFClientResolvedConfig
23
+ > {
24
+ readonly input: RespondDecisionTaskCompletedCommandInput;
25
+ constructor(input: RespondDecisionTaskCompletedCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SWFClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ RespondDecisionTaskCompletedCommandInput,
33
+ RespondDecisionTaskCompletedCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { SignalWorkflowExecutionInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface SignalWorkflowExecutionCommandInput extends SignalWorkflowExecutionInput {
6
- }
7
- export interface SignalWorkflowExecutionCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class SignalWorkflowExecutionCommand extends $Command<SignalWorkflowExecutionCommandInput, SignalWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: SignalWorkflowExecutionCommandInput;
12
- constructor(input: SignalWorkflowExecutionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SignalWorkflowExecutionCommandInput, SignalWorkflowExecutionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { SignalWorkflowExecutionInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface SignalWorkflowExecutionCommandInput
15
+ extends SignalWorkflowExecutionInput {}
16
+ export interface SignalWorkflowExecutionCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class SignalWorkflowExecutionCommand extends $Command<
20
+ SignalWorkflowExecutionCommandInput,
21
+ SignalWorkflowExecutionCommandOutput,
22
+ SWFClientResolvedConfig
23
+ > {
24
+ readonly input: SignalWorkflowExecutionCommandInput;
25
+ constructor(input: SignalWorkflowExecutionCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SWFClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ SignalWorkflowExecutionCommandInput,
33
+ SignalWorkflowExecutionCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { Run, StartWorkflowExecutionInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface StartWorkflowExecutionCommandInput extends StartWorkflowExecutionInput {
6
- }
7
- export interface StartWorkflowExecutionCommandOutput extends Run, __MetadataBearer {
8
- }
9
-
10
- export declare class StartWorkflowExecutionCommand extends $Command<StartWorkflowExecutionCommandInput, StartWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: StartWorkflowExecutionCommandInput;
12
- constructor(input: StartWorkflowExecutionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartWorkflowExecutionCommandInput, StartWorkflowExecutionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { Run, StartWorkflowExecutionInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface StartWorkflowExecutionCommandInput
15
+ extends StartWorkflowExecutionInput {}
16
+ export interface StartWorkflowExecutionCommandOutput
17
+ extends Run,
18
+ __MetadataBearer {}
19
+
20
+ export declare class StartWorkflowExecutionCommand extends $Command<
21
+ StartWorkflowExecutionCommandInput,
22
+ StartWorkflowExecutionCommandOutput,
23
+ SWFClientResolvedConfig
24
+ > {
25
+ readonly input: StartWorkflowExecutionCommandInput;
26
+ constructor(input: StartWorkflowExecutionCommandInput);
27
+
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SWFClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ StartWorkflowExecutionCommandInput,
34
+ StartWorkflowExecutionCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { TagResourceInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface TagResourceCommandInput extends TagResourceInput {
6
- }
7
- export interface TagResourceCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { TagResourceInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface TagResourceCommandInput extends TagResourceInput {}
15
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class TagResourceCommand extends $Command<
18
+ TagResourceCommandInput,
19
+ TagResourceCommandOutput,
20
+ SWFClientResolvedConfig
21
+ > {
22
+ readonly input: TagResourceCommandInput;
23
+ constructor(input: TagResourceCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SWFClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { TerminateWorkflowExecutionInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface TerminateWorkflowExecutionCommandInput extends TerminateWorkflowExecutionInput {
6
- }
7
- export interface TerminateWorkflowExecutionCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class TerminateWorkflowExecutionCommand extends $Command<TerminateWorkflowExecutionCommandInput, TerminateWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: TerminateWorkflowExecutionCommandInput;
12
- constructor(input: TerminateWorkflowExecutionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TerminateWorkflowExecutionCommandInput, TerminateWorkflowExecutionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { TerminateWorkflowExecutionInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface TerminateWorkflowExecutionCommandInput
15
+ extends TerminateWorkflowExecutionInput {}
16
+ export interface TerminateWorkflowExecutionCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class TerminateWorkflowExecutionCommand extends $Command<
20
+ TerminateWorkflowExecutionCommandInput,
21
+ TerminateWorkflowExecutionCommandOutput,
22
+ SWFClientResolvedConfig
23
+ > {
24
+ readonly input: TerminateWorkflowExecutionCommandInput;
25
+ constructor(input: TerminateWorkflowExecutionCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SWFClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ TerminateWorkflowExecutionCommandInput,
33
+ TerminateWorkflowExecutionCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UndeprecateActivityTypeInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface UndeprecateActivityTypeCommandInput extends UndeprecateActivityTypeInput {
6
- }
7
- export interface UndeprecateActivityTypeCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UndeprecateActivityTypeCommand extends $Command<UndeprecateActivityTypeCommandInput, UndeprecateActivityTypeCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: UndeprecateActivityTypeCommandInput;
12
- constructor(input: UndeprecateActivityTypeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UndeprecateActivityTypeCommandInput, UndeprecateActivityTypeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { UndeprecateActivityTypeInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface UndeprecateActivityTypeCommandInput
15
+ extends UndeprecateActivityTypeInput {}
16
+ export interface UndeprecateActivityTypeCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class UndeprecateActivityTypeCommand extends $Command<
20
+ UndeprecateActivityTypeCommandInput,
21
+ UndeprecateActivityTypeCommandOutput,
22
+ SWFClientResolvedConfig
23
+ > {
24
+ readonly input: UndeprecateActivityTypeCommandInput;
25
+ constructor(input: UndeprecateActivityTypeCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SWFClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ UndeprecateActivityTypeCommandInput,
33
+ UndeprecateActivityTypeCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UndeprecateDomainInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface UndeprecateDomainCommandInput extends UndeprecateDomainInput {
6
- }
7
- export interface UndeprecateDomainCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UndeprecateDomainCommand extends $Command<UndeprecateDomainCommandInput, UndeprecateDomainCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: UndeprecateDomainCommandInput;
12
- constructor(input: UndeprecateDomainCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UndeprecateDomainCommandInput, UndeprecateDomainCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { UndeprecateDomainInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface UndeprecateDomainCommandInput extends UndeprecateDomainInput {}
15
+ export interface UndeprecateDomainCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class UndeprecateDomainCommand extends $Command<
18
+ UndeprecateDomainCommandInput,
19
+ UndeprecateDomainCommandOutput,
20
+ SWFClientResolvedConfig
21
+ > {
22
+ readonly input: UndeprecateDomainCommandInput;
23
+ constructor(input: UndeprecateDomainCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SWFClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UndeprecateDomainCommandInput, UndeprecateDomainCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UndeprecateWorkflowTypeInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface UndeprecateWorkflowTypeCommandInput extends UndeprecateWorkflowTypeInput {
6
- }
7
- export interface UndeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UndeprecateWorkflowTypeCommand extends $Command<UndeprecateWorkflowTypeCommandInput, UndeprecateWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: UndeprecateWorkflowTypeCommandInput;
12
- constructor(input: UndeprecateWorkflowTypeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UndeprecateWorkflowTypeCommandInput, UndeprecateWorkflowTypeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { UndeprecateWorkflowTypeInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface UndeprecateWorkflowTypeCommandInput
15
+ extends UndeprecateWorkflowTypeInput {}
16
+ export interface UndeprecateWorkflowTypeCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class UndeprecateWorkflowTypeCommand extends $Command<
20
+ UndeprecateWorkflowTypeCommandInput,
21
+ UndeprecateWorkflowTypeCommandOutput,
22
+ SWFClientResolvedConfig
23
+ > {
24
+ readonly input: UndeprecateWorkflowTypeCommandInput;
25
+ constructor(input: UndeprecateWorkflowTypeCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SWFClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ UndeprecateWorkflowTypeCommandInput,
33
+ UndeprecateWorkflowTypeCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UntagResourceInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface UntagResourceCommandInput extends UntagResourceInput {
6
- }
7
- export interface UntagResourceCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { UntagResourceInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface UntagResourceCommandInput extends UntagResourceInput {}
15
+ export interface UntagResourceCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class UntagResourceCommand extends $Command<
18
+ UntagResourceCommandInput,
19
+ UntagResourceCommandOutput,
20
+ SWFClientResolvedConfig
21
+ > {
22
+ readonly input: UntagResourceCommandInput;
23
+ constructor(input: UntagResourceCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SWFClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }