@aws-sdk/client-swf 3.296.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 +3 -3
@@ -38,6 +38,7 @@ import { UndeprecateWorkflowTypeCommandInput, UndeprecateWorkflowTypeCommandOutp
38
38
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
39
39
  import { SWFClient } from "./SWFClient";
40
40
  /**
41
+ * @public
41
42
  * <fullname>Amazon Simple Workflow Service</fullname>
42
43
  *
43
44
  * <p>The Amazon Simple Workflow Service (Amazon SWF) makes it easy to build applications that use Amazon's cloud to
@@ -57,6 +58,7 @@ import { SWFClient } from "./SWFClient";
57
58
  */
58
59
  export declare class SWF extends SWFClient {
59
60
  /**
61
+ * @public
60
62
  * <p>Returns the number of closed workflow executions within the given domain that meet the
61
63
  * specified filtering criteria.</p>
62
64
  * <note>
@@ -109,6 +111,7 @@ export declare class SWF extends SWFClient {
109
111
  countClosedWorkflowExecutions(args: CountClosedWorkflowExecutionsCommandInput, cb: (err: any, data?: CountClosedWorkflowExecutionsCommandOutput) => void): void;
110
112
  countClosedWorkflowExecutions(args: CountClosedWorkflowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CountClosedWorkflowExecutionsCommandOutput) => void): void;
111
113
  /**
114
+ * @public
112
115
  * <p>Returns the number of open workflow executions within the given domain that meet the
113
116
  * specified filtering criteria.</p>
114
117
  * <note>
@@ -161,6 +164,7 @@ export declare class SWF extends SWFClient {
161
164
  countOpenWorkflowExecutions(args: CountOpenWorkflowExecutionsCommandInput, cb: (err: any, data?: CountOpenWorkflowExecutionsCommandOutput) => void): void;
162
165
  countOpenWorkflowExecutions(args: CountOpenWorkflowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CountOpenWorkflowExecutionsCommandOutput) => void): void;
163
166
  /**
167
+ * @public
164
168
  * <p>Returns the estimated number of activity tasks in the specified task list. The count
165
169
  * returned is an approximation and isn't guaranteed to be exact. If you specify a task list that
166
170
  * no activity task was ever scheduled in then <code>0</code> is returned.</p>
@@ -194,6 +198,7 @@ export declare class SWF extends SWFClient {
194
198
  countPendingActivityTasks(args: CountPendingActivityTasksCommandInput, cb: (err: any, data?: CountPendingActivityTasksCommandOutput) => void): void;
195
199
  countPendingActivityTasks(args: CountPendingActivityTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CountPendingActivityTasksCommandOutput) => void): void;
196
200
  /**
201
+ * @public
197
202
  * <p>Returns the estimated number of decision tasks in the specified task list. The count
198
203
  * returned is an approximation and isn't guaranteed to be exact. If you specify a task list that
199
204
  * no decision task was ever scheduled in then <code>0</code> is returned.</p>
@@ -227,6 +232,7 @@ export declare class SWF extends SWFClient {
227
232
  countPendingDecisionTasks(args: CountPendingDecisionTasksCommandInput, cb: (err: any, data?: CountPendingDecisionTasksCommandOutput) => void): void;
228
233
  countPendingDecisionTasks(args: CountPendingDecisionTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CountPendingDecisionTasksCommandOutput) => void): void;
229
234
  /**
235
+ * @public
230
236
  * <p>Deprecates the specified <i>activity type</i>. After an activity type has
231
237
  * been deprecated, you cannot create new tasks of that activity type. Tasks of this type that
232
238
  * were scheduled before the type was deprecated continue to run.</p>
@@ -275,6 +281,7 @@ export declare class SWF extends SWFClient {
275
281
  deprecateActivityType(args: DeprecateActivityTypeCommandInput, cb: (err: any, data?: DeprecateActivityTypeCommandOutput) => void): void;
276
282
  deprecateActivityType(args: DeprecateActivityTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateActivityTypeCommandOutput) => void): void;
277
283
  /**
284
+ * @public
278
285
  * <p>Deprecates the specified domain. After a domain has been deprecated it cannot be used
279
286
  * to create new workflow executions or register new types. However, you can still use visibility
280
287
  * actions on this domain. Deprecating a domain also deprecates all activity and workflow types
@@ -312,6 +319,7 @@ export declare class SWF extends SWFClient {
312
319
  deprecateDomain(args: DeprecateDomainCommandInput, cb: (err: any, data?: DeprecateDomainCommandOutput) => void): void;
313
320
  deprecateDomain(args: DeprecateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateDomainCommandOutput) => void): void;
314
321
  /**
322
+ * @public
315
323
  * <p>Deprecates the specified <i>workflow type</i>. After a workflow type has
316
324
  * been deprecated, you cannot create new executions of that type. Executions that were started
317
325
  * before the type was deprecated continues to run. A deprecated workflow type may still be used
@@ -361,6 +369,7 @@ export declare class SWF extends SWFClient {
361
369
  deprecateWorkflowType(args: DeprecateWorkflowTypeCommandInput, cb: (err: any, data?: DeprecateWorkflowTypeCommandOutput) => void): void;
362
370
  deprecateWorkflowType(args: DeprecateWorkflowTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateWorkflowTypeCommandOutput) => void): void;
363
371
  /**
372
+ * @public
364
373
  * <p>Returns information about the specified activity type. This includes configuration
365
374
  * settings provided when the type was registered and other general information about the
366
375
  * type.</p>
@@ -405,6 +414,7 @@ export declare class SWF extends SWFClient {
405
414
  describeActivityType(args: DescribeActivityTypeCommandInput, cb: (err: any, data?: DescribeActivityTypeCommandOutput) => void): void;
406
415
  describeActivityType(args: DescribeActivityTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeActivityTypeCommandOutput) => void): void;
407
416
  /**
417
+ * @public
408
418
  * <p>Returns information about the specified domain, including description and
409
419
  * status.</p>
410
420
  * <p>
@@ -435,6 +445,7 @@ export declare class SWF extends SWFClient {
435
445
  describeDomain(args: DescribeDomainCommandInput, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
436
446
  describeDomain(args: DescribeDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
437
447
  /**
448
+ * @public
438
449
  * <p>Returns information about the specified workflow execution including its type and some
439
450
  * statistics.</p>
440
451
  * <note>
@@ -469,6 +480,7 @@ export declare class SWF extends SWFClient {
469
480
  describeWorkflowExecution(args: DescribeWorkflowExecutionCommandInput, cb: (err: any, data?: DescribeWorkflowExecutionCommandOutput) => void): void;
470
481
  describeWorkflowExecution(args: DescribeWorkflowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkflowExecutionCommandOutput) => void): void;
471
482
  /**
483
+ * @public
472
484
  * <p>Returns information about the specified <i>workflow type</i>. This
473
485
  * includes configuration settings specified when the type was registered and other information
474
486
  * such as creation date, current status, etc.</p>
@@ -513,6 +525,7 @@ export declare class SWF extends SWFClient {
513
525
  describeWorkflowType(args: DescribeWorkflowTypeCommandInput, cb: (err: any, data?: DescribeWorkflowTypeCommandOutput) => void): void;
514
526
  describeWorkflowType(args: DescribeWorkflowTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkflowTypeCommandOutput) => void): void;
515
527
  /**
528
+ * @public
516
529
  * <p>Returns the history of the specified workflow execution. The results may be split into
517
530
  * multiple pages. To retrieve subsequent pages, make the call again using the
518
531
  * <code>nextPageToken</code> returned by the initial call.</p>
@@ -548,6 +561,7 @@ export declare class SWF extends SWFClient {
548
561
  getWorkflowExecutionHistory(args: GetWorkflowExecutionHistoryCommandInput, cb: (err: any, data?: GetWorkflowExecutionHistoryCommandOutput) => void): void;
549
562
  getWorkflowExecutionHistory(args: GetWorkflowExecutionHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkflowExecutionHistoryCommandOutput) => void): void;
550
563
  /**
564
+ * @public
551
565
  * <p>Returns information about all activities registered in the specified domain that match
552
566
  * the specified name and registration status. The result includes information like creation
553
567
  * date, current status of the activity, etc. The results may be split into multiple pages. To
@@ -581,6 +595,7 @@ export declare class SWF extends SWFClient {
581
595
  listActivityTypes(args: ListActivityTypesCommandInput, cb: (err: any, data?: ListActivityTypesCommandOutput) => void): void;
582
596
  listActivityTypes(args: ListActivityTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListActivityTypesCommandOutput) => void): void;
583
597
  /**
598
+ * @public
584
599
  * <p>Returns a list of closed workflow executions in the specified domain that meet the
585
600
  * filtering criteria. The results may be split into multiple pages. To retrieve subsequent
586
601
  * pages, make the call again using the nextPageToken returned by the initial call.</p>
@@ -634,6 +649,7 @@ export declare class SWF extends SWFClient {
634
649
  listClosedWorkflowExecutions(args: ListClosedWorkflowExecutionsCommandInput, cb: (err: any, data?: ListClosedWorkflowExecutionsCommandOutput) => void): void;
635
650
  listClosedWorkflowExecutions(args: ListClosedWorkflowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClosedWorkflowExecutionsCommandOutput) => void): void;
636
651
  /**
652
+ * @public
637
653
  * <p>Returns the list of domains registered in the account. The results may be split into
638
654
  * multiple pages. To retrieve subsequent pages, make the call again using the nextPageToken
639
655
  * returned by the initial call.</p>
@@ -671,6 +687,7 @@ export declare class SWF extends SWFClient {
671
687
  listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
672
688
  listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
673
689
  /**
690
+ * @public
674
691
  * <p>Returns a list of open workflow executions in the specified domain that meet the
675
692
  * filtering criteria. The results may be split into multiple pages. To retrieve subsequent
676
693
  * pages, make the call again using the nextPageToken returned by the initial call.</p>
@@ -724,12 +741,14 @@ export declare class SWF extends SWFClient {
724
741
  listOpenWorkflowExecutions(args: ListOpenWorkflowExecutionsCommandInput, cb: (err: any, data?: ListOpenWorkflowExecutionsCommandOutput) => void): void;
725
742
  listOpenWorkflowExecutions(args: ListOpenWorkflowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOpenWorkflowExecutionsCommandOutput) => void): void;
726
743
  /**
744
+ * @public
727
745
  * <p>List tags for a given domain.</p>
728
746
  */
729
747
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
730
748
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
731
749
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
732
750
  /**
751
+ * @public
733
752
  * <p>Returns information about workflow types in the specified domain. The results may be
734
753
  * split into multiple pages that can be retrieved by making the call repeatedly.</p>
735
754
  * <p>
@@ -760,6 +779,7 @@ export declare class SWF extends SWFClient {
760
779
  listWorkflowTypes(args: ListWorkflowTypesCommandInput, cb: (err: any, data?: ListWorkflowTypesCommandOutput) => void): void;
761
780
  listWorkflowTypes(args: ListWorkflowTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkflowTypesCommandOutput) => void): void;
762
781
  /**
782
+ * @public
763
783
  * <p>Used by workers to get an <a>ActivityTask</a> from the specified activity
764
784
  * <code>taskList</code>. This initiates a long poll, where the service holds the HTTP
765
785
  * connection open and responds as soon as a task becomes available. The maximum time the service
@@ -801,6 +821,7 @@ export declare class SWF extends SWFClient {
801
821
  pollForActivityTask(args: PollForActivityTaskCommandInput, cb: (err: any, data?: PollForActivityTaskCommandOutput) => void): void;
802
822
  pollForActivityTask(args: PollForActivityTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PollForActivityTaskCommandOutput) => void): void;
803
823
  /**
824
+ * @public
804
825
  * <p>Used by deciders to get a <a>DecisionTask</a> from the specified decision
805
826
  * <code>taskList</code>. A decision task may be returned for any open workflow execution that
806
827
  * is using the specified task list. The task includes a paginated view of the history of the
@@ -854,6 +875,7 @@ export declare class SWF extends SWFClient {
854
875
  pollForDecisionTask(args: PollForDecisionTaskCommandInput, cb: (err: any, data?: PollForDecisionTaskCommandOutput) => void): void;
855
876
  pollForDecisionTask(args: PollForDecisionTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PollForDecisionTaskCommandOutput) => void): void;
856
877
  /**
878
+ * @public
857
879
  * <p>Used by activity workers to report to the service that the <a>ActivityTask</a> represented by the specified <code>taskToken</code> is still making progress. The worker
858
880
  * can also specify details of the progress, for example percent complete, using the
859
881
  * <code>details</code> parameter. This action can also be used by the worker as a mechanism to
@@ -907,6 +929,7 @@ export declare class SWF extends SWFClient {
907
929
  recordActivityTaskHeartbeat(args: RecordActivityTaskHeartbeatCommandInput, cb: (err: any, data?: RecordActivityTaskHeartbeatCommandOutput) => void): void;
908
930
  recordActivityTaskHeartbeat(args: RecordActivityTaskHeartbeatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RecordActivityTaskHeartbeatCommandOutput) => void): void;
909
931
  /**
932
+ * @public
910
933
  * <p>Registers a new <i>activity type</i> along with its configuration
911
934
  * settings in the specified domain.</p>
912
935
  * <important>
@@ -959,6 +982,7 @@ export declare class SWF extends SWFClient {
959
982
  registerActivityType(args: RegisterActivityTypeCommandInput, cb: (err: any, data?: RegisterActivityTypeCommandOutput) => void): void;
960
983
  registerActivityType(args: RegisterActivityTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterActivityTypeCommandOutput) => void): void;
961
984
  /**
985
+ * @public
962
986
  * <p>Registers a new domain.</p>
963
987
  * <p>
964
988
  * <b>Access Control</b>
@@ -988,6 +1012,7 @@ export declare class SWF extends SWFClient {
988
1012
  registerDomain(args: RegisterDomainCommandInput, cb: (err: any, data?: RegisterDomainCommandOutput) => void): void;
989
1013
  registerDomain(args: RegisterDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterDomainCommandOutput) => void): void;
990
1014
  /**
1015
+ * @public
991
1016
  * <p>Registers a new <i>workflow type</i> and its configuration settings in
992
1017
  * the specified domain.</p>
993
1018
  * <p>The retention period for the workflow history is set by the <a>RegisterDomain</a> action.</p>
@@ -1041,6 +1066,7 @@ export declare class SWF extends SWFClient {
1041
1066
  registerWorkflowType(args: RegisterWorkflowTypeCommandInput, cb: (err: any, data?: RegisterWorkflowTypeCommandOutput) => void): void;
1042
1067
  registerWorkflowType(args: RegisterWorkflowTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterWorkflowTypeCommandOutput) => void): void;
1043
1068
  /**
1069
+ * @public
1044
1070
  * <p>Records a <code>WorkflowExecutionCancelRequested</code> event in the currently running
1045
1071
  * workflow execution identified by the given domain, workflowId, and runId. This logically
1046
1072
  * requests the cancellation of the workflow execution as a whole. It is up to the decider to
@@ -1085,6 +1111,7 @@ export declare class SWF extends SWFClient {
1085
1111
  requestCancelWorkflowExecution(args: RequestCancelWorkflowExecutionCommandInput, cb: (err: any, data?: RequestCancelWorkflowExecutionCommandOutput) => void): void;
1086
1112
  requestCancelWorkflowExecution(args: RequestCancelWorkflowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RequestCancelWorkflowExecutionCommandOutput) => void): void;
1087
1113
  /**
1114
+ * @public
1088
1115
  * <p>Used by workers to tell the service that the <a>ActivityTask</a> identified
1089
1116
  * by the <code>taskToken</code> was successfully canceled. Additional <code>details</code> can
1090
1117
  * be provided using the <code>details</code> argument.</p>
@@ -1132,6 +1159,7 @@ export declare class SWF extends SWFClient {
1132
1159
  respondActivityTaskCanceled(args: RespondActivityTaskCanceledCommandInput, cb: (err: any, data?: RespondActivityTaskCanceledCommandOutput) => void): void;
1133
1160
  respondActivityTaskCanceled(args: RespondActivityTaskCanceledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RespondActivityTaskCanceledCommandOutput) => void): void;
1134
1161
  /**
1162
+ * @public
1135
1163
  * <p>Used by workers to tell the service that the <a>ActivityTask</a> identified
1136
1164
  * by the <code>taskToken</code> completed successfully with a <code>result</code> (if provided).
1137
1165
  * The <code>result</code> appears in the <code>ActivityTaskCompleted</code> event in the
@@ -1177,6 +1205,7 @@ export declare class SWF extends SWFClient {
1177
1205
  respondActivityTaskCompleted(args: RespondActivityTaskCompletedCommandInput, cb: (err: any, data?: RespondActivityTaskCompletedCommandOutput) => void): void;
1178
1206
  respondActivityTaskCompleted(args: RespondActivityTaskCompletedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RespondActivityTaskCompletedCommandOutput) => void): void;
1179
1207
  /**
1208
+ * @public
1180
1209
  * <p>Used by workers to tell the service that the <a>ActivityTask</a> identified
1181
1210
  * by the <code>taskToken</code> has failed with <code>reason</code> (if specified). The
1182
1211
  * <code>reason</code> and <code>details</code> appear in the <code>ActivityTaskFailed</code>
@@ -1215,6 +1244,7 @@ export declare class SWF extends SWFClient {
1215
1244
  respondActivityTaskFailed(args: RespondActivityTaskFailedCommandInput, cb: (err: any, data?: RespondActivityTaskFailedCommandOutput) => void): void;
1216
1245
  respondActivityTaskFailed(args: RespondActivityTaskFailedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RespondActivityTaskFailedCommandOutput) => void): void;
1217
1246
  /**
1247
+ * @public
1218
1248
  * <p>Used by deciders to tell the service that the <a>DecisionTask</a> identified
1219
1249
  * by the <code>taskToken</code> has successfully completed. The <code>decisions</code> argument
1220
1250
  * specifies the list of decisions made while processing the task.</p>
@@ -1240,6 +1270,7 @@ export declare class SWF extends SWFClient {
1240
1270
  respondDecisionTaskCompleted(args: RespondDecisionTaskCompletedCommandInput, cb: (err: any, data?: RespondDecisionTaskCompletedCommandOutput) => void): void;
1241
1271
  respondDecisionTaskCompleted(args: RespondDecisionTaskCompletedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RespondDecisionTaskCompletedCommandOutput) => void): void;
1242
1272
  /**
1273
+ * @public
1243
1274
  * <p>Records a <code>WorkflowExecutionSignaled</code> event in the workflow execution
1244
1275
  * history and creates a decision task for the workflow execution identified by the given domain,
1245
1276
  * workflowId and runId. The event is recorded with the specified user defined signalName and
@@ -1284,6 +1315,7 @@ export declare class SWF extends SWFClient {
1284
1315
  signalWorkflowExecution(args: SignalWorkflowExecutionCommandInput, cb: (err: any, data?: SignalWorkflowExecutionCommandOutput) => void): void;
1285
1316
  signalWorkflowExecution(args: SignalWorkflowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SignalWorkflowExecutionCommandOutput) => void): void;
1286
1317
  /**
1318
+ * @public
1287
1319
  * <p>Starts an execution of the workflow type in the specified domain using the provided
1288
1320
  * <code>workflowId</code> and input data.</p>
1289
1321
  *
@@ -1355,6 +1387,7 @@ export declare class SWF extends SWFClient {
1355
1387
  startWorkflowExecution(args: StartWorkflowExecutionCommandInput, cb: (err: any, data?: StartWorkflowExecutionCommandOutput) => void): void;
1356
1388
  startWorkflowExecution(args: StartWorkflowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartWorkflowExecutionCommandOutput) => void): void;
1357
1389
  /**
1390
+ * @public
1358
1391
  * <p>Add a tag to a Amazon SWF domain.</p>
1359
1392
  * <note>
1360
1393
  * <p>Amazon SWF supports a maximum of 50 tags per resource.</p>
@@ -1364,6 +1397,7 @@ export declare class SWF extends SWFClient {
1364
1397
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
1365
1398
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
1366
1399
  /**
1400
+ * @public
1367
1401
  * <p>Records a <code>WorkflowExecutionTerminated</code> event and forces closure of the
1368
1402
  * workflow execution identified by the given domain, runId, and workflowId. The child policy,
1369
1403
  * registered with the workflow type or specified when starting this execution, is applied to any
@@ -1413,6 +1447,7 @@ export declare class SWF extends SWFClient {
1413
1447
  terminateWorkflowExecution(args: TerminateWorkflowExecutionCommandInput, cb: (err: any, data?: TerminateWorkflowExecutionCommandOutput) => void): void;
1414
1448
  terminateWorkflowExecution(args: TerminateWorkflowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateWorkflowExecutionCommandOutput) => void): void;
1415
1449
  /**
1450
+ * @public
1416
1451
  * <p>Undeprecates a previously deprecated <i>activity type</i>. After an activity type has
1417
1452
  * been undeprecated, you can create new tasks of that activity type.</p>
1418
1453
  * <note>
@@ -1460,6 +1495,7 @@ export declare class SWF extends SWFClient {
1460
1495
  undeprecateActivityType(args: UndeprecateActivityTypeCommandInput, cb: (err: any, data?: UndeprecateActivityTypeCommandOutput) => void): void;
1461
1496
  undeprecateActivityType(args: UndeprecateActivityTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UndeprecateActivityTypeCommandOutput) => void): void;
1462
1497
  /**
1498
+ * @public
1463
1499
  * <p>Undeprecates a previously deprecated domain. After a domain has been undeprecated it can be used
1464
1500
  * to create new workflow executions or register new types.</p>
1465
1501
  * <note>
@@ -1494,6 +1530,7 @@ export declare class SWF extends SWFClient {
1494
1530
  undeprecateDomain(args: UndeprecateDomainCommandInput, cb: (err: any, data?: UndeprecateDomainCommandOutput) => void): void;
1495
1531
  undeprecateDomain(args: UndeprecateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UndeprecateDomainCommandOutput) => void): void;
1496
1532
  /**
1533
+ * @public
1497
1534
  * <p>Undeprecates a previously deprecated <i>workflow type</i>. After a workflow type has
1498
1535
  * been undeprecated, you can create new executions of that type. </p>
1499
1536
  * <note>
@@ -1541,6 +1578,7 @@ export declare class SWF extends SWFClient {
1541
1578
  undeprecateWorkflowType(args: UndeprecateWorkflowTypeCommandInput, cb: (err: any, data?: UndeprecateWorkflowTypeCommandOutput) => void): void;
1542
1579
  undeprecateWorkflowType(args: UndeprecateWorkflowTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UndeprecateWorkflowTypeCommandOutput) => void): void;
1543
1580
  /**
1581
+ * @public
1544
1582
  * <p>Remove a tag from a Amazon SWF domain.</p>
1545
1583
  */
1546
1584
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
@@ -45,15 +45,24 @@ import { UndeprecateDomainCommandInput, UndeprecateDomainCommandOutput } from ".
45
45
  import { UndeprecateWorkflowTypeCommandInput, UndeprecateWorkflowTypeCommandOutput } from "./commands/UndeprecateWorkflowTypeCommand";
46
46
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
47
47
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
48
+ /**
49
+ * @public
50
+ */
48
51
  export type ServiceInputTypes = CountClosedWorkflowExecutionsCommandInput | CountOpenWorkflowExecutionsCommandInput | CountPendingActivityTasksCommandInput | CountPendingDecisionTasksCommandInput | DeprecateActivityTypeCommandInput | DeprecateDomainCommandInput | DeprecateWorkflowTypeCommandInput | DescribeActivityTypeCommandInput | DescribeDomainCommandInput | DescribeWorkflowExecutionCommandInput | DescribeWorkflowTypeCommandInput | GetWorkflowExecutionHistoryCommandInput | ListActivityTypesCommandInput | ListClosedWorkflowExecutionsCommandInput | ListDomainsCommandInput | ListOpenWorkflowExecutionsCommandInput | ListTagsForResourceCommandInput | ListWorkflowTypesCommandInput | PollForActivityTaskCommandInput | PollForDecisionTaskCommandInput | RecordActivityTaskHeartbeatCommandInput | RegisterActivityTypeCommandInput | RegisterDomainCommandInput | RegisterWorkflowTypeCommandInput | RequestCancelWorkflowExecutionCommandInput | RespondActivityTaskCanceledCommandInput | RespondActivityTaskCompletedCommandInput | RespondActivityTaskFailedCommandInput | RespondDecisionTaskCompletedCommandInput | SignalWorkflowExecutionCommandInput | StartWorkflowExecutionCommandInput | TagResourceCommandInput | TerminateWorkflowExecutionCommandInput | UndeprecateActivityTypeCommandInput | UndeprecateDomainCommandInput | UndeprecateWorkflowTypeCommandInput | UntagResourceCommandInput;
52
+ /**
53
+ * @public
54
+ */
49
55
  export type ServiceOutputTypes = CountClosedWorkflowExecutionsCommandOutput | CountOpenWorkflowExecutionsCommandOutput | CountPendingActivityTasksCommandOutput | CountPendingDecisionTasksCommandOutput | DeprecateActivityTypeCommandOutput | DeprecateDomainCommandOutput | DeprecateWorkflowTypeCommandOutput | DescribeActivityTypeCommandOutput | DescribeDomainCommandOutput | DescribeWorkflowExecutionCommandOutput | DescribeWorkflowTypeCommandOutput | GetWorkflowExecutionHistoryCommandOutput | ListActivityTypesCommandOutput | ListClosedWorkflowExecutionsCommandOutput | ListDomainsCommandOutput | ListOpenWorkflowExecutionsCommandOutput | ListTagsForResourceCommandOutput | ListWorkflowTypesCommandOutput | PollForActivityTaskCommandOutput | PollForDecisionTaskCommandOutput | RecordActivityTaskHeartbeatCommandOutput | RegisterActivityTypeCommandOutput | RegisterDomainCommandOutput | RegisterWorkflowTypeCommandOutput | RequestCancelWorkflowExecutionCommandOutput | RespondActivityTaskCanceledCommandOutput | RespondActivityTaskCompletedCommandOutput | RespondActivityTaskFailedCommandOutput | RespondDecisionTaskCompletedCommandOutput | SignalWorkflowExecutionCommandOutput | StartWorkflowExecutionCommandOutput | TagResourceCommandOutput | TerminateWorkflowExecutionCommandOutput | UndeprecateActivityTypeCommandOutput | UndeprecateDomainCommandOutput | UndeprecateWorkflowTypeCommandOutput | UntagResourceCommandOutput;
56
+ /**
57
+ * @public
58
+ */
50
59
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
51
60
  /**
52
61
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
53
62
  */
54
63
  requestHandler?: __HttpHandler;
55
64
  /**
56
- * A constructor for a class implementing the {@link __Checksum} interface
65
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
57
66
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
58
67
  * @internal
59
68
  */
@@ -143,23 +152,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
143
152
  */
144
153
  logger?: __Logger;
145
154
  /**
146
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
155
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
147
156
  */
148
157
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
149
158
  }
159
+ /**
160
+ * @public
161
+ */
150
162
  type SWFClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
151
163
  /**
152
- * The configuration interface of SWFClient class constructor that set the region, credentials and other options.
164
+ * @public
165
+ *
166
+ * The configuration interface of SWFClient class constructor that set the region, credentials and other options.
153
167
  */
154
168
  export interface SWFClientConfig extends SWFClientConfigType {
155
169
  }
170
+ /**
171
+ * @public
172
+ */
156
173
  type SWFClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
157
174
  /**
158
- * The resolved configuration interface of SWFClient class. This is resolved and normalized from the {@link SWFClientConfig | constructor configuration interface}.
175
+ * @public
176
+ *
177
+ * The resolved configuration interface of SWFClient class. This is resolved and normalized from the {@link SWFClientConfig | constructor configuration interface}.
159
178
  */
160
179
  export interface SWFClientResolvedConfig extends SWFClientResolvedConfigType {
161
180
  }
162
181
  /**
182
+ * @public
163
183
  * <fullname>Amazon Simple Workflow Service</fullname>
164
184
  *
165
185
  * <p>The Amazon Simple Workflow Service (Amazon SWF) makes it easy to build applications that use Amazon's cloud to
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CountClosedWorkflowExecutionsInput, WorkflowExecutionCount } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CountClosedWorkflowExecutionsCommand}.
8
10
  */
9
11
  export interface CountClosedWorkflowExecutionsCommandInput extends CountClosedWorkflowExecutionsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CountClosedWorkflowExecutionsCommand}.
