@aws-sdk/client-swf 3.169.0 → 3.171.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 +633 -98
  3. package/dist-types/ts3.4/SWFClient.d.ts +325 -110
  4. package/dist-types/ts3.4/commands/CountClosedWorkflowExecutionsCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CountOpenWorkflowExecutionsCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CountPendingActivityTasksCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/CountPendingDecisionTasksCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeprecateActivityTypeCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/DeprecateDomainCommand.d.ts +30 -17
  10. package/dist-types/ts3.4/commands/DeprecateWorkflowTypeCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/DescribeActivityTypeCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DescribeDomainCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/DescribeWorkflowExecutionCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DescribeWorkflowTypeCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/GetWorkflowExecutionHistoryCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/ListActivityTypesCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/ListClosedWorkflowExecutionsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +32 -8
  19. package/dist-types/ts3.4/commands/ListOpenWorkflowExecutionsCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/ListWorkflowTypesCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/PollForActivityTaskCommand.d.ts +33 -17
  23. package/dist-types/ts3.4/commands/PollForDecisionTaskCommand.d.ts +33 -17
  24. package/dist-types/ts3.4/commands/RecordActivityTaskHeartbeatCommand.d.ts +39 -17
  25. package/dist-types/ts3.4/commands/RegisterActivityTypeCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/RegisterDomainCommand.d.ts +30 -17
  27. package/dist-types/ts3.4/commands/RegisterWorkflowTypeCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/RequestCancelWorkflowExecutionCommand.d.ts +35 -17
  29. package/dist-types/ts3.4/commands/RespondActivityTaskCanceledCommand.d.ts +35 -17
  30. package/dist-types/ts3.4/commands/RespondActivityTaskCompletedCommand.d.ts +35 -17
  31. package/dist-types/ts3.4/commands/RespondActivityTaskFailedCommand.d.ts +35 -17
  32. package/dist-types/ts3.4/commands/RespondDecisionTaskCompletedCommand.d.ts +35 -17
  33. package/dist-types/ts3.4/commands/SignalWorkflowExecutionCommand.d.ts +35 -17
  34. package/dist-types/ts3.4/commands/StartWorkflowExecutionCommand.d.ts +36 -17
  35. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  36. package/dist-types/ts3.4/commands/TerminateWorkflowExecutionCommand.d.ts +35 -17
  37. package/dist-types/ts3.4/commands/UndeprecateActivityTypeCommand.d.ts +35 -17
  38. package/dist-types/ts3.4/commands/UndeprecateDomainCommand.d.ts +30 -17
  39. package/dist-types/ts3.4/commands/UndeprecateWorkflowTypeCommand.d.ts +35 -17
  40. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -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 +7 -6
  45. package/dist-types/ts3.4/models/index.d.ts +1 -1
  46. package/dist-types/ts3.4/models/models_0.d.ts +1502 -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 +65 -38
  58. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  59. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  60. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  61. package/package.json +34 -34
