@aws-sdk/client-swf 3.295.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/dist-types/SWF.d.ts +38 -0
  2. package/dist-types/SWFClient.d.ts +24 -4
  3. package/dist-types/commands/CountClosedWorkflowExecutionsCommand.d.ts +16 -0
  4. package/dist-types/commands/CountOpenWorkflowExecutionsCommand.d.ts +16 -0
  5. package/dist-types/commands/CountPendingActivityTasksCommand.d.ts +16 -0
  6. package/dist-types/commands/CountPendingDecisionTasksCommand.d.ts +16 -0
  7. package/dist-types/commands/DeprecateActivityTypeCommand.d.ts +16 -0
  8. package/dist-types/commands/DeprecateDomainCommand.d.ts +16 -0
  9. package/dist-types/commands/DeprecateWorkflowTypeCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeActivityTypeCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeDomainCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeWorkflowExecutionCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeWorkflowTypeCommand.d.ts +16 -0
  14. package/dist-types/commands/GetWorkflowExecutionHistoryCommand.d.ts +16 -0
  15. package/dist-types/commands/ListActivityTypesCommand.d.ts +16 -0
  16. package/dist-types/commands/ListClosedWorkflowExecutionsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListOpenWorkflowExecutionsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  20. package/dist-types/commands/ListWorkflowTypesCommand.d.ts +16 -0
  21. package/dist-types/commands/PollForActivityTaskCommand.d.ts +16 -0
  22. package/dist-types/commands/PollForDecisionTaskCommand.d.ts +16 -0
  23. package/dist-types/commands/RecordActivityTaskHeartbeatCommand.d.ts +16 -0
  24. package/dist-types/commands/RegisterActivityTypeCommand.d.ts +16 -0
  25. package/dist-types/commands/RegisterDomainCommand.d.ts +16 -0
  26. package/dist-types/commands/RegisterWorkflowTypeCommand.d.ts +16 -0
  27. package/dist-types/commands/RequestCancelWorkflowExecutionCommand.d.ts +16 -0
  28. package/dist-types/commands/RespondActivityTaskCanceledCommand.d.ts +16 -0
  29. package/dist-types/commands/RespondActivityTaskCompletedCommand.d.ts +16 -0
  30. package/dist-types/commands/RespondActivityTaskFailedCommand.d.ts +16 -0
  31. package/dist-types/commands/RespondDecisionTaskCompletedCommand.d.ts +16 -0
  32. package/dist-types/commands/SignalWorkflowExecutionCommand.d.ts +16 -0
  33. package/dist-types/commands/StartWorkflowExecutionCommand.d.ts +16 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  35. package/dist-types/commands/TerminateWorkflowExecutionCommand.d.ts +16 -0
  36. package/dist-types/commands/UndeprecateActivityTypeCommand.d.ts +16 -0
  37. package/dist-types/commands/UndeprecateDomainCommand.d.ts +16 -0
  38. package/dist-types/commands/UndeprecateWorkflowTypeCommand.d.ts +16 -0
  39. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  40. package/dist-types/models/SWFServiceException.d.ts +2 -0
  41. package/dist-types/models/models_0.d.ts +303 -0
  42. package/dist-types/pagination/GetWorkflowExecutionHistoryPaginator.d.ts +3 -0
  43. package/dist-types/pagination/Interfaces.d.ts +3 -0
  44. package/dist-types/pagination/ListActivityTypesPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListClosedWorkflowExecutionsPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListOpenWorkflowExecutionsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListWorkflowTypesPaginator.d.ts +3 -0
  49. package/dist-types/pagination/PollForDecisionTaskPaginator.d.ts +3 -0
  50. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DeprecateDomainInput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeprecateDomainCommand}.
8
10
  */
9
11
  export interface DeprecateDomainCommandInput extends DeprecateDomainInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeprecateDomainCommand}.
13
17
  */
14
18
  export interface DeprecateDomainCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deprecates the specified domain. After a domain has been deprecated it cannot be used
18
23
  * to create new workflow executions or register new types. However, you can still use visibility
19
24
  * actions on this domain. Deprecating a domain also deprecates all activity and workflow types
