@aws-sdk/client-swf 3.180.0 → 3.183.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 (57) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_json1_0.js +43 -37
  3. package/dist-es/SWF.js +150 -157
  4. package/dist-es/SWFClient.js +22 -28
  5. package/dist-es/commands/CountClosedWorkflowExecutionsCommand.js +21 -28
  6. package/dist-es/commands/CountOpenWorkflowExecutionsCommand.js +21 -28
  7. package/dist-es/commands/CountPendingActivityTasksCommand.js +21 -28
  8. package/dist-es/commands/CountPendingDecisionTasksCommand.js +21 -28
  9. package/dist-es/commands/DeprecateActivityTypeCommand.js +22 -29
  10. package/dist-es/commands/DeprecateDomainCommand.js +22 -29
  11. package/dist-es/commands/DeprecateWorkflowTypeCommand.js +22 -29
  12. package/dist-es/commands/DescribeActivityTypeCommand.js +21 -28
  13. package/dist-es/commands/DescribeDomainCommand.js +21 -28
  14. package/dist-es/commands/DescribeWorkflowExecutionCommand.js +21 -28
  15. package/dist-es/commands/DescribeWorkflowTypeCommand.js +21 -28
  16. package/dist-es/commands/GetWorkflowExecutionHistoryCommand.js +21 -28
  17. package/dist-es/commands/ListActivityTypesCommand.js +21 -28
  18. package/dist-es/commands/ListClosedWorkflowExecutionsCommand.js +21 -28
  19. package/dist-es/commands/ListDomainsCommand.js +21 -28
  20. package/dist-es/commands/ListOpenWorkflowExecutionsCommand.js +21 -28
  21. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  22. package/dist-es/commands/ListWorkflowTypesCommand.js +21 -28
  23. package/dist-es/commands/PollForActivityTaskCommand.js +21 -28
  24. package/dist-es/commands/PollForDecisionTaskCommand.js +21 -28
  25. package/dist-es/commands/RecordActivityTaskHeartbeatCommand.js +21 -28
  26. package/dist-es/commands/RegisterActivityTypeCommand.js +22 -29
  27. package/dist-es/commands/RegisterDomainCommand.js +22 -29
  28. package/dist-es/commands/RegisterWorkflowTypeCommand.js +22 -29
  29. package/dist-es/commands/RequestCancelWorkflowExecutionCommand.js +22 -29
  30. package/dist-es/commands/RespondActivityTaskCanceledCommand.js +22 -29
  31. package/dist-es/commands/RespondActivityTaskCompletedCommand.js +22 -29
  32. package/dist-es/commands/RespondActivityTaskFailedCommand.js +22 -29
  33. package/dist-es/commands/RespondDecisionTaskCompletedCommand.js +22 -29
  34. package/dist-es/commands/SignalWorkflowExecutionCommand.js +22 -29
  35. package/dist-es/commands/StartWorkflowExecutionCommand.js +21 -28
  36. package/dist-es/commands/TagResourceCommand.js +22 -29
  37. package/dist-es/commands/TerminateWorkflowExecutionCommand.js +22 -29
  38. package/dist-es/commands/UndeprecateActivityTypeCommand.js +22 -29
  39. package/dist-es/commands/UndeprecateDomainCommand.js +22 -29
  40. package/dist-es/commands/UndeprecateWorkflowTypeCommand.js +22 -29
  41. package/dist-es/commands/UntagResourceCommand.js +22 -29
  42. package/dist-es/endpoints.js +8 -8
  43. package/dist-es/models/SWFServiceException.js +5 -10
  44. package/dist-es/models/models_0.js +533 -252
  45. package/dist-es/pagination/GetWorkflowExecutionHistoryPaginator.js +25 -68
  46. package/dist-es/pagination/ListActivityTypesPaginator.js +25 -68
  47. package/dist-es/pagination/ListClosedWorkflowExecutionsPaginator.js +25 -68
  48. package/dist-es/pagination/ListDomainsPaginator.js +25 -68
  49. package/dist-es/pagination/ListOpenWorkflowExecutionsPaginator.js +25 -68
  50. package/dist-es/pagination/ListWorkflowTypesPaginator.js +25 -68
  51. package/dist-es/pagination/PollForDecisionTaskPaginator.js +25 -68
  52. package/dist-es/protocols/Aws_json1_0.js +2433 -3004
  53. package/dist-es/runtimeConfig.browser.js +26 -12
  54. package/dist-es/runtimeConfig.js +30 -12
  55. package/dist-es/runtimeConfig.native.js +8 -5
  56. package/dist-es/runtimeConfig.shared.js +8 -11
  57. package/package.json +33 -33
@@ -1,263 +1,544 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { SWFServiceException as __BaseException } from "./SWFServiceException";
3
- var OperationNotPermittedFault = (function (_super) {
4
- __extends(OperationNotPermittedFault, _super);
5
- function OperationNotPermittedFault(opts) {
6
- var _this = _super.call(this, __assign({ name: "OperationNotPermittedFault", $fault: "client" }, opts)) || this;
7
- _this.name = "OperationNotPermittedFault";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, OperationNotPermittedFault.prototype);
10
- return _this;
2
+ export class OperationNotPermittedFault extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "OperationNotPermittedFault",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "OperationNotPermittedFault";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, OperationNotPermittedFault.prototype);
11
12
  }
12
- return OperationNotPermittedFault;
13
- }(__BaseException));
14
- export { OperationNotPermittedFault };
15
- var UnknownResourceFault = (function (_super) {
16
- __extends(UnknownResourceFault, _super);
17
- function UnknownResourceFault(opts) {
18
- var _this = _super.call(this, __assign({ name: "UnknownResourceFault", $fault: "client" }, opts)) || this;
19
- _this.name = "UnknownResourceFault";
20
- _this.$fault = "client";
21
- Object.setPrototypeOf(_this, UnknownResourceFault.prototype);
22
- return _this;
13
+ }
14
+ export class UnknownResourceFault extends __BaseException {
15
+ constructor(opts) {
16
+ super({
17
+ name: "UnknownResourceFault",
18
+ $fault: "client",
19
+ ...opts,
20
+ });
21
+ this.name = "UnknownResourceFault";
22
+ this.$fault = "client";
23
+ Object.setPrototypeOf(this, UnknownResourceFault.prototype);
23
24
  }
24
- return UnknownResourceFault;
25
- }(__BaseException));
26
- export { UnknownResourceFault };
27
- var DefaultUndefinedFault = (function (_super) {
28
- __extends(DefaultUndefinedFault, _super);
29
- function DefaultUndefinedFault(opts) {
30
- var _this = _super.call(this, __assign({ name: "DefaultUndefinedFault", $fault: "client" }, opts)) || this;
31
- _this.name = "DefaultUndefinedFault";
32
- _this.$fault = "client";
33
- Object.setPrototypeOf(_this, DefaultUndefinedFault.prototype);
34
- return _this;
25
+ }
26
+ export class DefaultUndefinedFault extends __BaseException {
27
+ constructor(opts) {
28
+ super({
29
+ name: "DefaultUndefinedFault",
30
+ $fault: "client",
31
+ ...opts,
32
+ });
33
+ this.name = "DefaultUndefinedFault";
34
+ this.$fault = "client";
35
+ Object.setPrototypeOf(this, DefaultUndefinedFault.prototype);
35
36
  }
36
- return DefaultUndefinedFault;
37
- }(__BaseException));
38
- export { DefaultUndefinedFault };
39
- var TypeDeprecatedFault = (function (_super) {
40
- __extends(TypeDeprecatedFault, _super);
41
- function TypeDeprecatedFault(opts) {
42
- var _this = _super.call(this, __assign({ name: "TypeDeprecatedFault", $fault: "client" }, opts)) || this;
43
- _this.name = "TypeDeprecatedFault";
44
- _this.$fault = "client";
45
- Object.setPrototypeOf(_this, TypeDeprecatedFault.prototype);
46
- return _this;
37
+ }
38
+ export class TypeDeprecatedFault extends __BaseException {
39
+ constructor(opts) {
40
+ super({
41
+ name: "TypeDeprecatedFault",
42
+ $fault: "client",
43
+ ...opts,
44
+ });
45
+ this.name = "TypeDeprecatedFault";
46
+ this.$fault = "client";
47
+ Object.setPrototypeOf(this, TypeDeprecatedFault.prototype);
47
48
  }
48
- return TypeDeprecatedFault;
49
- }(__BaseException));
50
- export { TypeDeprecatedFault };
51
- var DomainDeprecatedFault = (function (_super) {
52
- __extends(DomainDeprecatedFault, _super);
53
- function DomainDeprecatedFault(opts) {
54
- var _this = _super.call(this, __assign({ name: "DomainDeprecatedFault", $fault: "client" }, opts)) || this;
55
- _this.name = "DomainDeprecatedFault";
56
- _this.$fault = "client";
57
- Object.setPrototypeOf(_this, DomainDeprecatedFault.prototype);
58
- return _this;
49
+ }
50
+ export class DomainDeprecatedFault extends __BaseException {
51
+ constructor(opts) {
52
+ super({
53
+ name: "DomainDeprecatedFault",
54
+ $fault: "client",
55
+ ...opts,
56
+ });
57
+ this.name = "DomainDeprecatedFault";
58
+ this.$fault = "client";
59
+ Object.setPrototypeOf(this, DomainDeprecatedFault.prototype);
59
60
  }
60
- return DomainDeprecatedFault;
61
- }(__BaseException));
62
- export { DomainDeprecatedFault };
63
- var DomainAlreadyExistsFault = (function (_super) {
64
- __extends(DomainAlreadyExistsFault, _super);
65
- function DomainAlreadyExistsFault(opts) {
66
- var _this = _super.call(this, __assign({ name: "DomainAlreadyExistsFault", $fault: "client" }, opts)) || this;
67
- _this.name = "DomainAlreadyExistsFault";
68
- _this.$fault = "client";
69
- Object.setPrototypeOf(_this, DomainAlreadyExistsFault.prototype);
70
- return _this;
61
+ }
62
+ export class DomainAlreadyExistsFault extends __BaseException {
63
+ constructor(opts) {
64
+ super({
65
+ name: "DomainAlreadyExistsFault",
66
+ $fault: "client",
67
+ ...opts,
68
+ });
69
+ this.name = "DomainAlreadyExistsFault";
70
+ this.$fault = "client";
71
+ Object.setPrototypeOf(this, DomainAlreadyExistsFault.prototype);
71
72
  }
72
- return DomainAlreadyExistsFault;
73
- }(__BaseException));
74
- export { DomainAlreadyExistsFault };
75
- var LimitExceededFault = (function (_super) {
76
- __extends(LimitExceededFault, _super);
77
- function LimitExceededFault(opts) {
78
- var _this = _super.call(this, __assign({ name: "LimitExceededFault", $fault: "client" }, opts)) || this;
79
- _this.name = "LimitExceededFault";
80
- _this.$fault = "client";
81
- Object.setPrototypeOf(_this, LimitExceededFault.prototype);
82
- return _this;
73
+ }
74
+ export class LimitExceededFault extends __BaseException {
75
+ constructor(opts) {
76
+ super({
77
+ name: "LimitExceededFault",
78
+ $fault: "client",
79
+ ...opts,
80
+ });
81
+ this.name = "LimitExceededFault";
82
+ this.$fault = "client";
83
+ Object.setPrototypeOf(this, LimitExceededFault.prototype);
83
84
  }
84
- return LimitExceededFault;
85
- }(__BaseException));
86
- export { LimitExceededFault };
87
- var TypeAlreadyExistsFault = (function (_super) {
88
- __extends(TypeAlreadyExistsFault, _super);
89
- function TypeAlreadyExistsFault(opts) {
90
- var _this = _super.call(this, __assign({ name: "TypeAlreadyExistsFault", $fault: "client" }, opts)) || this;
91
- _this.name = "TypeAlreadyExistsFault";
92
- _this.$fault = "client";
93
- Object.setPrototypeOf(_this, TypeAlreadyExistsFault.prototype);
94
- return _this;
85
+ }
86
+ export class TypeAlreadyExistsFault extends __BaseException {
87
+ constructor(opts) {
88
+ super({
89
+ name: "TypeAlreadyExistsFault",
90
+ $fault: "client",
91
+ ...opts,
92
+ });
93
+ this.name = "TypeAlreadyExistsFault";
94
+ this.$fault = "client";
95
+ Object.setPrototypeOf(this, TypeAlreadyExistsFault.prototype);
95
96
  }
96
- return TypeAlreadyExistsFault;
97
- }(__BaseException));
98
- export { TypeAlreadyExistsFault };
99
- var TooManyTagsFault = (function (_super) {
100
- __extends(TooManyTagsFault, _super);
101
- function TooManyTagsFault(opts) {
102
- var _this = _super.call(this, __assign({ name: "TooManyTagsFault", $fault: "client" }, opts)) || this;
103
- _this.name = "TooManyTagsFault";
104
- _this.$fault = "client";
105
- Object.setPrototypeOf(_this, TooManyTagsFault.prototype);
106
- return _this;
97
+ }
98
+ export class TooManyTagsFault extends __BaseException {
99
+ constructor(opts) {
100
+ super({
101
+ name: "TooManyTagsFault",
102
+ $fault: "client",
103
+ ...opts,
104
+ });
105
+ this.name = "TooManyTagsFault";
106
+ this.$fault = "client";
107
+ Object.setPrototypeOf(this, TooManyTagsFault.prototype);
107
108
  }
108
- return TooManyTagsFault;
109
- }(__BaseException));
110
- export { TooManyTagsFault };
111
- var WorkflowExecutionAlreadyStartedFault = (function (_super) {
112
- __extends(WorkflowExecutionAlreadyStartedFault, _super);
113
- function WorkflowExecutionAlreadyStartedFault(opts) {
114
- var _this = _super.call(this, __assign({ name: "WorkflowExecutionAlreadyStartedFault", $fault: "client" }, opts)) || this;
115
- _this.name = "WorkflowExecutionAlreadyStartedFault";
116
- _this.$fault = "client";
117
- Object.setPrototypeOf(_this, WorkflowExecutionAlreadyStartedFault.prototype);
118
- return _this;
109
+ }
110
+ export class WorkflowExecutionAlreadyStartedFault extends __BaseException {
111
+ constructor(opts) {
112
+ super({
113
+ name: "WorkflowExecutionAlreadyStartedFault",
114
+ $fault: "client",
115
+ ...opts,
116
+ });
117
+ this.name = "WorkflowExecutionAlreadyStartedFault";
118
+ this.$fault = "client";
119
+ Object.setPrototypeOf(this, WorkflowExecutionAlreadyStartedFault.prototype);
119
120
  }
120
- return WorkflowExecutionAlreadyStartedFault;
121
- }(__BaseException));
122
- export { WorkflowExecutionAlreadyStartedFault };
123
- export var ActivityTypeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
124
- export var WorkflowExecutionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
125
- export var ActivityTaskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
126
- export var ActivityTaskCanceledEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
127
- export var ActivityTaskCancelRequestedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
128
- export var ActivityTaskCompletedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
129
- export var ActivityTaskFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
130
- export var TaskListFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
131
- export var ActivityTaskScheduledEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
132
- export var ActivityTaskStartedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
133
- export var ActivityTaskStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
134
- export var ActivityTaskTimedOutEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
135
- export var ActivityTypeConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
136
- export var ActivityTypeInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
137
- export var ActivityTypeDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
138
- export var ActivityTypeInfosFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
139
- export var CancelTimerDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
140
- export var CancelTimerFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
141
- export var CancelWorkflowExecutionDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
142
- export var CancelWorkflowExecutionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
143
- export var WorkflowTypeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
144
- export var ChildWorkflowExecutionCanceledEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
145
- export var ChildWorkflowExecutionCompletedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
146
- export var ChildWorkflowExecutionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
147
- export var ChildWorkflowExecutionStartedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
148
- export var ChildWorkflowExecutionTerminatedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
149
- export var ChildWorkflowExecutionTimedOutEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
150
- export var CloseStatusFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
151
- export var CompleteWorkflowExecutionDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
152
- export var CompleteWorkflowExecutionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
153
- export var ContinueAsNewWorkflowExecutionDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
154
- export var ContinueAsNewWorkflowExecutionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
155
- export var ExecutionTimeFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
156
- export var WorkflowExecutionFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
157
- export var TagFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
158
- export var WorkflowTypeFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
159
- export var CountClosedWorkflowExecutionsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
160
- export var WorkflowExecutionCountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
161
- export var CountOpenWorkflowExecutionsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
162
- export var CountPendingActivityTasksInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
163
- export var PendingTaskCountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
164
- export var CountPendingDecisionTasksInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
165
- export var FailWorkflowExecutionDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
166
- export var RecordMarkerDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
167
- export var RequestCancelActivityTaskDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
168
- export var RequestCancelExternalWorkflowExecutionDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
169
- export var ScheduleActivityTaskDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
170
- export var ScheduleLambdaFunctionDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
171
- export var SignalExternalWorkflowExecutionDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
172
- export var StartChildWorkflowExecutionDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
173
- export var StartTimerDecisionAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
174
- export var DecisionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
- export var DecisionTaskCompletedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
176
- export var DecisionTaskScheduledEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
- export var DecisionTaskStartedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
178
- export var DecisionTaskTimedOutEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
179
- export var ExternalWorkflowExecutionCancelRequestedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
180
- export var ExternalWorkflowExecutionSignaledEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
- export var FailWorkflowExecutionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
182
- export var LambdaFunctionCompletedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
183
- export var LambdaFunctionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
184
- export var LambdaFunctionScheduledEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
185
- export var LambdaFunctionStartedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
186
- export var LambdaFunctionTimedOutEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
187
- export var MarkerRecordedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
188
- export var RecordMarkerFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
189
- export var RequestCancelActivityTaskFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
190
- export var RequestCancelExternalWorkflowExecutionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
- export var RequestCancelExternalWorkflowExecutionInitiatedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
192
- export var ScheduleActivityTaskFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
193
- export var ScheduleLambdaFunctionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
194
- export var SignalExternalWorkflowExecutionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
195
- export var SignalExternalWorkflowExecutionInitiatedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
196
- export var StartChildWorkflowExecutionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
197
- export var StartChildWorkflowExecutionInitiatedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
198
- export var StartLambdaFunctionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
- export var StartTimerFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
200
- export var TimerCanceledEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
201
- export var TimerFiredEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
202
- export var TimerStartedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
203
- export var WorkflowExecutionCanceledEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
204
- export var WorkflowExecutionCancelRequestedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
205
- export var WorkflowExecutionCompletedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
206
- export var WorkflowExecutionContinuedAsNewEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
- export var WorkflowExecutionFailedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
208
- export var WorkflowExecutionSignaledEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
209
- export var WorkflowExecutionStartedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
210
- export var WorkflowExecutionTerminatedEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
211
- export var WorkflowExecutionTimedOutEventAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
212
- export var HistoryEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
213
- export var DecisionTaskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
214
- export var DeprecateActivityTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
215
- export var DeprecateDomainInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
216
- export var DeprecateWorkflowTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
217
- export var DescribeActivityTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
218
- export var DescribeDomainInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
219
- export var DomainConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
220
- export var DomainInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
221
- export var DomainDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
222
- export var DescribeWorkflowExecutionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
223
- export var WorkflowExecutionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
224
- export var WorkflowExecutionInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
225
- export var WorkflowExecutionOpenCountsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
226
- export var WorkflowExecutionDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
227
- export var DescribeWorkflowTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
228
- export var WorkflowTypeConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
229
- export var WorkflowTypeInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
230
- export var WorkflowTypeDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
231
- export var DomainInfosFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
232
- export var GetWorkflowExecutionHistoryInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
233
- export var HistoryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
234
- export var ListActivityTypesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
235
- export var ListClosedWorkflowExecutionsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
236
- export var WorkflowExecutionInfosFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
237
- export var ListDomainsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
238
- export var ListOpenWorkflowExecutionsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
239
- export var ListTagsForResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
240
- export var ResourceTagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
241
- export var ListTagsForResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
242
- export var ListWorkflowTypesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
243
- export var WorkflowTypeInfosFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
- export var PollForActivityTaskInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
245
- export var PollForDecisionTaskInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
246
- export var RecordActivityTaskHeartbeatInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
247
- export var RegisterActivityTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
248
- export var RegisterDomainInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
249
- export var RegisterWorkflowTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
250
- export var RequestCancelWorkflowExecutionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
251
- export var RespondActivityTaskCanceledInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
252
- export var RespondActivityTaskCompletedInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
253
- export var RespondActivityTaskFailedInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
254
- export var RespondDecisionTaskCompletedInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
255
- export var RunFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
256
- export var SignalWorkflowExecutionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
257
- export var StartWorkflowExecutionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
258
- export var TagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
259
- export var TerminateWorkflowExecutionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
260
- export var UndeprecateActivityTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
261
- export var UndeprecateDomainInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
262
- export var UndeprecateWorkflowTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
- export var UntagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
121
+ }
122
+ export const ActivityTypeFilterSensitiveLog = (obj) => ({
123
+ ...obj,
124
+ });
125
+ export const WorkflowExecutionFilterSensitiveLog = (obj) => ({
126
+ ...obj,
127
+ });
128
+ export const ActivityTaskFilterSensitiveLog = (obj) => ({
129
+ ...obj,
130
+ });
131
+ export const ActivityTaskCanceledEventAttributesFilterSensitiveLog = (obj) => ({
132
+ ...obj,
133
+ });
134
+ export const ActivityTaskCancelRequestedEventAttributesFilterSensitiveLog = (obj) => ({
135
+ ...obj,
136
+ });
137
+ export const ActivityTaskCompletedEventAttributesFilterSensitiveLog = (obj) => ({
138
+ ...obj,
139
+ });
140
+ export const ActivityTaskFailedEventAttributesFilterSensitiveLog = (obj) => ({
141
+ ...obj,
142
+ });
143
+ export const TaskListFilterSensitiveLog = (obj) => ({
144
+ ...obj,
145
+ });
146
+ export const ActivityTaskScheduledEventAttributesFilterSensitiveLog = (obj) => ({
147
+ ...obj,
148
+ });
149
+ export const ActivityTaskStartedEventAttributesFilterSensitiveLog = (obj) => ({
150
+ ...obj,
151
+ });
152
+ export const ActivityTaskStatusFilterSensitiveLog = (obj) => ({
153
+ ...obj,
154
+ });
155
+ export const ActivityTaskTimedOutEventAttributesFilterSensitiveLog = (obj) => ({
156
+ ...obj,
157
+ });
158
+ export const ActivityTypeConfigurationFilterSensitiveLog = (obj) => ({
159
+ ...obj,
160
+ });
161
+ export const ActivityTypeInfoFilterSensitiveLog = (obj) => ({
162
+ ...obj,
163
+ });
164
+ export const ActivityTypeDetailFilterSensitiveLog = (obj) => ({
165
+ ...obj,
166
+ });
167
+ export const ActivityTypeInfosFilterSensitiveLog = (obj) => ({
168
+ ...obj,
169
+ });
170
+ export const CancelTimerDecisionAttributesFilterSensitiveLog = (obj) => ({
171
+ ...obj,
172
+ });
173
+ export const CancelTimerFailedEventAttributesFilterSensitiveLog = (obj) => ({
174
+ ...obj,
175
+ });
176
+ export const CancelWorkflowExecutionDecisionAttributesFilterSensitiveLog = (obj) => ({
177
+ ...obj,
178
+ });
179
+ export const CancelWorkflowExecutionFailedEventAttributesFilterSensitiveLog = (obj) => ({
180
+ ...obj,
181
+ });
182
+ export const WorkflowTypeFilterSensitiveLog = (obj) => ({
183
+ ...obj,
184
+ });
185
+ export const ChildWorkflowExecutionCanceledEventAttributesFilterSensitiveLog = (obj) => ({
186
+ ...obj,
187
+ });
188
+ export const ChildWorkflowExecutionCompletedEventAttributesFilterSensitiveLog = (obj) => ({
189
+ ...obj,
190
+ });
191
+ export const ChildWorkflowExecutionFailedEventAttributesFilterSensitiveLog = (obj) => ({
192
+ ...obj,
193
+ });
194
+ export const ChildWorkflowExecutionStartedEventAttributesFilterSensitiveLog = (obj) => ({
195
+ ...obj,
196
+ });
197
+ export const ChildWorkflowExecutionTerminatedEventAttributesFilterSensitiveLog = (obj) => ({
198
+ ...obj,
199
+ });
200
+ export const ChildWorkflowExecutionTimedOutEventAttributesFilterSensitiveLog = (obj) => ({
201
+ ...obj,
202
+ });
203
+ export const CloseStatusFilterFilterSensitiveLog = (obj) => ({
204
+ ...obj,
205
+ });
206
+ export const CompleteWorkflowExecutionDecisionAttributesFilterSensitiveLog = (obj) => ({
207
+ ...obj,
208
+ });
209
+ export const CompleteWorkflowExecutionFailedEventAttributesFilterSensitiveLog = (obj) => ({
210
+ ...obj,
211
+ });
212
+ export const ContinueAsNewWorkflowExecutionDecisionAttributesFilterSensitiveLog = (obj) => ({
213
+ ...obj,
214
+ });
215
+ export const ContinueAsNewWorkflowExecutionFailedEventAttributesFilterSensitiveLog = (obj) => ({
216
+ ...obj,
217
+ });
218
+ export const ExecutionTimeFilterFilterSensitiveLog = (obj) => ({
219
+ ...obj,
220
+ });
221
+ export const WorkflowExecutionFilterFilterSensitiveLog = (obj) => ({
222
+ ...obj,
223
+ });
224
+ export const TagFilterFilterSensitiveLog = (obj) => ({
225
+ ...obj,
226
+ });
227
+ export const WorkflowTypeFilterFilterSensitiveLog = (obj) => ({
228
+ ...obj,
229
+ });
230
+ export const CountClosedWorkflowExecutionsInputFilterSensitiveLog = (obj) => ({
231
+ ...obj,
232
+ });
233
+ export const WorkflowExecutionCountFilterSensitiveLog = (obj) => ({
234
+ ...obj,
235
+ });
236
+ export const CountOpenWorkflowExecutionsInputFilterSensitiveLog = (obj) => ({
237
+ ...obj,
238
+ });
239
+ export const CountPendingActivityTasksInputFilterSensitiveLog = (obj) => ({
240
+ ...obj,
241
+ });
242
+ export const PendingTaskCountFilterSensitiveLog = (obj) => ({
243
+ ...obj,
244
+ });
245
+ export const CountPendingDecisionTasksInputFilterSensitiveLog = (obj) => ({
246
+ ...obj,
247
+ });
248
+ export const FailWorkflowExecutionDecisionAttributesFilterSensitiveLog = (obj) => ({
249
+ ...obj,
250
+ });
251
+ export const RecordMarkerDecisionAttributesFilterSensitiveLog = (obj) => ({
252
+ ...obj,
253
+ });
254
+ export const RequestCancelActivityTaskDecisionAttributesFilterSensitiveLog = (obj) => ({
255
+ ...obj,
256
+ });
257
+ export const RequestCancelExternalWorkflowExecutionDecisionAttributesFilterSensitiveLog = (obj) => ({
258
+ ...obj,
259
+ });
260
+ export const ScheduleActivityTaskDecisionAttributesFilterSensitiveLog = (obj) => ({
261
+ ...obj,
262
+ });
263
+ export const ScheduleLambdaFunctionDecisionAttributesFilterSensitiveLog = (obj) => ({
264
+ ...obj,
265
+ });
266
+ export const SignalExternalWorkflowExecutionDecisionAttributesFilterSensitiveLog = (obj) => ({
267
+ ...obj,
268
+ });
269
+ export const StartChildWorkflowExecutionDecisionAttributesFilterSensitiveLog = (obj) => ({
270
+ ...obj,
271
+ });
272
+ export const StartTimerDecisionAttributesFilterSensitiveLog = (obj) => ({
273
+ ...obj,
274
+ });
275
+ export const DecisionFilterSensitiveLog = (obj) => ({
276
+ ...obj,
277
+ });
278
+ export const DecisionTaskCompletedEventAttributesFilterSensitiveLog = (obj) => ({
279
+ ...obj,
280
+ });
281
+ export const DecisionTaskScheduledEventAttributesFilterSensitiveLog = (obj) => ({
282
+ ...obj,
283
+ });
284
+ export const DecisionTaskStartedEventAttributesFilterSensitiveLog = (obj) => ({
285
+ ...obj,
286
+ });
287
+ export const DecisionTaskTimedOutEventAttributesFilterSensitiveLog = (obj) => ({
288
+ ...obj,
289
+ });
290
+ export const ExternalWorkflowExecutionCancelRequestedEventAttributesFilterSensitiveLog = (obj) => ({
291
+ ...obj,
292
+ });
293
+ export const ExternalWorkflowExecutionSignaledEventAttributesFilterSensitiveLog = (obj) => ({
294
+ ...obj,
295
+ });
296
+ export const FailWorkflowExecutionFailedEventAttributesFilterSensitiveLog = (obj) => ({
297
+ ...obj,
298
+ });
299
+ export const LambdaFunctionCompletedEventAttributesFilterSensitiveLog = (obj) => ({
300
+ ...obj,
301
+ });
302
+ export const LambdaFunctionFailedEventAttributesFilterSensitiveLog = (obj) => ({
303
+ ...obj,
304
+ });
305
+ export const LambdaFunctionScheduledEventAttributesFilterSensitiveLog = (obj) => ({
306
+ ...obj,
307
+ });
308
+ export const LambdaFunctionStartedEventAttributesFilterSensitiveLog = (obj) => ({
309
+ ...obj,
310
+ });
311
+ export const LambdaFunctionTimedOutEventAttributesFilterSensitiveLog = (obj) => ({
312
+ ...obj,
313
+ });
314
+ export const MarkerRecordedEventAttributesFilterSensitiveLog = (obj) => ({
315
+ ...obj,
316
+ });
317
+ export const RecordMarkerFailedEventAttributesFilterSensitiveLog = (obj) => ({
318
+ ...obj,
319
+ });
320
+ export const RequestCancelActivityTaskFailedEventAttributesFilterSensitiveLog = (obj) => ({
321
+ ...obj,
322
+ });
323
+ export const RequestCancelExternalWorkflowExecutionFailedEventAttributesFilterSensitiveLog = (obj) => ({
324
+ ...obj,
325
+ });
326
+ export const RequestCancelExternalWorkflowExecutionInitiatedEventAttributesFilterSensitiveLog = (obj) => ({
327
+ ...obj,
328
+ });
329
+ export const ScheduleActivityTaskFailedEventAttributesFilterSensitiveLog = (obj) => ({
330
+ ...obj,
331
+ });
332
+ export const ScheduleLambdaFunctionFailedEventAttributesFilterSensitiveLog = (obj) => ({
333
+ ...obj,
334
+ });
335
+ export const SignalExternalWorkflowExecutionFailedEventAttributesFilterSensitiveLog = (obj) => ({
336
+ ...obj,
337
+ });
338
+ export const SignalExternalWorkflowExecutionInitiatedEventAttributesFilterSensitiveLog = (obj) => ({
339
+ ...obj,
340
+ });
341
+ export const StartChildWorkflowExecutionFailedEventAttributesFilterSensitiveLog = (obj) => ({
342
+ ...obj,
343
+ });
344
+ export const StartChildWorkflowExecutionInitiatedEventAttributesFilterSensitiveLog = (obj) => ({
345
+ ...obj,
346
+ });
347
+ export const StartLambdaFunctionFailedEventAttributesFilterSensitiveLog = (obj) => ({
348
+ ...obj,
349
+ });
350
+ export const StartTimerFailedEventAttributesFilterSensitiveLog = (obj) => ({
351
+ ...obj,
352
+ });
353
+ export const TimerCanceledEventAttributesFilterSensitiveLog = (obj) => ({
354
+ ...obj,
355
+ });
356
+ export const TimerFiredEventAttributesFilterSensitiveLog = (obj) => ({
357
+ ...obj,
358
+ });
359
+ export const TimerStartedEventAttributesFilterSensitiveLog = (obj) => ({
360
+ ...obj,
361
+ });
362
+ export const WorkflowExecutionCanceledEventAttributesFilterSensitiveLog = (obj) => ({
363
+ ...obj,
364
+ });
365
+ export const WorkflowExecutionCancelRequestedEventAttributesFilterSensitiveLog = (obj) => ({
366
+ ...obj,
367
+ });
368
+ export const WorkflowExecutionCompletedEventAttributesFilterSensitiveLog = (obj) => ({
369
+ ...obj,
370
+ });
371
+ export const WorkflowExecutionContinuedAsNewEventAttributesFilterSensitiveLog = (obj) => ({
372
+ ...obj,
373
+ });
374
+ export const WorkflowExecutionFailedEventAttributesFilterSensitiveLog = (obj) => ({
375
+ ...obj,
376
+ });
377
+ export const WorkflowExecutionSignaledEventAttributesFilterSensitiveLog = (obj) => ({
378
+ ...obj,
379
+ });
380
+ export const WorkflowExecutionStartedEventAttributesFilterSensitiveLog = (obj) => ({
381
+ ...obj,
382
+ });
383
+ export const WorkflowExecutionTerminatedEventAttributesFilterSensitiveLog = (obj) => ({
384
+ ...obj,
385
+ });
386
+ export const WorkflowExecutionTimedOutEventAttributesFilterSensitiveLog = (obj) => ({
387
+ ...obj,
388
+ });
389
+ export const HistoryEventFilterSensitiveLog = (obj) => ({
390
+ ...obj,
391
+ });
392
+ export const DecisionTaskFilterSensitiveLog = (obj) => ({
393
+ ...obj,
394
+ });
395
+ export const DeprecateActivityTypeInputFilterSensitiveLog = (obj) => ({
396
+ ...obj,
397
+ });
398
+ export const DeprecateDomainInputFilterSensitiveLog = (obj) => ({
399
+ ...obj,
400
+ });
401
+ export const DeprecateWorkflowTypeInputFilterSensitiveLog = (obj) => ({
402
+ ...obj,
403
+ });
404
+ export const DescribeActivityTypeInputFilterSensitiveLog = (obj) => ({
405
+ ...obj,
406
+ });
407
+ export const DescribeDomainInputFilterSensitiveLog = (obj) => ({
408
+ ...obj,
409
+ });
410
+ export const DomainConfigurationFilterSensitiveLog = (obj) => ({
411
+ ...obj,
412
+ });
413
+ export const DomainInfoFilterSensitiveLog = (obj) => ({
414
+ ...obj,
415
+ });
416
+ export const DomainDetailFilterSensitiveLog = (obj) => ({
417
+ ...obj,
418
+ });
419
+ export const DescribeWorkflowExecutionInputFilterSensitiveLog = (obj) => ({
420
+ ...obj,
421
+ });
422
+ export const WorkflowExecutionConfigurationFilterSensitiveLog = (obj) => ({
423
+ ...obj,
424
+ });
425
+ export const WorkflowExecutionInfoFilterSensitiveLog = (obj) => ({
426
+ ...obj,
427
+ });
428
+ export const WorkflowExecutionOpenCountsFilterSensitiveLog = (obj) => ({
429
+ ...obj,
430
+ });
431
+ export const WorkflowExecutionDetailFilterSensitiveLog = (obj) => ({
432
+ ...obj,
433
+ });
434
+ export const DescribeWorkflowTypeInputFilterSensitiveLog = (obj) => ({
435
+ ...obj,
436
+ });
437
+ export const WorkflowTypeConfigurationFilterSensitiveLog = (obj) => ({
438
+ ...obj,
439
+ });
440
+ export const WorkflowTypeInfoFilterSensitiveLog = (obj) => ({
441
+ ...obj,
442
+ });
443
+ export const WorkflowTypeDetailFilterSensitiveLog = (obj) => ({
444
+ ...obj,
445
+ });
446
+ export const DomainInfosFilterSensitiveLog = (obj) => ({
447
+ ...obj,
448
+ });
449
+ export const GetWorkflowExecutionHistoryInputFilterSensitiveLog = (obj) => ({
450
+ ...obj,
451
+ });
452
+ export const HistoryFilterSensitiveLog = (obj) => ({
453
+ ...obj,
454
+ });
455
+ export const ListActivityTypesInputFilterSensitiveLog = (obj) => ({
456
+ ...obj,
457
+ });
458
+ export const ListClosedWorkflowExecutionsInputFilterSensitiveLog = (obj) => ({
459
+ ...obj,
460
+ });
461
+ export const WorkflowExecutionInfosFilterSensitiveLog = (obj) => ({
462
+ ...obj,
463
+ });
464
+ export const ListDomainsInputFilterSensitiveLog = (obj) => ({
465
+ ...obj,
466
+ });
467
+ export const ListOpenWorkflowExecutionsInputFilterSensitiveLog = (obj) => ({
468
+ ...obj,
469
+ });
470
+ export const ListTagsForResourceInputFilterSensitiveLog = (obj) => ({
471
+ ...obj,
472
+ });
473
+ export const ResourceTagFilterSensitiveLog = (obj) => ({
474
+ ...obj,
475
+ });
476
+ export const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
477
+ ...obj,
478
+ });
479
+ export const ListWorkflowTypesInputFilterSensitiveLog = (obj) => ({
480
+ ...obj,
481
+ });
482
+ export const WorkflowTypeInfosFilterSensitiveLog = (obj) => ({
483
+ ...obj,
484
+ });
485
+ export const PollForActivityTaskInputFilterSensitiveLog = (obj) => ({
486
+ ...obj,
487
+ });
488
+ export const PollForDecisionTaskInputFilterSensitiveLog = (obj) => ({
489
+ ...obj,
490
+ });
491
+ export const RecordActivityTaskHeartbeatInputFilterSensitiveLog = (obj) => ({
492
+ ...obj,
493
+ });
494
+ export const RegisterActivityTypeInputFilterSensitiveLog = (obj) => ({
495
+ ...obj,
496
+ });
497
+ export const RegisterDomainInputFilterSensitiveLog = (obj) => ({
498
+ ...obj,
499
+ });
500
+ export const RegisterWorkflowTypeInputFilterSensitiveLog = (obj) => ({
501
+ ...obj,
502
+ });
503
+ export const RequestCancelWorkflowExecutionInputFilterSensitiveLog = (obj) => ({
504
+ ...obj,
505
+ });
506
+ export const RespondActivityTaskCanceledInputFilterSensitiveLog = (obj) => ({
507
+ ...obj,
508
+ });
509
+ export const RespondActivityTaskCompletedInputFilterSensitiveLog = (obj) => ({
510
+ ...obj,
511
+ });
512
+ export const RespondActivityTaskFailedInputFilterSensitiveLog = (obj) => ({
513
+ ...obj,
514
+ });
515
+ export const RespondDecisionTaskCompletedInputFilterSensitiveLog = (obj) => ({
516
+ ...obj,
517
+ });
518
+ export const RunFilterSensitiveLog = (obj) => ({
519
+ ...obj,
520
+ });
521
+ export const SignalWorkflowExecutionInputFilterSensitiveLog = (obj) => ({
522
+ ...obj,
523
+ });
524
+ export const StartWorkflowExecutionInputFilterSensitiveLog = (obj) => ({
525
+ ...obj,
526
+ });
527
+ export const TagResourceInputFilterSensitiveLog = (obj) => ({
528
+ ...obj,
529
+ });
530
+ export const TerminateWorkflowExecutionInputFilterSensitiveLog = (obj) => ({
531
+ ...obj,
532
+ });
533
+ export const UndeprecateActivityTypeInputFilterSensitiveLog = (obj) => ({
534
+ ...obj,
535
+ });
536
+ export const UndeprecateDomainInputFilterSensitiveLog = (obj) => ({
537
+ ...obj,
538
+ });
539
+ export const UndeprecateWorkflowTypeInputFilterSensitiveLog = (obj) => ({
540
+ ...obj,
541
+ });
542
+ export const UntagResourceInputFilterSensitiveLog = (obj) => ({
543
+ ...obj,
544
+ });