13
17
  */
14
18
  export interface CountClosedWorkflowExecutionsCommandOutput extends WorkflowExecutionCount, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the number of closed workflow executions within the given domain that meet the
18
23
  * specified filtering criteria.</p>
19
24
  * <note>
@@ -71,6 +76,8 @@ export interface CountClosedWorkflowExecutionsCommandOutput extends WorkflowExec
71
76
  * const response = await client.send(command);
72
77
  * ```
73
78
  *
79
+ * @param CountClosedWorkflowExecutionsCommandInput - {@link CountClosedWorkflowExecutionsCommandInput}
80
+ * @returns {@link CountClosedWorkflowExecutionsCommandOutput}
74
81
  * @see {@link CountClosedWorkflowExecutionsCommandInput} for command's `input` shape.
75
82
  * @see {@link CountClosedWorkflowExecutionsCommandOutput} for command's `response` shape.
76
83
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -86,11 +93,20 @@ export interface CountClosedWorkflowExecutionsCommandOutput extends WorkflowExec
86
93
  export declare class CountClosedWorkflowExecutionsCommand extends $Command<CountClosedWorkflowExecutionsCommandInput, CountClosedWorkflowExecutionsCommandOutput, SWFClientResolvedConfig> {
87
94
  readonly input: CountClosedWorkflowExecutionsCommandInput;
88
95
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
96
+ /**
97
+ * @public
98
+ */
89
99
  constructor(input: CountClosedWorkflowExecutionsCommandInput);
90
100
  /**
91
101
  * @internal
92
102
  */
93
103
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CountClosedWorkflowExecutionsCommandInput, CountClosedWorkflowExecutionsCommandOutput>;
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 { CountOpenWorkflowExecutionsInput, WorkflowExecutionCount } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CountOpenWorkflowExecutionsCommand}.
8
10
  */
9
11
  export interface CountOpenWorkflowExecutionsCommandInput extends CountOpenWorkflowExecutionsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CountOpenWorkflowExecutionsCommand}.
13
17
  */
14
18
  export interface CountOpenWorkflowExecutionsCommandOutput extends WorkflowExecutionCount, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the number of open workflow executions within the given domain that meet the
18
23
  * specified filtering criteria.</p>
19
24
  * <note>
@@ -71,6 +76,8 @@ export interface CountOpenWorkflowExecutionsCommandOutput extends WorkflowExecut
71
76
  * const response = await client.send(command);
72
77
  * ```
73
78
  *
79
+ * @param CountOpenWorkflowExecutionsCommandInput - {@link CountOpenWorkflowExecutionsCommandInput}
80
+ * @returns {@link CountOpenWorkflowExecutionsCommandOutput}
74
81
  * @see {@link CountOpenWorkflowExecutionsCommandInput} for command's `input` shape.
75
82
  * @see {@link CountOpenWorkflowExecutionsCommandOutput} for command's `response` shape.
76
83
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -86,11 +93,20 @@ export interface CountOpenWorkflowExecutionsCommandOutput extends WorkflowExecut
86
93
  export declare class CountOpenWorkflowExecutionsCommand extends $Command<CountOpenWorkflowExecutionsCommandInput, CountOpenWorkflowExecutionsCommandOutput, SWFClientResolvedConfig> {
87
94
  readonly input: CountOpenWorkflowExecutionsCommandInput;
88
95
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
96
+ /**
97
+ * @public
98
+ */
89
99
  constructor(input: CountOpenWorkflowExecutionsCommandInput);
90
100
  /**
91
101
  * @internal
92
102
  */
93
103
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CountOpenWorkflowExecutionsCommandInput, CountOpenWorkflowExecutionsCommandOutput>;
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 { CountPendingActivityTasksInput, PendingTaskCount } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CountPendingActivityTasksCommand}.
8
10
  */
9
11
  export interface CountPendingActivityTasksCommandInput extends CountPendingActivityTasksInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CountPendingActivityTasksCommand}.
13
17
  */
14
18
  export interface CountPendingActivityTasksCommandOutput extends PendingTaskCount, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the estimated number of activity tasks in the specified task list. The count
18
23
  * returned is an approximation and isn't guaranteed to be exact. If you specify a task list that
19
24
  * no activity task was ever scheduled in then <code>0</code> is returned.</p>
@@ -52,6 +57,8 @@ export interface CountPendingActivityTasksCommandOutput extends PendingTaskCount
52
57
  * const response = await client.send(command);
53
58
  * ```
54
59
  *
60
+ * @param CountPendingActivityTasksCommandInput - {@link CountPendingActivityTasksCommandInput}
61
+ * @returns {@link CountPendingActivityTasksCommandOutput}
55
62
  * @see {@link CountPendingActivityTasksCommandInput} for command's `input` shape.
56
63
  * @see {@link CountPendingActivityTasksCommandOutput} for command's `response` shape.
57
64
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -67,11 +74,20 @@ export interface CountPendingActivityTasksCommandOutput extends PendingTaskCount
67
74
  export declare class CountPendingActivityTasksCommand extends $Command<CountPendingActivityTasksCommandInput, CountPendingActivityTasksCommandOutput, SWFClientResolvedConfig> {
68
75
  readonly input: CountPendingActivityTasksCommandInput;
69
76
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
+ /**
78
+ * @public
79
+ */
70
80
  constructor(input: CountPendingActivityTasksCommandInput);
71
81
  /**
72
82
  * @internal
73
83
  */
74
84
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CountPendingActivityTasksCommandInput, CountPendingActivityTasksCommandOutput>;
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 { CountPendingDecisionTasksInput, PendingTaskCount } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CountPendingDecisionTasksCommand}.
8
10
  */
9
11
  export interface CountPendingDecisionTasksCommandInput extends CountPendingDecisionTasksInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CountPendingDecisionTasksCommand}.
13
17
  */
14
18
  export interface CountPendingDecisionTasksCommandOutput extends PendingTaskCount, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the estimated number of decision tasks in the specified task list. The count
18
23
  * returned is an approximation and isn't guaranteed to be exact. If you specify a task list that
19
24
  * no decision task was ever scheduled in then <code>0</code> is returned.</p>
@@ -52,6 +57,8 @@ export interface CountPendingDecisionTasksCommandOutput extends PendingTaskCount
52
57
  * const response = await client.send(command);
53
58
  * ```
54
59
  *
60
+ * @param CountPendingDecisionTasksCommandInput - {@link CountPendingDecisionTasksCommandInput}
61
+ * @returns {@link CountPendingDecisionTasksCommandOutput}
55
62
  * @see {@link CountPendingDecisionTasksCommandInput} for command's `input` shape.
56
63
  * @see {@link CountPendingDecisionTasksCommandOutput} for command's `response` shape.
57
64
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -67,11 +74,20 @@ export interface CountPendingDecisionTasksCommandOutput extends PendingTaskCount
67
74
  export declare class CountPendingDecisionTasksCommand extends $Command<CountPendingDecisionTasksCommandInput, CountPendingDecisionTasksCommandOutput, SWFClientResolvedConfig> {
68
75
  readonly input: CountPendingDecisionTasksCommandInput;
69
76
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
+ /**
78
+ * @public
79
+ */
70
80
  constructor(input: CountPendingDecisionTasksCommandInput);
71
81
  /**
72
82
  * @internal
73
83
  */
74
84
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CountPendingDecisionTasksCommandInput, CountPendingDecisionTasksCommandOutput>;
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 { DeprecateActivityTypeInput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeprecateActivityTypeCommand}.
8
10
  */
9
11
  export interface DeprecateActivityTypeCommandInput extends DeprecateActivityTypeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeprecateActivityTypeCommand}.
13
17
  */
14
18
  export interface DeprecateActivityTypeCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deprecates the specified <i>activity type</i>. After an activity type has
18
23
  * been deprecated, you cannot create new tasks of that activity type. Tasks of this type that
19
24
  * were scheduled before the type was deprecated continue to run.</p>
@@ -67,6 +72,8 @@ export interface DeprecateActivityTypeCommandOutput extends __MetadataBearer {
67
72
  * const response = await client.send(command);
68
73
  * ```
69
74
  *
75
+ * @param DeprecateActivityTypeCommandInput - {@link DeprecateActivityTypeCommandInput}
76
+ * @returns {@link DeprecateActivityTypeCommandOutput}
70
77
  * @see {@link DeprecateActivityTypeCommandInput} for command's `input` shape.
71
78
  * @see {@link DeprecateActivityTypeCommandOutput} for command's `response` shape.
72
79
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
@@ -85,11 +92,20 @@ export interface DeprecateActivityTypeCommandOutput extends __MetadataBearer {
85
92
  export declare class DeprecateActivityTypeCommand extends $Command<DeprecateActivityTypeCommandInput, DeprecateActivityTypeCommandOutput, SWFClientResolvedConfig> {
86
93
  readonly input: DeprecateActivityTypeCommandInput;
87
94
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
95
+ /**
96
+ * @public
97
+ */
88
98
  constructor(input: DeprecateActivityTypeCommandInput);
89
99
  /**
90
100
  * @internal
91
101
  */
92
102
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SWFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeprecateActivityTypeCommandInput, DeprecateActivityTypeCommandOutput>;
103
+ /**
104
+ * @internal
105
+ */
93
106
  private serialize;
107
+ /**
108
+ * @internal
109
+ */
94
110
  private deserialize;
95
111
  }