@@ -56,6 +61,8 @@ export interface DeprecateDomainCommandOutput extends __MetadataBearer {
56
61
  * const response = await client.send(command);
57
62
  * ```
58
63
  *
64
+ * @param DeprecateDomainCommandInput - {@link DeprecateDomainCommandInput}
65
+ * @returns {@link DeprecateDomainCommandOutput}
59
66
  * @see {@link DeprecateDomainCommandInput} for command's `input` shape.
60
67
  * @see {@link DeprecateDomainCommandOutput} for command's `response` shape.
61
68
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -74,11 +81,20 @@ export interface DeprecateDomainCommandOutput extends __MetadataBearer {
74
81
  export declare class DeprecateDomainCommand extends $Command<DeprecateDomainCommandInput, DeprecateDomainCommandOutput, SWFClientResolvedConfig> {
75
82
  readonly input: DeprecateDomainCommandInput;
76
83
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
84
+ /**
85
+ * @public
86
+ */
77
87
  constructor(input: DeprecateDomainCommandInput);
78
88
  /**
79
89
  * @internal
80
90
  */
81
91
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeprecateDomainCommandInput, DeprecateDomainCommandOutput>;
92
+ /**
93
+ * @internal
94
+ */
82
95
  private serialize;
96
+ /**
97
+ * @internal
98
+ */
83
99
  private deserialize;
84
100
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DeprecateWorkflowTypeInput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeprecateWorkflowTypeCommand}.
8
10
  */
9
11
  export interface DeprecateWorkflowTypeCommandInput extends DeprecateWorkflowTypeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeprecateWorkflowTypeCommand}.
13
17
  */
14
18
  export interface DeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deprecates the specified <i>workflow type</i>. After a workflow type has
18
23
  * been deprecated, you cannot create new executions of that type. Executions that were started
19
24
  * before the type was deprecated continues to run. A deprecated workflow type may still be used
@@ -68,6 +73,8 @@ export interface DeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
68
73
  * const response = await client.send(command);
69
74
  * ```
70
75
  *
76
+ * @param DeprecateWorkflowTypeCommandInput - {@link DeprecateWorkflowTypeCommandInput}
77
+ * @returns {@link DeprecateWorkflowTypeCommandOutput}
71
78
  * @see {@link DeprecateWorkflowTypeCommandInput} for command's `input` shape.
72
79
  * @see {@link DeprecateWorkflowTypeCommandOutput} for command's `response` shape.
73
80
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -86,11 +93,20 @@ export interface DeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
86
93
  export declare class DeprecateWorkflowTypeCommand extends $Command<DeprecateWorkflowTypeCommandInput, DeprecateWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
87
94
  readonly input: DeprecateWorkflowTypeCommandInput;
88
95
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
96
+ /**
97
+ * @public
98
+ */
89
99
  constructor(input: DeprecateWorkflowTypeCommandInput);
90
100
  /**
91
101
  * @internal
92
102
  */
93
103
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeprecateWorkflowTypeCommandInput, DeprecateWorkflowTypeCommandOutput>;
104
+ /**
105
+ * @internal
106
+ */
94
107
  private serialize;
108
+ /**
109
+ * @internal
110
+ */
95
111
  private deserialize;
96
112
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ActivityTypeDetail, DescribeActivityTypeInput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeActivityTypeCommand}.
8
10
  */
9
11
  export interface DescribeActivityTypeCommandInput extends DescribeActivityTypeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeActivityTypeCommand}.
13
17
  */
14
18
  export interface DescribeActivityTypeCommandOutput extends ActivityTypeDetail, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about the specified activity type. This includes configuration
18
23
  * settings provided when the type was registered and other general information about the
19
24
  * type.</p>
@@ -63,6 +68,8 @@ export interface DescribeActivityTypeCommandOutput extends ActivityTypeDetail, _
63
68
  * const response = await client.send(command);
64
69
  * ```
65
70
  *
71
+ * @param DescribeActivityTypeCommandInput - {@link DescribeActivityTypeCommandInput}
72
+ * @returns {@link DescribeActivityTypeCommandOutput}
66
73
  * @see {@link DescribeActivityTypeCommandInput} for command's `input` shape.
67
74
  * @see {@link DescribeActivityTypeCommandOutput} for command's `response` shape.
68
75
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -78,11 +85,20 @@ export interface DescribeActivityTypeCommandOutput extends ActivityTypeDetail, _
78
85
  export declare class DescribeActivityTypeCommand extends $Command<DescribeActivityTypeCommandInput, DescribeActivityTypeCommandOutput, SWFClientResolvedConfig> {
79
86
  readonly input: DescribeActivityTypeCommandInput;
80
87
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
88
+ /**
89
+ * @public
90
+ */
81
91
  constructor(input: DescribeActivityTypeCommandInput);
82
92
  /**
83
93
  * @internal
84
94
  */
85
95
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeActivityTypeCommandInput, DescribeActivityTypeCommandOutput>;
96
+ /**
97
+ * @internal
98
+ */
86
99
  private serialize;
100
+ /**
101
+ * @internal
102
+ */
87
103
  private deserialize;
88
104
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DescribeDomainInput, DomainDetail } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeDomainCommand}.
8
10
  */
9
11
  export interface DescribeDomainCommandInput extends DescribeDomainInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeDomainCommand}.
13
17
  */
14
18
  export interface DescribeDomainCommandOutput extends DomainDetail, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about the specified domain, including description and
18
23
  * status.</p>
19
24
  * <p>
@@ -49,6 +54,8 @@ export interface DescribeDomainCommandOutput extends DomainDetail, __MetadataBea
49
54
  * const response = await client.send(command);
50
55
  * ```
51
56
  *
57
+ * @param DescribeDomainCommandInput - {@link DescribeDomainCommandInput}
58
+ * @returns {@link DescribeDomainCommandOutput}
52
59
  * @see {@link DescribeDomainCommandInput} for command's `input` shape.
53
60
  * @see {@link DescribeDomainCommandOutput} for command's `response` shape.
54
61
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -64,11 +71,20 @@ export interface DescribeDomainCommandOutput extends DomainDetail, __MetadataBea
64
71
  export declare class DescribeDomainCommand extends $Command<DescribeDomainCommandInput, DescribeDomainCommandOutput, SWFClientResolvedConfig> {
65
72
  readonly input: DescribeDomainCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: DescribeDomainCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDomainCommandInput, DescribeDomainCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DescribeWorkflowExecutionInput, WorkflowExecutionDetail } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeWorkflowExecutionCommand}.
8
10
  */
9
11
  export interface DescribeWorkflowExecutionCommandInput extends DescribeWorkflowExecutionInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeWorkflowExecutionCommand}.
13
17
  */
14
18
  export interface DescribeWorkflowExecutionCommandOutput extends WorkflowExecutionDetail, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about the specified workflow execution including its type and some
18
23
  * statistics.</p>
19
24
  * <note>
@@ -53,6 +58,8 @@ export interface DescribeWorkflowExecutionCommandOutput extends WorkflowExecutio
53
58
  * const response = await client.send(command);
54
59
  * ```
55
60
  *
61
+ * @param DescribeWorkflowExecutionCommandInput - {@link DescribeWorkflowExecutionCommandInput}
62
+ * @returns {@link DescribeWorkflowExecutionCommandOutput}
56
63
  * @see {@link DescribeWorkflowExecutionCommandInput} for command's `input` shape.
57
64
  * @see {@link DescribeWorkflowExecutionCommandOutput} for command's `response` shape.
58
65
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -68,11 +75,20 @@ export interface DescribeWorkflowExecutionCommandOutput extends WorkflowExecutio
68
75
  export declare class DescribeWorkflowExecutionCommand extends $Command<DescribeWorkflowExecutionCommandInput, DescribeWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
69
76
  readonly input: DescribeWorkflowExecutionCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: DescribeWorkflowExecutionCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeWorkflowExecutionCommandInput, DescribeWorkflowExecutionCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DescribeWorkflowTypeInput, WorkflowTypeDetail } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeWorkflowTypeCommand}.
8
10
  */
9
11
  export interface DescribeWorkflowTypeCommandInput extends DescribeWorkflowTypeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeWorkflowTypeCommand}.
13
17
  */
14
18
  export interface DescribeWorkflowTypeCommandOutput extends WorkflowTypeDetail, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about the specified <i>workflow type</i>. This
18
23
  * includes configuration settings specified when the type was registered and other information
19
24
  * such as creation date, current status, etc.</p>
@@ -63,6 +68,8 @@ export interface DescribeWorkflowTypeCommandOutput extends WorkflowTypeDetail, _
63
68
  * const response = await client.send(command);
64
69
  * ```