@@ -1,17 +1,39 @@
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 { CountPendingDecisionTasksInput, PendingTaskCount } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface CountPendingDecisionTasksCommandInput extends CountPendingDecisionTasksInput {
6
- }
7
- export interface CountPendingDecisionTasksCommandOutput extends PendingTaskCount, __MetadataBearer {
8
- }
9
-
10
- export declare class CountPendingDecisionTasksCommand extends $Command<CountPendingDecisionTasksCommandInput, CountPendingDecisionTasksCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: CountPendingDecisionTasksCommandInput;
12
- constructor(input: CountPendingDecisionTasksCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CountPendingDecisionTasksCommandInput, CountPendingDecisionTasksCommandOutput>;
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 {
9
+ CountPendingDecisionTasksInput,
10
+ PendingTaskCount,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SWFClientResolvedConfig,
16
+ } from "../SWFClient";
17
+ export interface CountPendingDecisionTasksCommandInput
18
+ extends CountPendingDecisionTasksInput {}
19
+ export interface CountPendingDecisionTasksCommandOutput
20
+ extends PendingTaskCount,
21
+ __MetadataBearer {}
22
+ export declare class CountPendingDecisionTasksCommand extends $Command<
23
+ CountPendingDecisionTasksCommandInput,
24
+ CountPendingDecisionTasksCommandOutput,
25
+ SWFClientResolvedConfig
26
+ > {
27
+ readonly input: CountPendingDecisionTasksCommandInput;
28
+ constructor(input: CountPendingDecisionTasksCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SWFClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ CountPendingDecisionTasksCommandInput,
35
+ CountPendingDecisionTasksCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,34 @@
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 { DeprecateActivityTypeInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface DeprecateActivityTypeCommandInput extends DeprecateActivityTypeInput {
6
- }
7
- export interface DeprecateActivityTypeCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeprecateActivityTypeCommand extends $Command<DeprecateActivityTypeCommandInput, DeprecateActivityTypeCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: DeprecateActivityTypeCommandInput;
12
- constructor(input: DeprecateActivityTypeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeprecateActivityTypeCommandInput, DeprecateActivityTypeCommandOutput>;
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 { DeprecateActivityTypeInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface DeprecateActivityTypeCommandInput
15
+ extends DeprecateActivityTypeInput {}
16
+ export interface DeprecateActivityTypeCommandOutput extends __MetadataBearer {}
17
+ export declare class DeprecateActivityTypeCommand extends $Command<
18
+ DeprecateActivityTypeCommandInput,
19
+ DeprecateActivityTypeCommandOutput,
20
+ SWFClientResolvedConfig
21
+ > {
22
+ readonly input: DeprecateActivityTypeCommandInput;
23
+ constructor(input: DeprecateActivityTypeCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: SWFClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<
29
+ DeprecateActivityTypeCommandInput,
30
+ DeprecateActivityTypeCommandOutput
31
+ >;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,30 @@
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 { DeprecateDomainInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface DeprecateDomainCommandInput extends DeprecateDomainInput {
6
- }
7
- export interface DeprecateDomainCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeprecateDomainCommand extends $Command<DeprecateDomainCommandInput, DeprecateDomainCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: DeprecateDomainCommandInput;
12
- constructor(input: DeprecateDomainCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeprecateDomainCommandInput, DeprecateDomainCommandOutput>;
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 { DeprecateDomainInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface DeprecateDomainCommandInput extends DeprecateDomainInput {}
15
+ export interface DeprecateDomainCommandOutput extends __MetadataBearer {}
16
+ export declare class DeprecateDomainCommand extends $Command<
17
+ DeprecateDomainCommandInput,
18
+ DeprecateDomainCommandOutput,
19
+ SWFClientResolvedConfig
20
+ > {
21
+ readonly input: DeprecateDomainCommandInput;
22
+ constructor(input: DeprecateDomainCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: SWFClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<DeprecateDomainCommandInput, DeprecateDomainCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,34 @@
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 { DeprecateWorkflowTypeInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface DeprecateWorkflowTypeCommandInput extends DeprecateWorkflowTypeInput {
6
- }
7
- export interface DeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeprecateWorkflowTypeCommand extends $Command<DeprecateWorkflowTypeCommandInput, DeprecateWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: DeprecateWorkflowTypeCommandInput;
12
- constructor(input: DeprecateWorkflowTypeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeprecateWorkflowTypeCommandInput, DeprecateWorkflowTypeCommandOutput>;
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 { DeprecateWorkflowTypeInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface DeprecateWorkflowTypeCommandInput
15
+ extends DeprecateWorkflowTypeInput {}
16
+ export interface DeprecateWorkflowTypeCommandOutput extends __MetadataBearer {}
17
+ export declare class DeprecateWorkflowTypeCommand extends $Command<
18
+ DeprecateWorkflowTypeCommandInput,
19
+ DeprecateWorkflowTypeCommandOutput,
20
+ SWFClientResolvedConfig
21
+ > {
22
+ readonly input: DeprecateWorkflowTypeCommandInput;
23
+ constructor(input: DeprecateWorkflowTypeCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: SWFClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<
29
+ DeprecateWorkflowTypeCommandInput,
30
+ DeprecateWorkflowTypeCommandOutput
31
+ >;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,39 @@
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 { ActivityTypeDetail, DescribeActivityTypeInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface DescribeActivityTypeCommandInput extends DescribeActivityTypeInput {
6
- }
7
- export interface DescribeActivityTypeCommandOutput extends ActivityTypeDetail, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeActivityTypeCommand extends $Command<DescribeActivityTypeCommandInput, DescribeActivityTypeCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: DescribeActivityTypeCommandInput;
12
- constructor(input: DescribeActivityTypeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeActivityTypeCommandInput, DescribeActivityTypeCommandOutput>;
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 {
9
+ ActivityTypeDetail,
10
+ DescribeActivityTypeInput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SWFClientResolvedConfig,
16
+ } from "../SWFClient";
17
+ export interface DescribeActivityTypeCommandInput
18
+ extends DescribeActivityTypeInput {}
19
+ export interface DescribeActivityTypeCommandOutput
20
+ extends ActivityTypeDetail,
21
+ __MetadataBearer {}
22
+ export declare class DescribeActivityTypeCommand extends $Command<
23
+ DescribeActivityTypeCommandInput,
24
+ DescribeActivityTypeCommandOutput,
25
+ SWFClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeActivityTypeCommandInput;
28
+ constructor(input: DescribeActivityTypeCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SWFClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeActivityTypeCommandInput,
35
+ DescribeActivityTypeCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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 { DescribeDomainInput, DomainDetail } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface DescribeDomainCommandInput extends DescribeDomainInput {
6
- }
7
- export interface DescribeDomainCommandOutput extends DomainDetail, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeDomainCommand extends $Command<DescribeDomainCommandInput, DescribeDomainCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: DescribeDomainCommandInput;
12
- constructor(input: DescribeDomainCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDomainCommandInput, DescribeDomainCommandOutput>;
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 { DescribeDomainInput, DomainDetail } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface DescribeDomainCommandInput extends DescribeDomainInput {}
15
+ export interface DescribeDomainCommandOutput
16
+ extends DomainDetail,
17
+ __MetadataBearer {}
18
+ export declare class DescribeDomainCommand extends $Command<
19
+ DescribeDomainCommandInput,
20
+ DescribeDomainCommandOutput,
21
+ SWFClientResolvedConfig
22
+ > {
23
+ readonly input: DescribeDomainCommandInput;
24
+ constructor(input: DescribeDomainCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SWFClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DescribeDomainCommandInput, DescribeDomainCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
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 { DescribeWorkflowExecutionInput, WorkflowExecutionDetail } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface DescribeWorkflowExecutionCommandInput extends DescribeWorkflowExecutionInput {
6
- }
7
- export interface DescribeWorkflowExecutionCommandOutput extends WorkflowExecutionDetail, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeWorkflowExecutionCommand extends $Command<DescribeWorkflowExecutionCommandInput, DescribeWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: DescribeWorkflowExecutionCommandInput;
12
- constructor(input: DescribeWorkflowExecutionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeWorkflowExecutionCommandInput, DescribeWorkflowExecutionCommandOutput>;
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 {
9
+ DescribeWorkflowExecutionInput,
10
+ WorkflowExecutionDetail,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SWFClientResolvedConfig,
16
+ } from "../SWFClient";
17
+ export interface DescribeWorkflowExecutionCommandInput
18
+ extends DescribeWorkflowExecutionInput {}
19
+ export interface DescribeWorkflowExecutionCommandOutput
20
+ extends WorkflowExecutionDetail,
21
+ __MetadataBearer {}
22
+ export declare class DescribeWorkflowExecutionCommand extends $Command<
23
+ DescribeWorkflowExecutionCommandInput,
24
+ DescribeWorkflowExecutionCommandOutput,
25
+ SWFClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeWorkflowExecutionCommandInput;
28
+ constructor(input: DescribeWorkflowExecutionCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SWFClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeWorkflowExecutionCommandInput,
35
+ DescribeWorkflowExecutionCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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 { DescribeWorkflowTypeInput, WorkflowTypeDetail } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface DescribeWorkflowTypeCommandInput extends DescribeWorkflowTypeInput {
6
- }
7
- export interface DescribeWorkflowTypeCommandOutput extends WorkflowTypeDetail, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeWorkflowTypeCommand extends $Command<DescribeWorkflowTypeCommandInput, DescribeWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: DescribeWorkflowTypeCommandInput;
12
- constructor(input: DescribeWorkflowTypeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeWorkflowTypeCommandInput, DescribeWorkflowTypeCommandOutput>;
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 {
9
+ DescribeWorkflowTypeInput,
10
+ WorkflowTypeDetail,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SWFClientResolvedConfig,
16
+ } from "../SWFClient";
17
+ export interface DescribeWorkflowTypeCommandInput
18
+ extends DescribeWorkflowTypeInput {}
19
+ export interface DescribeWorkflowTypeCommandOutput
20
+ extends WorkflowTypeDetail,
21
+ __MetadataBearer {}
22
+ export declare class DescribeWorkflowTypeCommand extends $Command<
23
+ DescribeWorkflowTypeCommandInput,
24
+ DescribeWorkflowTypeCommandOutput,
25
+ SWFClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeWorkflowTypeCommandInput;
28
+ constructor(input: DescribeWorkflowTypeCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SWFClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeWorkflowTypeCommandInput,
35
+ DescribeWorkflowTypeCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
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 { GetWorkflowExecutionHistoryInput, History } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface GetWorkflowExecutionHistoryCommandInput extends GetWorkflowExecutionHistoryInput {
6
- }
7
- export interface GetWorkflowExecutionHistoryCommandOutput extends History, __MetadataBearer {
8
- }
9
-
10
- export declare class GetWorkflowExecutionHistoryCommand extends $Command<GetWorkflowExecutionHistoryCommandInput, GetWorkflowExecutionHistoryCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: GetWorkflowExecutionHistoryCommandInput;
12
- constructor(input: GetWorkflowExecutionHistoryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetWorkflowExecutionHistoryCommandInput, GetWorkflowExecutionHistoryCommandOutput>;
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 { GetWorkflowExecutionHistoryInput, History } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface GetWorkflowExecutionHistoryCommandInput
15
+ extends GetWorkflowExecutionHistoryInput {}
16
+ export interface GetWorkflowExecutionHistoryCommandOutput
17
+ extends History,
18
+ __MetadataBearer {}
19
+ export declare class GetWorkflowExecutionHistoryCommand extends $Command<
20
+ GetWorkflowExecutionHistoryCommandInput,
21
+ GetWorkflowExecutionHistoryCommandOutput,
22
+ SWFClientResolvedConfig
23
+ > {
24
+ readonly input: GetWorkflowExecutionHistoryCommandInput;
25
+ constructor(input: GetWorkflowExecutionHistoryCommandInput);
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: SWFClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ GetWorkflowExecutionHistoryCommandInput,
32
+ GetWorkflowExecutionHistoryCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -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 { ActivityTypeInfos, ListActivityTypesInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface ListActivityTypesCommandInput extends ListActivityTypesInput {
6
- }
7
- export interface ListActivityTypesCommandOutput extends ActivityTypeInfos, __MetadataBearer {
8
- }
9
-
10
- export declare class ListActivityTypesCommand extends $Command<ListActivityTypesCommandInput, ListActivityTypesCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: ListActivityTypesCommandInput;
12
- constructor(input: ListActivityTypesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListActivityTypesCommandInput, ListActivityTypesCommandOutput>;
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 { ActivityTypeInfos, ListActivityTypesInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface ListActivityTypesCommandInput extends ListActivityTypesInput {}
15
+ export interface ListActivityTypesCommandOutput
16
+ extends ActivityTypeInfos,
17
+ __MetadataBearer {}
18
+ export declare class ListActivityTypesCommand extends $Command<
19
+ ListActivityTypesCommandInput,
20
+ ListActivityTypesCommandOutput,
21
+ SWFClientResolvedConfig
22
+ > {
23
+ readonly input: ListActivityTypesCommandInput;
24
+ constructor(input: ListActivityTypesCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SWFClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListActivityTypesCommandInput, ListActivityTypesCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
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 { ListClosedWorkflowExecutionsInput, WorkflowExecutionInfos } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface ListClosedWorkflowExecutionsCommandInput extends ListClosedWorkflowExecutionsInput {
6
- }
7
- export interface ListClosedWorkflowExecutionsCommandOutput extends WorkflowExecutionInfos, __MetadataBearer {
8
- }
9
-
10
- export declare class ListClosedWorkflowExecutionsCommand extends $Command<ListClosedWorkflowExecutionsCommandInput, ListClosedWorkflowExecutionsCommandOutput, SWFClientResolvedConfig> {
11
- readonly input: ListClosedWorkflowExecutionsCommandInput;
12
- constructor(input: ListClosedWorkflowExecutionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListClosedWorkflowExecutionsCommandInput, ListClosedWorkflowExecutionsCommandOutput>;
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 {
9
+ ListClosedWorkflowExecutionsInput,
10
+ WorkflowExecutionInfos,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SWFClientResolvedConfig,
16
+ } from "../SWFClient";
17
+ export interface ListClosedWorkflowExecutionsCommandInput
18
+ extends ListClosedWorkflowExecutionsInput {}
19
+ export interface ListClosedWorkflowExecutionsCommandOutput
20
+ extends WorkflowExecutionInfos,
21
+ __MetadataBearer {}
22
+ export declare class ListClosedWorkflowExecutionsCommand extends $Command<
23
+ ListClosedWorkflowExecutionsCommandInput,
24
+ ListClosedWorkflowExecutionsCommandOutput,
25
+ SWFClientResolvedConfig
26
+ > {
27
+ readonly input: ListClosedWorkflowExecutionsCommandInput;
28
+ constructor(input: ListClosedWorkflowExecutionsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SWFClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListClosedWorkflowExecutionsCommandInput,
35
+ ListClosedWorkflowExecutionsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,8 +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 { DomainInfos, ListDomainsInput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
- export interface ListDomainsCommandInput extends ListDomainsInput {
6
- }
7
- export interface ListDomainsCommandOutput extends DomainInfos, __MetadataBearer {
8
- }
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 { DomainInfos, ListDomainsInput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SWFClientResolvedConfig,
13
+ } from "../SWFClient";
14
+ export interface ListDomainsCommandInput extends ListDomainsInput {}
15
+ export interface ListDomainsCommandOutput
16
+ extends DomainInfos,
17
+ __MetadataBearer {}
18
+ export declare class ListDomainsCommand extends $Command<
19
+ ListDomainsCommandInput,
20
+ ListDomainsCommandOutput,
21
+ SWFClientResolvedConfig
22
+ > {
23
+ readonly input: ListDomainsCommandInput;
24
+ constructor(input: ListDomainsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SWFClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListDomainsCommandInput, ListDomainsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }