@aws-sdk/client-sfn 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.
- package/CHANGELOG.md +20 -0
- package/dist-cjs/protocols/Aws_json1_0.js +29 -23
- package/dist-es/SFN.js +94 -101
- package/dist-es/SFNClient.js +22 -28
- package/dist-es/commands/CreateActivityCommand.js +21 -28
- package/dist-es/commands/CreateStateMachineCommand.js +21 -28
- package/dist-es/commands/DeleteActivityCommand.js +21 -28
- package/dist-es/commands/DeleteStateMachineCommand.js +21 -28
- package/dist-es/commands/DescribeActivityCommand.js +21 -28
- package/dist-es/commands/DescribeExecutionCommand.js +21 -28
- package/dist-es/commands/DescribeStateMachineCommand.js +21 -28
- package/dist-es/commands/DescribeStateMachineForExecutionCommand.js +21 -28
- package/dist-es/commands/GetActivityTaskCommand.js +21 -28
- package/dist-es/commands/GetExecutionHistoryCommand.js +21 -28
- package/dist-es/commands/ListActivitiesCommand.js +21 -28
- package/dist-es/commands/ListExecutionsCommand.js +21 -28
- package/dist-es/commands/ListStateMachinesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/SendTaskFailureCommand.js +21 -28
- package/dist-es/commands/SendTaskHeartbeatCommand.js +21 -28
- package/dist-es/commands/SendTaskSuccessCommand.js +21 -28
- package/dist-es/commands/StartExecutionCommand.js +21 -28
- package/dist-es/commands/StartSyncExecutionCommand.js +21 -28
- package/dist-es/commands/StopExecutionCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateStateMachineCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/SFNServiceException.js +5 -10
- package/dist-es/models/models_0.js +660 -404
- package/dist-es/pagination/GetExecutionHistoryPaginator.js +25 -68
- package/dist-es/pagination/ListActivitiesPaginator.js +25 -68
- package/dist-es/pagination/ListExecutionsPaginator.js +25 -68
- package/dist-es/pagination/ListStateMachinesPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_0.js +1656 -2090
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,430 +1,686 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { SFNServiceException as __BaseException } from "./SFNServiceException";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
3
|
+
export class ActivityDoesNotExist extends __BaseException {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
super({
|
|
6
|
+
name: "ActivityDoesNotExist",
|
|
7
|
+
$fault: "client",
|
|
8
|
+
...opts,
|
|
9
|
+
});
|
|
10
|
+
this.name = "ActivityDoesNotExist";
|
|
11
|
+
this.$fault = "client";
|
|
12
|
+
Object.setPrototypeOf(this, ActivityDoesNotExist.prototype);
|
|
12
13
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
14
|
+
}
|
|
15
|
+
export class ActivityLimitExceeded extends __BaseException {
|
|
16
|
+
constructor(opts) {
|
|
17
|
+
super({
|
|
18
|
+
name: "ActivityLimitExceeded",
|
|
19
|
+
$fault: "client",
|
|
20
|
+
...opts,
|
|
21
|
+
});
|
|
22
|
+
this.name = "ActivityLimitExceeded";
|
|
23
|
+
this.$fault = "client";
|
|
24
|
+
Object.setPrototypeOf(this, ActivityLimitExceeded.prototype);
|
|
24
25
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
26
|
+
}
|
|
27
|
+
export class ActivityWorkerLimitExceeded extends __BaseException {
|
|
28
|
+
constructor(opts) {
|
|
29
|
+
super({
|
|
30
|
+
name: "ActivityWorkerLimitExceeded",
|
|
31
|
+
$fault: "client",
|
|
32
|
+
...opts,
|
|
33
|
+
});
|
|
34
|
+
this.name = "ActivityWorkerLimitExceeded";
|
|
35
|
+
this.$fault = "client";
|
|
36
|
+
Object.setPrototypeOf(this, ActivityWorkerLimitExceeded.prototype);
|
|
36
37
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
38
|
+
}
|
|
39
|
+
export class InvalidName extends __BaseException {
|
|
40
|
+
constructor(opts) {
|
|
41
|
+
super({
|
|
42
|
+
name: "InvalidName",
|
|
43
|
+
$fault: "client",
|
|
44
|
+
...opts,
|
|
45
|
+
});
|
|
46
|
+
this.name = "InvalidName";
|
|
47
|
+
this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(this, InvalidName.prototype);
|
|
48
49
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
50
|
+
}
|
|
51
|
+
export class TooManyTags extends __BaseException {
|
|
52
|
+
constructor(opts) {
|
|
53
|
+
super({
|
|
54
|
+
name: "TooManyTags",
|
|
55
|
+
$fault: "client",
|
|
56
|
+
...opts,
|
|
57
|
+
});
|
|
58
|
+
this.name = "TooManyTags";
|
|
59
|
+
this.$fault = "client";
|
|
60
|
+
Object.setPrototypeOf(this, TooManyTags.prototype);
|
|
61
|
+
this.resourceName = opts.resourceName;
|
|
61
62
|
}
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
63
|
+
}
|
|
64
|
+
export class InvalidArn extends __BaseException {
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "InvalidArn",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
this.name = "InvalidArn";
|
|
72
|
+
this.$fault = "client";
|
|
73
|
+
Object.setPrototypeOf(this, InvalidArn.prototype);
|
|
73
74
|
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
75
|
+
}
|
|
76
|
+
export class InvalidDefinition extends __BaseException {
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "InvalidDefinition",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
this.name = "InvalidDefinition";
|
|
84
|
+
this.$fault = "client";
|
|
85
|
+
Object.setPrototypeOf(this, InvalidDefinition.prototype);
|
|
85
86
|
}
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
87
|
+
}
|
|
88
|
+
export class InvalidLoggingConfiguration extends __BaseException {
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "InvalidLoggingConfiguration",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
this.name = "InvalidLoggingConfiguration";
|
|
96
|
+
this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(this, InvalidLoggingConfiguration.prototype);
|
|
97
98
|
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
99
|
+
}
|
|
100
|
+
export class InvalidTracingConfiguration extends __BaseException {
|
|
101
|
+
constructor(opts) {
|
|
102
|
+
super({
|
|
103
|
+
name: "InvalidTracingConfiguration",
|
|
104
|
+
$fault: "client",
|
|
105
|
+
...opts,
|
|
106
|
+
});
|
|
107
|
+
this.name = "InvalidTracingConfiguration";
|
|
108
|
+
this.$fault = "client";
|
|
109
|
+
Object.setPrototypeOf(this, InvalidTracingConfiguration.prototype);
|
|
109
110
|
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
111
|
+
}
|
|
112
|
+
export class StateMachineAlreadyExists extends __BaseException {
|
|
113
|
+
constructor(opts) {
|
|
114
|
+
super({
|
|
115
|
+
name: "StateMachineAlreadyExists",
|
|
116
|
+
$fault: "client",
|
|
117
|
+
...opts,
|
|
118
|
+
});
|
|
119
|
+
this.name = "StateMachineAlreadyExists";
|
|
120
|
+
this.$fault = "client";
|
|
121
|
+
Object.setPrototypeOf(this, StateMachineAlreadyExists.prototype);
|
|
121
122
|
}
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
123
|
+
}
|
|
124
|
+
export class StateMachineDeleting extends __BaseException {
|
|
125
|
+
constructor(opts) {
|
|
126
|
+
super({
|
|
127
|
+
name: "StateMachineDeleting",
|
|
128
|
+
$fault: "client",
|
|
129
|
+
...opts,
|
|
130
|
+
});
|
|
131
|
+
this.name = "StateMachineDeleting";
|
|
132
|
+
this.$fault = "client";
|
|
133
|
+
Object.setPrototypeOf(this, StateMachineDeleting.prototype);
|
|
133
134
|
}
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
135
|
+
}
|
|
136
|
+
export class StateMachineLimitExceeded extends __BaseException {
|
|
137
|
+
constructor(opts) {
|
|
138
|
+
super({
|
|
139
|
+
name: "StateMachineLimitExceeded",
|
|
140
|
+
$fault: "client",
|
|
141
|
+
...opts,
|
|
142
|
+
});
|
|
143
|
+
this.name = "StateMachineLimitExceeded";
|
|
144
|
+
this.$fault = "client";
|
|
145
|
+
Object.setPrototypeOf(this, StateMachineLimitExceeded.prototype);
|
|
145
146
|
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
147
|
+
}
|
|
148
|
+
export class StateMachineTypeNotSupported extends __BaseException {
|
|
149
|
+
constructor(opts) {
|
|
150
|
+
super({
|
|
151
|
+
name: "StateMachineTypeNotSupported",
|
|
152
|
+
$fault: "client",
|
|
153
|
+
...opts,
|
|
154
|
+
});
|
|
155
|
+
this.name = "StateMachineTypeNotSupported";
|
|
156
|
+
this.$fault = "client";
|
|
157
|
+
Object.setPrototypeOf(this, StateMachineTypeNotSupported.prototype);
|
|
157
158
|
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
159
|
+
}
|
|
160
|
+
export class ExecutionDoesNotExist extends __BaseException {
|
|
161
|
+
constructor(opts) {
|
|
162
|
+
super({
|
|
163
|
+
name: "ExecutionDoesNotExist",
|
|
164
|
+
$fault: "client",
|
|
165
|
+
...opts,
|
|
166
|
+
});
|
|
167
|
+
this.name = "ExecutionDoesNotExist";
|
|
168
|
+
this.$fault = "client";
|
|
169
|
+
Object.setPrototypeOf(this, ExecutionDoesNotExist.prototype);
|
|
169
170
|
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
171
|
+
}
|
|
172
|
+
export class StateMachineDoesNotExist extends __BaseException {
|
|
173
|
+
constructor(opts) {
|
|
174
|
+
super({
|
|
175
|
+
name: "StateMachineDoesNotExist",
|
|
176
|
+
$fault: "client",
|
|
177
|
+
...opts,
|
|
178
|
+
});
|
|
179
|
+
this.name = "StateMachineDoesNotExist";
|
|
180
|
+
this.$fault = "client";
|
|
181
|
+
Object.setPrototypeOf(this, StateMachineDoesNotExist.prototype);
|
|
181
182
|
}
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
183
|
+
}
|
|
184
|
+
export class InvalidToken extends __BaseException {
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "InvalidToken",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
this.name = "InvalidToken";
|
|
192
|
+
this.$fault = "client";
|
|
193
|
+
Object.setPrototypeOf(this, InvalidToken.prototype);
|
|
193
194
|
}
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
195
|
+
}
|
|
196
|
+
export class ResourceNotFound extends __BaseException {
|
|
197
|
+
constructor(opts) {
|
|
198
|
+
super({
|
|
199
|
+
name: "ResourceNotFound",
|
|
200
|
+
$fault: "client",
|
|
201
|
+
...opts,
|
|
202
|
+
});
|
|
203
|
+
this.name = "ResourceNotFound";
|
|
204
|
+
this.$fault = "client";
|
|
205
|
+
Object.setPrototypeOf(this, ResourceNotFound.prototype);
|
|
206
|
+
this.resourceName = opts.resourceName;
|
|
206
207
|
}
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
208
|
+
}
|
|
209
|
+
export class TaskDoesNotExist extends __BaseException {
|
|
210
|
+
constructor(opts) {
|
|
211
|
+
super({
|
|
212
|
+
name: "TaskDoesNotExist",
|
|
213
|
+
$fault: "client",
|
|
214
|
+
...opts,
|
|
215
|
+
});
|
|
216
|
+
this.name = "TaskDoesNotExist";
|
|
217
|
+
this.$fault = "client";
|
|
218
|
+
Object.setPrototypeOf(this, TaskDoesNotExist.prototype);
|
|
218
219
|
}
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
220
|
+
}
|
|
221
|
+
export class TaskTimedOut extends __BaseException {
|
|
222
|
+
constructor(opts) {
|
|
223
|
+
super({
|
|
224
|
+
name: "TaskTimedOut",
|
|
225
|
+
$fault: "client",
|
|
226
|
+
...opts,
|
|
227
|
+
});
|
|
228
|
+
this.name = "TaskTimedOut";
|
|
229
|
+
this.$fault = "client";
|
|
230
|
+
Object.setPrototypeOf(this, TaskTimedOut.prototype);
|
|
230
231
|
}
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
232
|
+
}
|
|
233
|
+
export class InvalidOutput extends __BaseException {
|
|
234
|
+
constructor(opts) {
|
|
235
|
+
super({
|
|
236
|
+
name: "InvalidOutput",
|
|
237
|
+
$fault: "client",
|
|
238
|
+
...opts,
|
|
239
|
+
});
|
|
240
|
+
this.name = "InvalidOutput";
|
|
241
|
+
this.$fault = "client";
|
|
242
|
+
Object.setPrototypeOf(this, InvalidOutput.prototype);
|
|
242
243
|
}
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
244
|
+
}
|
|
245
|
+
export class ExecutionAlreadyExists extends __BaseException {
|
|
246
|
+
constructor(opts) {
|
|
247
|
+
super({
|
|
248
|
+
name: "ExecutionAlreadyExists",
|
|
249
|
+
$fault: "client",
|
|
250
|
+
...opts,
|
|
251
|
+
});
|
|
252
|
+
this.name = "ExecutionAlreadyExists";
|
|
253
|
+
this.$fault = "client";
|
|
254
|
+
Object.setPrototypeOf(this, ExecutionAlreadyExists.prototype);
|
|
254
255
|
}
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
256
|
+
}
|
|
257
|
+
export class ExecutionLimitExceeded extends __BaseException {
|
|
258
|
+
constructor(opts) {
|
|
259
|
+
super({
|
|
260
|
+
name: "ExecutionLimitExceeded",
|
|
261
|
+
$fault: "client",
|
|
262
|
+
...opts,
|
|
263
|
+
});
|
|
264
|
+
this.name = "ExecutionLimitExceeded";
|
|
265
|
+
this.$fault = "client";
|
|
266
|
+
Object.setPrototypeOf(this, ExecutionLimitExceeded.prototype);
|
|
266
267
|
}
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
268
|
+
}
|
|
269
|
+
export class InvalidExecutionInput extends __BaseException {
|
|
270
|
+
constructor(opts) {
|
|
271
|
+
super({
|
|
272
|
+
name: "InvalidExecutionInput",
|
|
273
|
+
$fault: "client",
|
|
274
|
+
...opts,
|
|
275
|
+
});
|
|
276
|
+
this.name = "InvalidExecutionInput";
|
|
277
|
+
this.$fault = "client";
|
|
278
|
+
Object.setPrototypeOf(this, InvalidExecutionInput.prototype);
|
|
278
279
|
}
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
280
|
+
}
|
|
281
|
+
export class MissingRequiredParameter extends __BaseException {
|
|
282
|
+
constructor(opts) {
|
|
283
|
+
super({
|
|
284
|
+
name: "MissingRequiredParameter",
|
|
285
|
+
$fault: "client",
|
|
286
|
+
...opts,
|
|
287
|
+
});
|
|
288
|
+
this.name = "MissingRequiredParameter";
|
|
289
|
+
this.$fault = "client";
|
|
290
|
+
Object.setPrototypeOf(this, MissingRequiredParameter.prototype);
|
|
290
291
|
}
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
export
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
export
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
export
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
export
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
export
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
export
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
export
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
export
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
export
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
export
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
export
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
export
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
})
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
})
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
})
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
})
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
})
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
})
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
})
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
})
|
|
401
|
-
|
|
402
|
-
export
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
export
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
export
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
export
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
export
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
export
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
export
|
|
429
|
-
|
|
430
|
-
|
|
292
|
+
}
|
|
293
|
+
export const ActivityFailedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
294
|
+
...obj,
|
|
295
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
296
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
297
|
+
});
|
|
298
|
+
export const ActivityListItemFilterSensitiveLog = (obj) => ({
|
|
299
|
+
...obj,
|
|
300
|
+
});
|
|
301
|
+
export const HistoryEventExecutionDataDetailsFilterSensitiveLog = (obj) => ({
|
|
302
|
+
...obj,
|
|
303
|
+
});
|
|
304
|
+
export const ActivityScheduledEventDetailsFilterSensitiveLog = (obj) => ({
|
|
305
|
+
...obj,
|
|
306
|
+
...(obj.input && { input: SENSITIVE_STRING }),
|
|
307
|
+
});
|
|
308
|
+
export const ActivityScheduleFailedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
309
|
+
...obj,
|
|
310
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
311
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
312
|
+
});
|
|
313
|
+
export const ActivityStartedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
314
|
+
...obj,
|
|
315
|
+
});
|
|
316
|
+
export const ActivitySucceededEventDetailsFilterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
...(obj.output && { output: SENSITIVE_STRING }),
|
|
319
|
+
});
|
|
320
|
+
export const ActivityTimedOutEventDetailsFilterSensitiveLog = (obj) => ({
|
|
321
|
+
...obj,
|
|
322
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
323
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
324
|
+
});
|
|
325
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
});
|
|
328
|
+
export const CreateActivityInputFilterSensitiveLog = (obj) => ({
|
|
329
|
+
...obj,
|
|
330
|
+
});
|
|
331
|
+
export const CreateActivityOutputFilterSensitiveLog = (obj) => ({
|
|
332
|
+
...obj,
|
|
333
|
+
});
|
|
334
|
+
export const CloudWatchLogsLogGroupFilterSensitiveLog = (obj) => ({
|
|
335
|
+
...obj,
|
|
336
|
+
});
|
|
337
|
+
export const LogDestinationFilterSensitiveLog = (obj) => ({
|
|
338
|
+
...obj,
|
|
339
|
+
});
|
|
340
|
+
export const LoggingConfigurationFilterSensitiveLog = (obj) => ({
|
|
341
|
+
...obj,
|
|
342
|
+
});
|
|
343
|
+
export const TracingConfigurationFilterSensitiveLog = (obj) => ({
|
|
344
|
+
...obj,
|
|
345
|
+
});
|
|
346
|
+
export const CreateStateMachineInputFilterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
...(obj.definition && { definition: SENSITIVE_STRING }),
|
|
349
|
+
});
|
|
350
|
+
export const CreateStateMachineOutputFilterSensitiveLog = (obj) => ({
|
|
351
|
+
...obj,
|
|
352
|
+
});
|
|
353
|
+
export const DeleteActivityInputFilterSensitiveLog = (obj) => ({
|
|
354
|
+
...obj,
|
|
355
|
+
});
|
|
356
|
+
export const DeleteActivityOutputFilterSensitiveLog = (obj) => ({
|
|
357
|
+
...obj,
|
|
358
|
+
});
|
|
359
|
+
export const DeleteStateMachineInputFilterSensitiveLog = (obj) => ({
|
|
360
|
+
...obj,
|
|
361
|
+
});
|
|
362
|
+
export const DeleteStateMachineOutputFilterSensitiveLog = (obj) => ({
|
|
363
|
+
...obj,
|
|
364
|
+
});
|
|
365
|
+
export const DescribeActivityInputFilterSensitiveLog = (obj) => ({
|
|
366
|
+
...obj,
|
|
367
|
+
});
|
|
368
|
+
export const DescribeActivityOutputFilterSensitiveLog = (obj) => ({
|
|
369
|
+
...obj,
|
|
370
|
+
});
|
|
371
|
+
export const DescribeExecutionInputFilterSensitiveLog = (obj) => ({
|
|
372
|
+
...obj,
|
|
373
|
+
});
|
|
374
|
+
export const CloudWatchEventsExecutionDataDetailsFilterSensitiveLog = (obj) => ({
|
|
375
|
+
...obj,
|
|
376
|
+
});
|
|
377
|
+
export const DescribeExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
378
|
+
...obj,
|
|
379
|
+
...(obj.input && { input: SENSITIVE_STRING }),
|
|
380
|
+
...(obj.output && { output: SENSITIVE_STRING }),
|
|
381
|
+
});
|
|
382
|
+
export const DescribeStateMachineInputFilterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
});
|
|
385
|
+
export const DescribeStateMachineOutputFilterSensitiveLog = (obj) => ({
|
|
386
|
+
...obj,
|
|
387
|
+
...(obj.definition && { definition: SENSITIVE_STRING }),
|
|
388
|
+
});
|
|
389
|
+
export const DescribeStateMachineForExecutionInputFilterSensitiveLog = (obj) => ({
|
|
390
|
+
...obj,
|
|
391
|
+
});
|
|
392
|
+
export const DescribeStateMachineForExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
393
|
+
...obj,
|
|
394
|
+
...(obj.definition && { definition: SENSITIVE_STRING }),
|
|
395
|
+
});
|
|
396
|
+
export const GetActivityTaskInputFilterSensitiveLog = (obj) => ({
|
|
397
|
+
...obj,
|
|
398
|
+
});
|
|
399
|
+
export const GetActivityTaskOutputFilterSensitiveLog = (obj) => ({
|
|
400
|
+
...obj,
|
|
401
|
+
...(obj.input && { input: SENSITIVE_STRING }),
|
|
402
|
+
});
|
|
403
|
+
export const GetExecutionHistoryInputFilterSensitiveLog = (obj) => ({
|
|
404
|
+
...obj,
|
|
405
|
+
});
|
|
406
|
+
export const ExecutionAbortedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
407
|
+
...obj,
|
|
408
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
409
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
410
|
+
});
|
|
411
|
+
export const ExecutionFailedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
412
|
+
...obj,
|
|
413
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
414
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
415
|
+
});
|
|
416
|
+
export const ExecutionStartedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
417
|
+
...obj,
|
|
418
|
+
...(obj.input && { input: SENSITIVE_STRING }),
|
|
419
|
+
});
|
|
420
|
+
export const ExecutionSucceededEventDetailsFilterSensitiveLog = (obj) => ({
|
|
421
|
+
...obj,
|
|
422
|
+
...(obj.output && { output: SENSITIVE_STRING }),
|
|
423
|
+
});
|
|
424
|
+
export const ExecutionTimedOutEventDetailsFilterSensitiveLog = (obj) => ({
|
|
425
|
+
...obj,
|
|
426
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
427
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
428
|
+
});
|
|
429
|
+
export const LambdaFunctionFailedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
430
|
+
...obj,
|
|
431
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
432
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
433
|
+
});
|
|
434
|
+
export const LambdaFunctionScheduledEventDetailsFilterSensitiveLog = (obj) => ({
|
|
435
|
+
...obj,
|
|
436
|
+
...(obj.input && { input: SENSITIVE_STRING }),
|
|
437
|
+
});
|
|
438
|
+
export const LambdaFunctionScheduleFailedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
439
|
+
...obj,
|
|
440
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
441
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
442
|
+
});
|
|
443
|
+
export const LambdaFunctionStartFailedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
444
|
+
...obj,
|
|
445
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
446
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
447
|
+
});
|
|
448
|
+
export const LambdaFunctionSucceededEventDetailsFilterSensitiveLog = (obj) => ({
|
|
449
|
+
...obj,
|
|
450
|
+
...(obj.output && { output: SENSITIVE_STRING }),
|
|
451
|
+
});
|
|
452
|
+
export const LambdaFunctionTimedOutEventDetailsFilterSensitiveLog = (obj) => ({
|
|
453
|
+
...obj,
|
|
454
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
455
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
456
|
+
});
|
|
457
|
+
export const MapIterationEventDetailsFilterSensitiveLog = (obj) => ({
|
|
458
|
+
...obj,
|
|
459
|
+
});
|
|
460
|
+
export const MapStateStartedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
461
|
+
...obj,
|
|
462
|
+
});
|
|
463
|
+
export const StateEnteredEventDetailsFilterSensitiveLog = (obj) => ({
|
|
464
|
+
...obj,
|
|
465
|
+
...(obj.input && { input: SENSITIVE_STRING }),
|
|
466
|
+
});
|
|
467
|
+
export const StateExitedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
468
|
+
...obj,
|
|
469
|
+
...(obj.output && { output: SENSITIVE_STRING }),
|
|
470
|
+
});
|
|
471
|
+
export const TaskFailedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
472
|
+
...obj,
|
|
473
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
474
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
475
|
+
});
|
|
476
|
+
export const TaskScheduledEventDetailsFilterSensitiveLog = (obj) => ({
|
|
477
|
+
...obj,
|
|
478
|
+
...(obj.parameters && { parameters: SENSITIVE_STRING }),
|
|
479
|
+
});
|
|
480
|
+
export const TaskStartedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
481
|
+
...obj,
|
|
482
|
+
});
|
|
483
|
+
export const TaskStartFailedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
484
|
+
...obj,
|
|
485
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
486
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
487
|
+
});
|
|
488
|
+
export const TaskSubmitFailedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
489
|
+
...obj,
|
|
490
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
491
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
492
|
+
});
|
|
493
|
+
export const TaskSubmittedEventDetailsFilterSensitiveLog = (obj) => ({
|
|
494
|
+
...obj,
|
|
495
|
+
...(obj.output && { output: SENSITIVE_STRING }),
|
|
496
|
+
});
|
|
497
|
+
export const TaskSucceededEventDetailsFilterSensitiveLog = (obj) => ({
|
|
498
|
+
...obj,
|
|
499
|
+
...(obj.output && { output: SENSITIVE_STRING }),
|
|
500
|
+
});
|
|
501
|
+
export const TaskTimedOutEventDetailsFilterSensitiveLog = (obj) => ({
|
|
502
|
+
...obj,
|
|
503
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
504
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
505
|
+
});
|
|
506
|
+
export const HistoryEventFilterSensitiveLog = (obj) => ({
|
|
507
|
+
...obj,
|
|
508
|
+
...(obj.activityFailedEventDetails && {
|
|
509
|
+
activityFailedEventDetails: ActivityFailedEventDetailsFilterSensitiveLog(obj.activityFailedEventDetails),
|
|
510
|
+
}),
|
|
511
|
+
...(obj.activityScheduleFailedEventDetails && {
|
|
512
|
+
activityScheduleFailedEventDetails: ActivityScheduleFailedEventDetailsFilterSensitiveLog(obj.activityScheduleFailedEventDetails),
|
|
513
|
+
}),
|
|
514
|
+
...(obj.activityScheduledEventDetails && {
|
|
515
|
+
activityScheduledEventDetails: ActivityScheduledEventDetailsFilterSensitiveLog(obj.activityScheduledEventDetails),
|
|
516
|
+
}),
|
|
517
|
+
...(obj.activitySucceededEventDetails && {
|
|
518
|
+
activitySucceededEventDetails: ActivitySucceededEventDetailsFilterSensitiveLog(obj.activitySucceededEventDetails),
|
|
519
|
+
}),
|
|
520
|
+
...(obj.activityTimedOutEventDetails && {
|
|
521
|
+
activityTimedOutEventDetails: ActivityTimedOutEventDetailsFilterSensitiveLog(obj.activityTimedOutEventDetails),
|
|
522
|
+
}),
|
|
523
|
+
...(obj.taskFailedEventDetails && {
|
|
524
|
+
taskFailedEventDetails: TaskFailedEventDetailsFilterSensitiveLog(obj.taskFailedEventDetails),
|
|
525
|
+
}),
|
|
526
|
+
...(obj.taskScheduledEventDetails && {
|
|
527
|
+
taskScheduledEventDetails: TaskScheduledEventDetailsFilterSensitiveLog(obj.taskScheduledEventDetails),
|
|
528
|
+
}),
|
|
529
|
+
...(obj.taskStartFailedEventDetails && {
|
|
530
|
+
taskStartFailedEventDetails: TaskStartFailedEventDetailsFilterSensitiveLog(obj.taskStartFailedEventDetails),
|
|
531
|
+
}),
|
|
532
|
+
...(obj.taskSubmitFailedEventDetails && {
|
|
533
|
+
taskSubmitFailedEventDetails: TaskSubmitFailedEventDetailsFilterSensitiveLog(obj.taskSubmitFailedEventDetails),
|
|
534
|
+
}),
|
|
535
|
+
...(obj.taskSubmittedEventDetails && {
|
|
536
|
+
taskSubmittedEventDetails: TaskSubmittedEventDetailsFilterSensitiveLog(obj.taskSubmittedEventDetails),
|
|
537
|
+
}),
|
|
538
|
+
...(obj.taskSucceededEventDetails && {
|
|
539
|
+
taskSucceededEventDetails: TaskSucceededEventDetailsFilterSensitiveLog(obj.taskSucceededEventDetails),
|
|
540
|
+
}),
|
|
541
|
+
...(obj.taskTimedOutEventDetails && {
|
|
542
|
+
taskTimedOutEventDetails: TaskTimedOutEventDetailsFilterSensitiveLog(obj.taskTimedOutEventDetails),
|
|
543
|
+
}),
|
|
544
|
+
...(obj.executionFailedEventDetails && {
|
|
545
|
+
executionFailedEventDetails: ExecutionFailedEventDetailsFilterSensitiveLog(obj.executionFailedEventDetails),
|
|
546
|
+
}),
|
|
547
|
+
...(obj.executionStartedEventDetails && {
|
|
548
|
+
executionStartedEventDetails: ExecutionStartedEventDetailsFilterSensitiveLog(obj.executionStartedEventDetails),
|
|
549
|
+
}),
|
|
550
|
+
...(obj.executionSucceededEventDetails && {
|
|
551
|
+
executionSucceededEventDetails: ExecutionSucceededEventDetailsFilterSensitiveLog(obj.executionSucceededEventDetails),
|
|
552
|
+
}),
|
|
553
|
+
...(obj.executionAbortedEventDetails && {
|
|
554
|
+
executionAbortedEventDetails: ExecutionAbortedEventDetailsFilterSensitiveLog(obj.executionAbortedEventDetails),
|
|
555
|
+
}),
|
|
556
|
+
...(obj.executionTimedOutEventDetails && {
|
|
557
|
+
executionTimedOutEventDetails: ExecutionTimedOutEventDetailsFilterSensitiveLog(obj.executionTimedOutEventDetails),
|
|
558
|
+
}),
|
|
559
|
+
...(obj.lambdaFunctionFailedEventDetails && {
|
|
560
|
+
lambdaFunctionFailedEventDetails: LambdaFunctionFailedEventDetailsFilterSensitiveLog(obj.lambdaFunctionFailedEventDetails),
|
|
561
|
+
}),
|
|
562
|
+
...(obj.lambdaFunctionScheduleFailedEventDetails && {
|
|
563
|
+
lambdaFunctionScheduleFailedEventDetails: LambdaFunctionScheduleFailedEventDetailsFilterSensitiveLog(obj.lambdaFunctionScheduleFailedEventDetails),
|
|
564
|
+
}),
|
|
565
|
+
...(obj.lambdaFunctionScheduledEventDetails && {
|
|
566
|
+
lambdaFunctionScheduledEventDetails: LambdaFunctionScheduledEventDetailsFilterSensitiveLog(obj.lambdaFunctionScheduledEventDetails),
|
|
567
|
+
}),
|
|
568
|
+
...(obj.lambdaFunctionStartFailedEventDetails && {
|
|
569
|
+
lambdaFunctionStartFailedEventDetails: LambdaFunctionStartFailedEventDetailsFilterSensitiveLog(obj.lambdaFunctionStartFailedEventDetails),
|
|
570
|
+
}),
|
|
571
|
+
...(obj.lambdaFunctionSucceededEventDetails && {
|
|
572
|
+
lambdaFunctionSucceededEventDetails: LambdaFunctionSucceededEventDetailsFilterSensitiveLog(obj.lambdaFunctionSucceededEventDetails),
|
|
573
|
+
}),
|
|
574
|
+
...(obj.lambdaFunctionTimedOutEventDetails && {
|
|
575
|
+
lambdaFunctionTimedOutEventDetails: LambdaFunctionTimedOutEventDetailsFilterSensitiveLog(obj.lambdaFunctionTimedOutEventDetails),
|
|
576
|
+
}),
|
|
577
|
+
...(obj.stateEnteredEventDetails && {
|
|
578
|
+
stateEnteredEventDetails: StateEnteredEventDetailsFilterSensitiveLog(obj.stateEnteredEventDetails),
|
|
579
|
+
}),
|
|
580
|
+
...(obj.stateExitedEventDetails && {
|
|
581
|
+
stateExitedEventDetails: StateExitedEventDetailsFilterSensitiveLog(obj.stateExitedEventDetails),
|
|
582
|
+
}),
|
|
583
|
+
});
|
|
584
|
+
export const GetExecutionHistoryOutputFilterSensitiveLog = (obj) => ({
|
|
585
|
+
...obj,
|
|
586
|
+
...(obj.events && { events: obj.events.map((item) => HistoryEventFilterSensitiveLog(item)) }),
|
|
587
|
+
});
|
|
588
|
+
export const ListActivitiesInputFilterSensitiveLog = (obj) => ({
|
|
589
|
+
...obj,
|
|
590
|
+
});
|
|
591
|
+
export const ListActivitiesOutputFilterSensitiveLog = (obj) => ({
|
|
592
|
+
...obj,
|
|
593
|
+
});
|
|
594
|
+
export const ListExecutionsInputFilterSensitiveLog = (obj) => ({
|
|
595
|
+
...obj,
|
|
596
|
+
});
|
|
597
|
+
export const ExecutionListItemFilterSensitiveLog = (obj) => ({
|
|
598
|
+
...obj,
|
|
599
|
+
});
|
|
600
|
+
export const ListExecutionsOutputFilterSensitiveLog = (obj) => ({
|
|
601
|
+
...obj,
|
|
602
|
+
});
|
|
603
|
+
export const ListStateMachinesInputFilterSensitiveLog = (obj) => ({
|
|
604
|
+
...obj,
|
|
605
|
+
});
|
|
606
|
+
export const StateMachineListItemFilterSensitiveLog = (obj) => ({
|
|
607
|
+
...obj,
|
|
608
|
+
});
|
|
609
|
+
export const ListStateMachinesOutputFilterSensitiveLog = (obj) => ({
|
|
610
|
+
...obj,
|
|
611
|
+
});
|
|
612
|
+
export const ListTagsForResourceInputFilterSensitiveLog = (obj) => ({
|
|
613
|
+
...obj,
|
|
614
|
+
});
|
|
615
|
+
export const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
|
|
616
|
+
...obj,
|
|
617
|
+
});
|
|
618
|
+
export const SendTaskFailureInputFilterSensitiveLog = (obj) => ({
|
|
619
|
+
...obj,
|
|
620
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
621
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
622
|
+
});
|
|
623
|
+
export const SendTaskFailureOutputFilterSensitiveLog = (obj) => ({
|
|
624
|
+
...obj,
|
|
625
|
+
});
|
|
626
|
+
export const SendTaskHeartbeatInputFilterSensitiveLog = (obj) => ({
|
|
627
|
+
...obj,
|
|
628
|
+
});
|
|
629
|
+
export const SendTaskHeartbeatOutputFilterSensitiveLog = (obj) => ({
|
|
630
|
+
...obj,
|
|
631
|
+
});
|
|
632
|
+
export const SendTaskSuccessInputFilterSensitiveLog = (obj) => ({
|
|
633
|
+
...obj,
|
|
634
|
+
...(obj.output && { output: SENSITIVE_STRING }),
|
|
635
|
+
});
|
|
636
|
+
export const SendTaskSuccessOutputFilterSensitiveLog = (obj) => ({
|
|
637
|
+
...obj,
|
|
638
|
+
});
|
|
639
|
+
export const StartExecutionInputFilterSensitiveLog = (obj) => ({
|
|
640
|
+
...obj,
|
|
641
|
+
...(obj.input && { input: SENSITIVE_STRING }),
|
|
642
|
+
});
|
|
643
|
+
export const StartExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
644
|
+
...obj,
|
|
645
|
+
});
|
|
646
|
+
export const StartSyncExecutionInputFilterSensitiveLog = (obj) => ({
|
|
647
|
+
...obj,
|
|
648
|
+
...(obj.input && { input: SENSITIVE_STRING }),
|
|
649
|
+
});
|
|
650
|
+
export const BillingDetailsFilterSensitiveLog = (obj) => ({
|
|
651
|
+
...obj,
|
|
652
|
+
});
|
|
653
|
+
export const StartSyncExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
654
|
+
...obj,
|
|
655
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
656
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
657
|
+
...(obj.input && { input: SENSITIVE_STRING }),
|
|
658
|
+
...(obj.output && { output: SENSITIVE_STRING }),
|
|
659
|
+
});
|
|
660
|
+
export const StopExecutionInputFilterSensitiveLog = (obj) => ({
|
|
661
|
+
...obj,
|
|
662
|
+
...(obj.error && { error: SENSITIVE_STRING }),
|
|
663
|
+
...(obj.cause && { cause: SENSITIVE_STRING }),
|
|
664
|
+
});
|
|
665
|
+
export const StopExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
666
|
+
...obj,
|
|
667
|
+
});
|
|
668
|
+
export const TagResourceInputFilterSensitiveLog = (obj) => ({
|
|
669
|
+
...obj,
|
|
670
|
+
});
|
|
671
|
+
export const TagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
672
|
+
...obj,
|
|
673
|
+
});
|
|
674
|
+
export const UntagResourceInputFilterSensitiveLog = (obj) => ({
|
|
675
|
+
...obj,
|
|
676
|
+
});
|
|
677
|
+
export const UntagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
678
|
+
...obj,
|
|
679
|
+
});
|
|
680
|
+
export const UpdateStateMachineInputFilterSensitiveLog = (obj) => ({
|
|
681
|
+
...obj,
|
|
682
|
+
...(obj.definition && { definition: SENSITIVE_STRING }),
|
|
683
|
+
});
|
|
684
|
+
export const UpdateStateMachineOutputFilterSensitiveLog = (obj) => ({
|
|
685
|
+
...obj,
|
|
686
|
+
});
|