65
70
  *
71
+ * @param DescribeWorkflowTypeCommandInput - {@link DescribeWorkflowTypeCommandInput}
72
+ * @returns {@link DescribeWorkflowTypeCommandOutput}
66
73
  * @see {@link DescribeWorkflowTypeCommandInput} for command's `input` shape.
67
74
  * @see {@link DescribeWorkflowTypeCommandOutput} for command's `response` shape.
68
75
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -78,11 +85,20 @@ export interface DescribeWorkflowTypeCommandOutput extends WorkflowTypeDetail, _
78
85
  export declare class DescribeWorkflowTypeCommand extends $Command<DescribeWorkflowTypeCommandInput, DescribeWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
79
86
  readonly input: DescribeWorkflowTypeCommandInput;
80
87
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
88
+ /**
89
+ * @public
90
+ */
81
91
  constructor(input: DescribeWorkflowTypeCommandInput);
82
92
  /**
83
93
  * @internal
84
94
  */
85
95
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeWorkflowTypeCommandInput, DescribeWorkflowTypeCommandOutput>;
96
+ /**
97
+ * @internal
98
+ */
86
99
  private serialize;
100
+ /**
101
+ * @internal
102
+ */
87
103
  private deserialize;
88
104
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetWorkflowExecutionHistoryInput, History } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetWorkflowExecutionHistoryCommand}.
8
10
  */
9
11
  export interface GetWorkflowExecutionHistoryCommandInput extends GetWorkflowExecutionHistoryInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetWorkflowExecutionHistoryCommand}.
13
17
  */
14
18
  export interface GetWorkflowExecutionHistoryCommandOutput extends History, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the history of the specified workflow execution. The results may be split into
18
23
  * multiple pages. To retrieve subsequent pages, make the call again using the
19
24
  * <code>nextPageToken</code> returned by the initial call.</p>
@@ -54,6 +59,8 @@ export interface GetWorkflowExecutionHistoryCommandOutput extends History, __Met
54
59
  * const response = await client.send(command);
55
60
  * ```
56
61
  *
62
+ * @param GetWorkflowExecutionHistoryCommandInput - {@link GetWorkflowExecutionHistoryCommandInput}
63
+ * @returns {@link GetWorkflowExecutionHistoryCommandOutput}
57
64
  * @see {@link GetWorkflowExecutionHistoryCommandInput} for command's `input` shape.
58
65
  * @see {@link GetWorkflowExecutionHistoryCommandOutput} for command's `response` shape.
59
66
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -69,11 +76,20 @@ export interface GetWorkflowExecutionHistoryCommandOutput extends History, __Met
69
76
  export declare class GetWorkflowExecutionHistoryCommand extends $Command<GetWorkflowExecutionHistoryCommandInput, GetWorkflowExecutionHistoryCommandOutput, SWFClientResolvedConfig> {
70
77
  readonly input: GetWorkflowExecutionHistoryCommandInput;
71
78
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
+ /**
80
+ * @public
81
+ */
72
82
  constructor(input: GetWorkflowExecutionHistoryCommandInput);
73
83
  /**
74
84
  * @internal
75
85
  */
76
86
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetWorkflowExecutionHistoryCommandInput, GetWorkflowExecutionHistoryCommandOutput>;
87
+ /**
88
+ * @internal
89
+ */
77
90
  private serialize;
91
+ /**
92
+ * @internal
93
+ */
78
94
  private deserialize;
79
95
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ActivityTypeInfos, ListActivityTypesInput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListActivityTypesCommand}.
8
10
  */
9
11
  export interface ListActivityTypesCommandInput extends ListActivityTypesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListActivityTypesCommand}.
13
17
  */
14
18
  export interface ListActivityTypesCommandOutput extends ActivityTypeInfos, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about all activities registered in the specified domain that match
18
23
  * the specified name and registration status. The result includes information like creation
19
24
  * date, current status of the activity, etc. The results may be split into multiple pages. To
@@ -52,6 +57,8 @@ export interface ListActivityTypesCommandOutput extends ActivityTypeInfos, __Met
52
57
  * const response = await client.send(command);
53
58
  * ```
54
59
  *
60
+ * @param ListActivityTypesCommandInput - {@link ListActivityTypesCommandInput}
61
+ * @returns {@link ListActivityTypesCommandOutput}
55
62
  * @see {@link ListActivityTypesCommandInput} for command's `input` shape.
