@aws-sdk/client-swf 3.169.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 +8 -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,41 @@
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
+
23
+ export declare class CountPendingDecisionTasksCommand extends $Command<
24
+ CountPendingDecisionTasksCommandInput,
25
+ CountPendingDecisionTasksCommandOutput,
26
+ SWFClientResolvedConfig
27
+ > {
28
+ readonly input: CountPendingDecisionTasksCommandInput;
29
+ constructor(input: CountPendingDecisionTasksCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SWFClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CountPendingDecisionTasksCommandInput,
37
+ CountPendingDecisionTasksCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { 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
+
18
+ export declare class DeprecateActivityTypeCommand extends $Command<
19
+ DeprecateActivityTypeCommandInput,
20
+ DeprecateActivityTypeCommandOutput,
21
+ SWFClientResolvedConfig
22
+ > {
23
+ readonly input: DeprecateActivityTypeCommandInput;
24
+ constructor(input: DeprecateActivityTypeCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: SWFClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ DeprecateActivityTypeCommandInput,
32
+ DeprecateActivityTypeCommandOutput
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 { 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
+
17
+ export declare class DeprecateDomainCommand extends $Command<
18
+ DeprecateDomainCommandInput,
19
+ DeprecateDomainCommandOutput,
20
+ SWFClientResolvedConfig
21
+ > {
22
+ readonly input: DeprecateDomainCommandInput;
23
+ constructor(input: DeprecateDomainCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SWFClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeprecateDomainCommandInput, DeprecateDomainCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { 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
+
18
+ export declare class DeprecateWorkflowTypeCommand extends $Command<
19
+ DeprecateWorkflowTypeCommandInput,
20
+ DeprecateWorkflowTypeCommandOutput,
21
+ SWFClientResolvedConfig
22
+ > {
23
+ readonly input: DeprecateWorkflowTypeCommandInput;
24
+ constructor(input: DeprecateWorkflowTypeCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: SWFClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ DeprecateWorkflowTypeCommandInput,
32
+ DeprecateWorkflowTypeCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class DescribeActivityTypeCommand extends $Command<
24
+ DescribeActivityTypeCommandInput,
25
+ DescribeActivityTypeCommandOutput,
26
+ SWFClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeActivityTypeCommandInput;
29
+ constructor(input: DescribeActivityTypeCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SWFClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeActivityTypeCommandInput,
37
+ DescribeActivityTypeCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { 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
+
19
+ export declare class DescribeDomainCommand extends $Command<
20
+ DescribeDomainCommandInput,
21
+ DescribeDomainCommandOutput,
22
+ SWFClientResolvedConfig
23
+ > {
24
+ readonly input: DescribeDomainCommandInput;
25
+ constructor(input: DescribeDomainCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SWFClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DescribeDomainCommandInput, DescribeDomainCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class DescribeWorkflowExecutionCommand extends $Command<
24
+ DescribeWorkflowExecutionCommandInput,
25
+ DescribeWorkflowExecutionCommandOutput,
26
+ SWFClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeWorkflowExecutionCommandInput;
29
+ constructor(input: DescribeWorkflowExecutionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SWFClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeWorkflowExecutionCommandInput,
37
+ DescribeWorkflowExecutionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class DescribeWorkflowTypeCommand extends $Command<
24
+ DescribeWorkflowTypeCommandInput,
25
+ DescribeWorkflowTypeCommandOutput,
26
+ SWFClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeWorkflowTypeCommandInput;
29
+ constructor(input: DescribeWorkflowTypeCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SWFClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeWorkflowTypeCommandInput,
37
+ DescribeWorkflowTypeCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { 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
+
20
+ export declare class GetWorkflowExecutionHistoryCommand extends $Command<
21
+ GetWorkflowExecutionHistoryCommandInput,
22
+ GetWorkflowExecutionHistoryCommandOutput,
23
+ SWFClientResolvedConfig
24
+ > {
25
+ readonly input: GetWorkflowExecutionHistoryCommandInput;
26
+ constructor(input: GetWorkflowExecutionHistoryCommandInput);
27
+
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SWFClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ GetWorkflowExecutionHistoryCommandInput,
34
+ GetWorkflowExecutionHistoryCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { 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
+
19
+ export declare class ListActivityTypesCommand extends $Command<
20
+ ListActivityTypesCommandInput,
21
+ ListActivityTypesCommandOutput,
22
+ SWFClientResolvedConfig
23
+ > {
24
+ readonly input: ListActivityTypesCommandInput;
25
+ constructor(input: ListActivityTypesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SWFClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListActivityTypesCommandInput, ListActivityTypesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class ListClosedWorkflowExecutionsCommand extends $Command<
24
+ ListClosedWorkflowExecutionsCommandInput,
25
+ ListClosedWorkflowExecutionsCommandOutput,
26
+ SWFClientResolvedConfig
27
+ > {
28
+ readonly input: ListClosedWorkflowExecutionsCommandInput;
29
+ constructor(input: ListClosedWorkflowExecutionsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SWFClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListClosedWorkflowExecutionsCommandInput,
37
+ ListClosedWorkflowExecutionsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }