@aws-sdk/client-swf 3.888.0 → 3.891.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 (40) hide show
  1. package/dist-types/commands/CountClosedWorkflowExecutionsCommand.d.ts +2 -0
  2. package/dist-types/commands/CountOpenWorkflowExecutionsCommand.d.ts +2 -0
  3. package/dist-types/commands/CountPendingActivityTasksCommand.d.ts +2 -0
  4. package/dist-types/commands/CountPendingDecisionTasksCommand.d.ts +2 -0
  5. package/dist-types/commands/DeleteActivityTypeCommand.d.ts +2 -0
  6. package/dist-types/commands/DeleteWorkflowTypeCommand.d.ts +2 -0
  7. package/dist-types/commands/DeprecateActivityTypeCommand.d.ts +2 -0
  8. package/dist-types/commands/DeprecateDomainCommand.d.ts +2 -0
  9. package/dist-types/commands/DeprecateWorkflowTypeCommand.d.ts +2 -0
  10. package/dist-types/commands/DescribeActivityTypeCommand.d.ts +2 -0
  11. package/dist-types/commands/DescribeDomainCommand.d.ts +2 -0
  12. package/dist-types/commands/DescribeWorkflowExecutionCommand.d.ts +2 -0
  13. package/dist-types/commands/DescribeWorkflowTypeCommand.d.ts +2 -0
  14. package/dist-types/commands/GetWorkflowExecutionHistoryCommand.d.ts +2 -0
  15. package/dist-types/commands/ListActivityTypesCommand.d.ts +2 -0
  16. package/dist-types/commands/ListClosedWorkflowExecutionsCommand.d.ts +2 -0
  17. package/dist-types/commands/ListDomainsCommand.d.ts +2 -0
  18. package/dist-types/commands/ListOpenWorkflowExecutionsCommand.d.ts +2 -0
  19. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  20. package/dist-types/commands/ListWorkflowTypesCommand.d.ts +2 -0
  21. package/dist-types/commands/PollForActivityTaskCommand.d.ts +2 -0
  22. package/dist-types/commands/PollForDecisionTaskCommand.d.ts +2 -0
  23. package/dist-types/commands/RecordActivityTaskHeartbeatCommand.d.ts +2 -0
  24. package/dist-types/commands/RegisterActivityTypeCommand.d.ts +2 -0
  25. package/dist-types/commands/RegisterDomainCommand.d.ts +2 -0
  26. package/dist-types/commands/RegisterWorkflowTypeCommand.d.ts +2 -0
  27. package/dist-types/commands/RequestCancelWorkflowExecutionCommand.d.ts +2 -0
  28. package/dist-types/commands/RespondActivityTaskCanceledCommand.d.ts +2 -0
  29. package/dist-types/commands/RespondActivityTaskCompletedCommand.d.ts +2 -0
  30. package/dist-types/commands/RespondActivityTaskFailedCommand.d.ts +2 -0
  31. package/dist-types/commands/RespondDecisionTaskCompletedCommand.d.ts +2 -0
  32. package/dist-types/commands/SignalWorkflowExecutionCommand.d.ts +2 -0
  33. package/dist-types/commands/StartWorkflowExecutionCommand.d.ts +2 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  35. package/dist-types/commands/TerminateWorkflowExecutionCommand.d.ts +2 -0
  36. package/dist-types/commands/UndeprecateActivityTypeCommand.d.ts +2 -0
  37. package/dist-types/commands/UndeprecateDomainCommand.d.ts +2 -0
  38. package/dist-types/commands/UndeprecateWorkflowTypeCommand.d.ts +2 -0
  39. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  40. package/package.json +19 -19
@@ -79,6 +79,8 @@ declare const CountClosedWorkflowExecutionsCommand_base: {
79
79
  * ```javascript
80
80
  * import { SWFClient, CountClosedWorkflowExecutionsCommand } from "@aws-sdk/client-swf"; // ES Modules import
81
81
  * // const { SWFClient, CountClosedWorkflowExecutionsCommand } = require("@aws-sdk/client-swf"); // CommonJS import
82
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
83
+ * const config = {}; // type is SWFClientConfig
82
84
  * const client = new SWFClient(config);
83
85
  * const input = { // CountClosedWorkflowExecutionsInput
84
86
  * domain: "STRING_VALUE", // required
@@ -79,6 +79,8 @@ declare const CountOpenWorkflowExecutionsCommand_base: {
79
79
  * ```javascript
80
80
  * import { SWFClient, CountOpenWorkflowExecutionsCommand } from "@aws-sdk/client-swf"; // ES Modules import
81
81
  * // const { SWFClient, CountOpenWorkflowExecutionsCommand } = require("@aws-sdk/client-swf"); // CommonJS import
82
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
83
+ * const config = {}; // type is SWFClientConfig
82
84
  * const client = new SWFClient(config);
83
85
  * const input = { // CountOpenWorkflowExecutionsInput
84
86
  * domain: "STRING_VALUE", // required
@@ -60,6 +60,8 @@ declare const CountPendingActivityTasksCommand_base: {
60
60
  * ```javascript
61
61
  * import { SWFClient, CountPendingActivityTasksCommand } from "@aws-sdk/client-swf"; // ES Modules import
62
62
  * // const { SWFClient, CountPendingActivityTasksCommand } = require("@aws-sdk/client-swf"); // CommonJS import
63
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
64
+ * const config = {}; // type is SWFClientConfig
63
65
  * const client = new SWFClient(config);
64
66
  * const input = { // CountPendingActivityTasksInput
65
67
  * domain: "STRING_VALUE", // required
@@ -60,6 +60,8 @@ declare const CountPendingDecisionTasksCommand_base: {
60
60
  * ```javascript
61
61
  * import { SWFClient, CountPendingDecisionTasksCommand } from "@aws-sdk/client-swf"; // ES Modules import
62
62
  * // const { SWFClient, CountPendingDecisionTasksCommand } = require("@aws-sdk/client-swf"); // CommonJS import
63
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
64
+ * const config = {}; // type is SWFClientConfig
63
65
  * const client = new SWFClient(config);
64
66
  * const input = { // CountPendingDecisionTasksInput
65
67
  * domain: "STRING_VALUE", // required
@@ -72,6 +72,8 @@ declare const DeleteActivityTypeCommand_base: {
72
72
  * ```javascript
73
73
  * import { SWFClient, DeleteActivityTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
74
74
  * // const { SWFClient, DeleteActivityTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
75
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
76
+ * const config = {}; // type is SWFClientConfig
75
77
  * const client = new SWFClient(config);
76
78
  * const input = { // DeleteActivityTypeInput
77
79
  * domain: "STRING_VALUE", // required
@@ -73,6 +73,8 @@ declare const DeleteWorkflowTypeCommand_base: {
73
73
  * ```javascript
74
74
  * import { SWFClient, DeleteWorkflowTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
75
75
  * // const { SWFClient, DeleteWorkflowTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
76
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
77
+ * const config = {}; // type is SWFClientConfig
76
78
  * const client = new SWFClient(config);
77
79
  * const input = { // DeleteWorkflowTypeInput
78
80
  * domain: "STRING_VALUE", // required
@@ -71,6 +71,8 @@ declare const DeprecateActivityTypeCommand_base: {
71
71
  * ```javascript
72
72
  * import { SWFClient, DeprecateActivityTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
73
73
  * // const { SWFClient, DeprecateActivityTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
74
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
75
+ * const config = {}; // type is SWFClientConfig
74
76
  * const client = new SWFClient(config);
75
77
  * const input = { // DeprecateActivityTypeInput
76
78
  * domain: "STRING_VALUE", // required
@@ -64,6 +64,8 @@ declare const DeprecateDomainCommand_base: {
64
64
  * ```javascript
65
65
  * import { SWFClient, DeprecateDomainCommand } from "@aws-sdk/client-swf"; // ES Modules import
66
66
  * // const { SWFClient, DeprecateDomainCommand } = require("@aws-sdk/client-swf"); // CommonJS import
67
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
68
+ * const config = {}; // type is SWFClientConfig
67
69
  * const client = new SWFClient(config);
68
70
  * const input = { // DeprecateDomainInput
69
71
  * name: "STRING_VALUE", // required
@@ -76,6 +76,8 @@ declare const DeprecateWorkflowTypeCommand_base: {
76
76
  * ```javascript
77
77
  * import { SWFClient, DeprecateWorkflowTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
78
78
  * // const { SWFClient, DeprecateWorkflowTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
79
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
80
+ * const config = {}; // type is SWFClientConfig
79
81
  * const client = new SWFClient(config);
80
82
  * const input = { // DeprecateWorkflowTypeInput
81
83
  * domain: "STRING_VALUE", // required
@@ -71,6 +71,8 @@ declare const DescribeActivityTypeCommand_base: {
71
71
  * ```javascript
72
72
  * import { SWFClient, DescribeActivityTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
73
73
  * // const { SWFClient, DescribeActivityTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
74
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
75
+ * const config = {}; // type is SWFClientConfig
74
76
  * const client = new SWFClient(config);
75
77
  * const input = { // DescribeActivityTypeInput
76
78
  * domain: "STRING_VALUE", // required
@@ -57,6 +57,8 @@ declare const DescribeDomainCommand_base: {
57
57
  * ```javascript
58
58
  * import { SWFClient, DescribeDomainCommand } from "@aws-sdk/client-swf"; // ES Modules import
59
59
  * // const { SWFClient, DescribeDomainCommand } = require("@aws-sdk/client-swf"); // CommonJS import
60
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
61
+ * const config = {}; // type is SWFClientConfig
60
62
  * const client = new SWFClient(config);
61
63
  * const input = { // DescribeDomainInput
62
64
  * name: "STRING_VALUE", // required
@@ -61,6 +61,8 @@ declare const DescribeWorkflowExecutionCommand_base: {
61
61
  * ```javascript
62
62
  * import { SWFClient, DescribeWorkflowExecutionCommand } from "@aws-sdk/client-swf"; // ES Modules import
63
63
  * // const { SWFClient, DescribeWorkflowExecutionCommand } = require("@aws-sdk/client-swf"); // CommonJS import
64
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
65
+ * const config = {}; // type is SWFClientConfig
64
66
  * const client = new SWFClient(config);
65
67
  * const input = { // DescribeWorkflowExecutionInput
66
68
  * domain: "STRING_VALUE", // required
@@ -71,6 +71,8 @@ declare const DescribeWorkflowTypeCommand_base: {
71
71
  * ```javascript
72
72
  * import { SWFClient, DescribeWorkflowTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
73
73
  * // const { SWFClient, DescribeWorkflowTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
74
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
75
+ * const config = {}; // type is SWFClientConfig
74
76
  * const client = new SWFClient(config);
75
77
  * const input = { // DescribeWorkflowTypeInput
76
78
  * domain: "STRING_VALUE", // required
@@ -62,6 +62,8 @@ declare const GetWorkflowExecutionHistoryCommand_base: {
62
62
  * ```javascript
63
63
  * import { SWFClient, GetWorkflowExecutionHistoryCommand } from "@aws-sdk/client-swf"; // ES Modules import
64
64
  * // const { SWFClient, GetWorkflowExecutionHistoryCommand } = require("@aws-sdk/client-swf"); // CommonJS import
65
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
66
+ * const config = {}; // type is SWFClientConfig
65
67
  * const client = new SWFClient(config);
66
68
  * const input = { // GetWorkflowExecutionHistoryInput
67
69
  * domain: "STRING_VALUE", // required
@@ -60,6 +60,8 @@ declare const ListActivityTypesCommand_base: {
60
60
  * ```javascript
61
61
  * import { SWFClient, ListActivityTypesCommand } from "@aws-sdk/client-swf"; // ES Modules import
62
62
  * // const { SWFClient, ListActivityTypesCommand } = require("@aws-sdk/client-swf"); // CommonJS import
63
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
64
+ * const config = {}; // type is SWFClientConfig
63
65
  * const client = new SWFClient(config);
64
66
  * const input = { // ListActivityTypesInput
65
67
  * domain: "STRING_VALUE", // required
@@ -80,6 +80,8 @@ declare const ListClosedWorkflowExecutionsCommand_base: {
80
80
  * ```javascript
81
81
  * import { SWFClient, ListClosedWorkflowExecutionsCommand } from "@aws-sdk/client-swf"; // ES Modules import
82
82
  * // const { SWFClient, ListClosedWorkflowExecutionsCommand } = require("@aws-sdk/client-swf"); // CommonJS import
83
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
84
+ * const config = {}; // type is SWFClientConfig
83
85
  * const client = new SWFClient(config);
84
86
  * const input = { // ListClosedWorkflowExecutionsInput
85
87
  * domain: "STRING_VALUE", // required
@@ -64,6 +64,8 @@ declare const ListDomainsCommand_base: {
64
64
  * ```javascript
65
65
  * import { SWFClient, ListDomainsCommand } from "@aws-sdk/client-swf"; // ES Modules import
66
66
  * // const { SWFClient, ListDomainsCommand } = require("@aws-sdk/client-swf"); // CommonJS import
67
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
68
+ * const config = {}; // type is SWFClientConfig
67
69
  * const client = new SWFClient(config);
68
70
  * const input = { // ListDomainsInput
69
71
  * nextPageToken: "STRING_VALUE",
@@ -80,6 +80,8 @@ declare const ListOpenWorkflowExecutionsCommand_base: {
80
80
  * ```javascript
81
81
  * import { SWFClient, ListOpenWorkflowExecutionsCommand } from "@aws-sdk/client-swf"; // ES Modules import
82
82
  * // const { SWFClient, ListOpenWorkflowExecutionsCommand } = require("@aws-sdk/client-swf"); // CommonJS import
83
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
84
+ * const config = {}; // type is SWFClientConfig
83
85
  * const client = new SWFClient(config);
84
86
  * const input = { // ListOpenWorkflowExecutionsInput
85
87
  * domain: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { SWFClient, ListTagsForResourceCommand } from "@aws-sdk/client-swf"; // ES Modules import
35
35
  * // const { SWFClient, ListTagsForResourceCommand } = require("@aws-sdk/client-swf"); // CommonJS import
36
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
37
+ * const config = {}; // type is SWFClientConfig
36
38
  * const client = new SWFClient(config);
37
39
  * const input = { // ListTagsForResourceInput
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -57,6 +57,8 @@ declare const ListWorkflowTypesCommand_base: {
57
57
  * ```javascript
58
58
  * import { SWFClient, ListWorkflowTypesCommand } from "@aws-sdk/client-swf"; // ES Modules import
59
59
  * // const { SWFClient, ListWorkflowTypesCommand } = require("@aws-sdk/client-swf"); // CommonJS import
60
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
61
+ * const config = {}; // type is SWFClientConfig
60
62
  * const client = new SWFClient(config);
61
63
  * const input = { // ListWorkflowTypesInput
62
64
  * domain: "STRING_VALUE", // required
@@ -68,6 +68,8 @@ declare const PollForActivityTaskCommand_base: {
68
68
  * ```javascript
69
69
  * import { SWFClient, PollForActivityTaskCommand } from "@aws-sdk/client-swf"; // ES Modules import
70
70
  * // const { SWFClient, PollForActivityTaskCommand } = require("@aws-sdk/client-swf"); // CommonJS import
71
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
72
+ * const config = {}; // type is SWFClientConfig
71
73
  * const client = new SWFClient(config);
72
74
  * const input = { // PollForActivityTaskInput
73
75
  * domain: "STRING_VALUE", // required
@@ -80,6 +80,8 @@ declare const PollForDecisionTaskCommand_base: {
80
80
  * ```javascript
81
81
  * import { SWFClient, PollForDecisionTaskCommand } from "@aws-sdk/client-swf"; // ES Modules import
82
82
  * // const { SWFClient, PollForDecisionTaskCommand } = require("@aws-sdk/client-swf"); // CommonJS import
83
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
84
+ * const config = {}; // type is SWFClientConfig
83
85
  * const client = new SWFClient(config);
84
86
  * const input = { // PollForDecisionTaskInput
85
87
  * domain: "STRING_VALUE", // required
@@ -80,6 +80,8 @@ declare const RecordActivityTaskHeartbeatCommand_base: {
80
80
  * ```javascript
81
81
  * import { SWFClient, RecordActivityTaskHeartbeatCommand } from "@aws-sdk/client-swf"; // ES Modules import
82
82
  * // const { SWFClient, RecordActivityTaskHeartbeatCommand } = require("@aws-sdk/client-swf"); // CommonJS import
83
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
84
+ * const config = {}; // type is SWFClientConfig
83
85
  * const client = new SWFClient(config);
84
86
  * const input = { // RecordActivityTaskHeartbeatInput
85
87
  * taskToken: "STRING_VALUE", // required
@@ -79,6 +79,8 @@ declare const RegisterActivityTypeCommand_base: {
79
79
  * ```javascript
80
80
  * import { SWFClient, RegisterActivityTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
81
81
  * // const { SWFClient, RegisterActivityTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
82
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
83
+ * const config = {}; // type is SWFClientConfig
82
84
  * const client = new SWFClient(config);
83
85
  * const input = { // RegisterActivityTypeInput
84
86
  * domain: "STRING_VALUE", // required
@@ -56,6 +56,8 @@ declare const RegisterDomainCommand_base: {
56
56
  * ```javascript
57
57
  * import { SWFClient, RegisterDomainCommand } from "@aws-sdk/client-swf"; // ES Modules import
58
58
  * // const { SWFClient, RegisterDomainCommand } = require("@aws-sdk/client-swf"); // CommonJS import
59
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
60
+ * const config = {}; // type is SWFClientConfig
59
61
  * const client = new SWFClient(config);
60
62
  * const input = { // RegisterDomainInput
61
63
  * name: "STRING_VALUE", // required
@@ -80,6 +80,8 @@ declare const RegisterWorkflowTypeCommand_base: {
80
80
  * ```javascript
81
81
  * import { SWFClient, RegisterWorkflowTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
82
82
  * // const { SWFClient, RegisterWorkflowTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
83
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
84
+ * const config = {}; // type is SWFClientConfig
83
85
  * const client = new SWFClient(config);
84
86
  * const input = { // RegisterWorkflowTypeInput
85
87
  * domain: "STRING_VALUE", // required
@@ -69,6 +69,8 @@ declare const RequestCancelWorkflowExecutionCommand_base: {
69
69
  * ```javascript
70
70
  * import { SWFClient, RequestCancelWorkflowExecutionCommand } from "@aws-sdk/client-swf"; // ES Modules import
71
71
  * // const { SWFClient, RequestCancelWorkflowExecutionCommand } = require("@aws-sdk/client-swf"); // CommonJS import
72
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
73
+ * const config = {}; // type is SWFClientConfig
72
74
  * const client = new SWFClient(config);
73
75
  * const input = { // RequestCancelWorkflowExecutionInput
74
76
  * domain: "STRING_VALUE", // required
@@ -70,6 +70,8 @@ declare const RespondActivityTaskCanceledCommand_base: {
70
70
  * ```javascript
71
71
  * import { SWFClient, RespondActivityTaskCanceledCommand } from "@aws-sdk/client-swf"; // ES Modules import
72
72
  * // const { SWFClient, RespondActivityTaskCanceledCommand } = require("@aws-sdk/client-swf"); // CommonJS import
73
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
74
+ * const config = {}; // type is SWFClientConfig
73
75
  * const client = new SWFClient(config);
74
76
  * const input = { // RespondActivityTaskCanceledInput
75
77
  * taskToken: "STRING_VALUE", // required
@@ -69,6 +69,8 @@ declare const RespondActivityTaskCompletedCommand_base: {
69
69
  * ```javascript
70
70
  * import { SWFClient, RespondActivityTaskCompletedCommand } from "@aws-sdk/client-swf"; // ES Modules import
71
71
  * // const { SWFClient, RespondActivityTaskCompletedCommand } = require("@aws-sdk/client-swf"); // CommonJS import
72
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
73
+ * const config = {}; // type is SWFClientConfig
72
74
  * const client = new SWFClient(config);
73
75
  * const input = { // RespondActivityTaskCompletedInput
74
76
  * taskToken: "STRING_VALUE", // required
@@ -63,6 +63,8 @@ declare const RespondActivityTaskFailedCommand_base: {
63
63
  * ```javascript
64
64
  * import { SWFClient, RespondActivityTaskFailedCommand } from "@aws-sdk/client-swf"; // ES Modules import
65
65
  * // const { SWFClient, RespondActivityTaskFailedCommand } = require("@aws-sdk/client-swf"); // CommonJS import
66
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
67
+ * const config = {}; // type is SWFClientConfig
66
68
  * const client = new SWFClient(config);
67
69
  * const input = { // RespondActivityTaskFailedInput
68
70
  * taskToken: "STRING_VALUE", // required
@@ -49,6 +49,8 @@ declare const RespondDecisionTaskCompletedCommand_base: {
49
49
  * ```javascript
50
50
  * import { SWFClient, RespondDecisionTaskCompletedCommand } from "@aws-sdk/client-swf"; // ES Modules import
51
51
  * // const { SWFClient, RespondDecisionTaskCompletedCommand } = require("@aws-sdk/client-swf"); // CommonJS import
52
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
53
+ * const config = {}; // type is SWFClientConfig
52
54
  * const client = new SWFClient(config);
53
55
  * const input = { // RespondDecisionTaskCompletedInput
54
56
  * taskToken: "STRING_VALUE", // required
@@ -68,6 +68,8 @@ declare const SignalWorkflowExecutionCommand_base: {
68
68
  * ```javascript
69
69
  * import { SWFClient, SignalWorkflowExecutionCommand } from "@aws-sdk/client-swf"; // ES Modules import
70
70
  * // const { SWFClient, SignalWorkflowExecutionCommand } = require("@aws-sdk/client-swf"); // CommonJS import
71
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
72
+ * const config = {}; // type is SWFClientConfig
71
73
  * const client = new SWFClient(config);
72
74
  * const input = { // SignalWorkflowExecutionInput
73
75
  * domain: "STRING_VALUE", // required
@@ -96,6 +96,8 @@ declare const StartWorkflowExecutionCommand_base: {
96
96
  * ```javascript
97
97
  * import { SWFClient, StartWorkflowExecutionCommand } from "@aws-sdk/client-swf"; // ES Modules import
98
98
  * // const { SWFClient, StartWorkflowExecutionCommand } = require("@aws-sdk/client-swf"); // CommonJS import
99
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
100
+ * const config = {}; // type is SWFClientConfig
99
101
  * const client = new SWFClient(config);
100
102
  * const input = { // StartWorkflowExecutionInput
101
103
  * domain: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const TagResourceCommand_base: {
36
36
  * ```javascript
37
37
  * import { SWFClient, TagResourceCommand } from "@aws-sdk/client-swf"; // ES Modules import
38
38
  * // const { SWFClient, TagResourceCommand } = require("@aws-sdk/client-swf"); // CommonJS import
39
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
40
+ * const config = {}; // type is SWFClientConfig
39
41
  * const client = new SWFClient(config);
40
42
  * const input = { // TagResourceInput
41
43
  * resourceArn: "STRING_VALUE", // required
@@ -72,6 +72,8 @@ declare const TerminateWorkflowExecutionCommand_base: {
72
72
  * ```javascript
73
73
  * import { SWFClient, TerminateWorkflowExecutionCommand } from "@aws-sdk/client-swf"; // ES Modules import
74
74
  * // const { SWFClient, TerminateWorkflowExecutionCommand } = require("@aws-sdk/client-swf"); // CommonJS import
75
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
76
+ * const config = {}; // type is SWFClientConfig
75
77
  * const client = new SWFClient(config);
76
78
  * const input = { // TerminateWorkflowExecutionInput
77
79
  * domain: "STRING_VALUE", // required
@@ -74,6 +74,8 @@ declare const UndeprecateActivityTypeCommand_base: {
74
74
  * ```javascript
75
75
  * import { SWFClient, UndeprecateActivityTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
76
76
  * // const { SWFClient, UndeprecateActivityTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
77
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
78
+ * const config = {}; // type is SWFClientConfig
77
79
  * const client = new SWFClient(config);
78
80
  * const input = { // UndeprecateActivityTypeInput
79
81
  * domain: "STRING_VALUE", // required
@@ -61,6 +61,8 @@ declare const UndeprecateDomainCommand_base: {
61
61
  * ```javascript
62
62
  * import { SWFClient, UndeprecateDomainCommand } from "@aws-sdk/client-swf"; // ES Modules import
63
63
  * // const { SWFClient, UndeprecateDomainCommand } = require("@aws-sdk/client-swf"); // CommonJS import
64
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
65
+ * const config = {}; // type is SWFClientConfig
64
66
  * const client = new SWFClient(config);
65
67
  * const input = { // UndeprecateDomainInput
66
68
  * name: "STRING_VALUE", // required
@@ -74,6 +74,8 @@ declare const UndeprecateWorkflowTypeCommand_base: {
74
74
  * ```javascript
75
75
  * import { SWFClient, UndeprecateWorkflowTypeCommand } from "@aws-sdk/client-swf"; // ES Modules import
76
76
  * // const { SWFClient, UndeprecateWorkflowTypeCommand } = require("@aws-sdk/client-swf"); // CommonJS import
77
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
78
+ * const config = {}; // type is SWFClientConfig
77
79
  * const client = new SWFClient(config);
78
80
  * const input = { // UndeprecateWorkflowTypeInput
79
81
  * domain: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { SWFClient, UntagResourceCommand } from "@aws-sdk/client-swf"; // ES Modules import
35
35
  * // const { SWFClient, UntagResourceCommand } = require("@aws-sdk/client-swf"); // CommonJS import
36
+ * // import type { SWFClientConfig } from "@aws-sdk/client-swf";
37
+ * const config = {}; // type is SWFClientConfig
36
38
  * const client = new SWFClient(config);
37
39
  * const input = { // UntagResourceInput
38
40
  * resourceArn: "STRING_VALUE", // required
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-swf",
3
3
  "description": "AWS SDK for JavaScript Swf Client for Node.js, Browser and React Native",
4
- "version": "3.888.0",
4
+ "version": "3.891.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-swf",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.888.0",
24
- "@aws-sdk/credential-provider-node": "3.888.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.888.0",
29
- "@aws-sdk/region-config-resolver": "3.887.0",
23
+ "@aws-sdk/core": "3.890.0",
24
+ "@aws-sdk/credential-provider-node": "3.891.0",
25
+ "@aws-sdk/middleware-host-header": "3.891.0",
26
+ "@aws-sdk/middleware-logger": "3.891.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.891.0",
28
+ "@aws-sdk/middleware-user-agent": "3.891.0",
29
+ "@aws-sdk/region-config-resolver": "3.890.0",
30
30
  "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.887.0",
31
+ "@aws-sdk/util-endpoints": "3.891.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.888.0",
34
- "@smithy/config-resolver": "^4.2.1",
33
+ "@aws-sdk/util-user-agent-node": "3.891.0",
34
+ "@smithy/config-resolver": "^4.2.2",
35
35
  "@smithy/core": "^3.11.0",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
37
37
  "@smithy/hash-node": "^4.1.1",
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.1",
41
- "@smithy/middleware-retry": "^4.2.1",
40
+ "@smithy/middleware-endpoint": "^4.2.2",
41
+ "@smithy/middleware-retry": "^4.2.3",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
- "@smithy/node-config-provider": "^4.2.1",
44
+ "@smithy/node-config-provider": "^4.2.2",
45
45
  "@smithy/node-http-handler": "^4.2.1",
46
46
  "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.1",
47
+ "@smithy/smithy-client": "^4.6.2",
48
48
  "@smithy/types": "^4.5.0",
49
49
  "@smithy/url-parser": "^4.1.1",
50
50
  "@smithy/util-base64": "^4.1.0",
51
51
  "@smithy/util-body-length-browser": "^4.1.0",
52
52
  "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.1",
54
- "@smithy/util-defaults-mode-node": "^4.1.1",
55
- "@smithy/util-endpoints": "^3.1.1",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.2",
54
+ "@smithy/util-defaults-mode-node": "^4.1.2",
55
+ "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.1",
57
+ "@smithy/util-retry": "^4.1.2",
58
58
  "@smithy/util-utf8": "^4.1.0",
59
59
  "tslib": "^2.6.2"
60
60
  },