56
63
  * @see {@link ListActivityTypesCommandOutput} for command's `response` shape.
57
64
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -67,11 +74,20 @@ export interface ListActivityTypesCommandOutput extends ActivityTypeInfos, __Met
67
74
  export declare class ListActivityTypesCommand extends $Command<ListActivityTypesCommandInput, ListActivityTypesCommandOutput, SWFClientResolvedConfig> {
68
75
  readonly input: ListActivityTypesCommandInput;
69
76
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
+ /**
78
+ * @public
79
+ */
70
80
  constructor(input: ListActivityTypesCommandInput);
71
81
  /**
72
82
  * @internal
73
83
  */
74
84
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListActivityTypesCommandInput, ListActivityTypesCommandOutput>;
85
+ /**
86
+ * @internal
87
+ */
75
88
  private serialize;
89
+ /**
90
+ * @internal
91
+ */
76
92
  private deserialize;
77
93
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListClosedWorkflowExecutionsInput, WorkflowExecutionInfos } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListClosedWorkflowExecutionsCommand}.
8
10
  */
9
11
  export interface ListClosedWorkflowExecutionsCommandInput extends ListClosedWorkflowExecutionsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListClosedWorkflowExecutionsCommand}.
13
17
  */
14
18
  export interface ListClosedWorkflowExecutionsCommandOutput extends WorkflowExecutionInfos, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of closed workflow executions in the specified domain that meet the
18
23
  * filtering criteria. The results may be split into multiple pages. To retrieve subsequent
19
24
  * pages, make the call again using the nextPageToken returned by the initial call.</p>
@@ -72,6 +77,8 @@ export interface ListClosedWorkflowExecutionsCommandOutput extends WorkflowExecu
72
77
  * const response = await client.send(command);
73
78
  * ```
74
79
  *
80
+ * @param ListClosedWorkflowExecutionsCommandInput - {@link ListClosedWorkflowExecutionsCommandInput}
81
+ * @returns {@link ListClosedWorkflowExecutionsCommandOutput}
75
82
  * @see {@link ListClosedWorkflowExecutionsCommandInput} for command's `input` shape.
76
83
  * @see {@link ListClosedWorkflowExecutionsCommandOutput} for command's `response` shape.
77
84
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -87,11 +94,20 @@ export interface ListClosedWorkflowExecutionsCommandOutput extends WorkflowExecu
87
94
  export declare class ListClosedWorkflowExecutionsCommand extends $Command<ListClosedWorkflowExecutionsCommandInput, ListClosedWorkflowExecutionsCommandOutput, SWFClientResolvedConfig> {
88
95
  readonly input: ListClosedWorkflowExecutionsCommandInput;
89
96
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
97
+ /**
98
+ * @public
99
+ */
90
100
  constructor(input: ListClosedWorkflowExecutionsCommandInput);
91
101
  /**
92
102
  * @internal
93
103
  */
94
104
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListClosedWorkflowExecutionsCommandInput, ListClosedWorkflowExecutionsCommandOutput>;
105
+ /**
106
+ * @internal
107
+ */
95
108
  private serialize;
109
+ /**
110
+ * @internal
111
+ */
96
112
  private deserialize;
97
113
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DomainInfos, ListDomainsInput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDomainsCommand}.
8
10
  */
9
11
  export interface ListDomainsCommandInput extends ListDomainsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDomainsCommand}.
13
17
  */
14
18
  export interface ListDomainsCommandOutput extends DomainInfos, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the list of domains registered in the account. The results may be split into
18
23
  * multiple pages. To retrieve subsequent pages, make the call again using the nextPageToken
19
24
  * returned by the initial call.</p>
@@ -56,6 +61,8 @@ export interface ListDomainsCommandOutput extends DomainInfos, __MetadataBearer
56
61
  * const response = await client.send(command);
57
62
  * ```
58
63
  *
64
+ * @param ListDomainsCommandInput - {@link ListDomainsCommandInput}
65
+ * @returns {@link ListDomainsCommandOutput}
59
66
  * @see {@link ListDomainsCommandInput} for command's `input` shape.
60
67
  * @see {@link ListDomainsCommandOutput} for command's `response` shape.
61
68
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -68,11 +75,20 @@ export interface ListDomainsCommandOutput extends DomainInfos, __MetadataBearer
68
75
  export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, SWFClientResolvedConfig> {
69
76
  readonly input: ListDomainsCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: ListDomainsCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDomainsCommandInput, ListDomainsCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListOpenWorkflowExecutionsInput, WorkflowExecutionInfos } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListOpenWorkflowExecutionsCommand}.
8
10
  */
9
11
  export interface ListOpenWorkflowExecutionsCommandInput extends ListOpenWorkflowExecutionsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListOpenWorkflowExecutionsCommand}.
13
17
  */
14
18
  export interface ListOpenWorkflowExecutionsCommandOutput extends WorkflowExecutionInfos, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of open workflow executions in the specified domain that meet the
18
23
  * filtering criteria. The results may be split into multiple pages. To retrieve subsequent
19
24
  * pages, make the call again using the nextPageToken returned by the initial call.</p>
@@ -72,6 +77,8 @@ export interface ListOpenWorkflowExecutionsCommandOutput extends WorkflowExecuti
72
77
  * const response = await client.send(command);
73
78
  * ```
74
79
  *
80
+ * @param ListOpenWorkflowExecutionsCommandInput - {@link ListOpenWorkflowExecutionsCommandInput}
81
+ * @returns {@link ListOpenWorkflowExecutionsCommandOutput}
75
82
  * @see {@link ListOpenWorkflowExecutionsCommandInput} for command's `input` shape.
76
83
  * @see {@link ListOpenWorkflowExecutionsCommandOutput} for command's `response` shape.
77
84
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -87,11 +94,20 @@ export interface ListOpenWorkflowExecutionsCommandOutput extends WorkflowExecuti
87
94
  export declare class ListOpenWorkflowExecutionsCommand extends $Command<ListOpenWorkflowExecutionsCommandInput, ListOpenWorkflowExecutionsCommandOutput, SWFClientResolvedConfig> {
88
95
  readonly input: ListOpenWorkflowExecutionsCommandInput;
89
96
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
97
+ /**
98
+ * @public
99
+ */
90
100
  constructor(input: ListOpenWorkflowExecutionsCommandInput);
91
101
  /**
92
102
  * @internal
93
103
  */
94
104
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOpenWorkflowExecutionsCommandInput, ListOpenWorkflowExecutionsCommandOutput>;
105
+ /**
106
+ * @internal
107
+ */
95
108
  private serialize;
109
+ /**
110
+ * @internal
111
+ */
96
112
  private deserialize;
97
113
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List tags for a given domain.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
43
50
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SWFClientResolvedConfig> {
44
51
  readonly input: ListTagsForResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListTagsForResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListWorkflowTypesInput, WorkflowTypeInfos } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListWorkflowTypesCommand}.
8
10
  */
9
11
  export interface ListWorkflowTypesCommandInput extends ListWorkflowTypesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListWorkflowTypesCommand}.
13
17
  */
14
18
  export interface ListWorkflowTypesCommandOutput extends WorkflowTypeInfos, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about workflow types in the specified domain. The results may be
18
23
  * split into multiple pages that can be retrieved by making the call repeatedly.</p>
19
24
  * <p>
@@ -49,6 +54,8 @@ export interface ListWorkflowTypesCommandOutput extends WorkflowTypeInfos, __Met
49
54
  * const response = await client.send(command);
50
55
  * ```
51
56
  *
57
+ * @param ListWorkflowTypesCommandInput - {@link ListWorkflowTypesCommandInput}
58
+ * @returns {@link ListWorkflowTypesCommandOutput}
52
59
  * @see {@link ListWorkflowTypesCommandInput} for command's `input` shape.
53
60
  * @see {@link ListWorkflowTypesCommandOutput} for command's `response` shape.
54
61
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -64,11 +71,20 @@ export interface ListWorkflowTypesCommandOutput extends WorkflowTypeInfos, __Met
64
71
  export declare class ListWorkflowTypesCommand extends $Command<ListWorkflowTypesCommandInput, ListWorkflowTypesCommandOutput, SWFClientResolvedConfig> {
65
72
  readonly input: ListWorkflowTypesCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: ListWorkflowTypesCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkflowTypesCommandInput, ListWorkflowTypesCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }