@aws-sdk/client-kafkaconnect 3.297.0 → 3.299.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/dist-cjs/commands/CreateConnectorCommand.js +1 -1
- package/dist-cjs/commands/CreateCustomPluginCommand.js +2 -3
- package/dist-cjs/commands/CreateWorkerConfigurationCommand.js +1 -1
- package/dist-cjs/commands/DeleteConnectorCommand.js +2 -3
- package/dist-cjs/commands/DeleteCustomPluginCommand.js +2 -3
- package/dist-cjs/commands/DescribeConnectorCommand.js +1 -1
- package/dist-cjs/commands/DescribeCustomPluginCommand.js +2 -3
- package/dist-cjs/commands/DescribeWorkerConfigurationCommand.js +1 -1
- package/dist-cjs/commands/ListConnectorsCommand.js +2 -3
- package/dist-cjs/commands/ListCustomPluginsCommand.js +2 -3
- package/dist-cjs/commands/ListWorkerConfigurationsCommand.js +2 -3
- package/dist-cjs/commands/UpdateConnectorCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -290
- package/dist-es/commands/CreateConnectorCommand.js +2 -2
- package/dist-es/commands/CreateCustomPluginCommand.js +2 -3
- package/dist-es/commands/CreateWorkerConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteConnectorCommand.js +2 -3
- package/dist-es/commands/DeleteCustomPluginCommand.js +2 -3
- package/dist-es/commands/DescribeConnectorCommand.js +2 -2
- package/dist-es/commands/DescribeCustomPluginCommand.js +2 -3
- package/dist-es/commands/DescribeWorkerConfigurationCommand.js +2 -2
- package/dist-es/commands/ListConnectorsCommand.js +2 -3
- package/dist-es/commands/ListCustomPluginsCommand.js +2 -3
- package/dist-es/commands/ListWorkerConfigurationsCommand.js +2 -3
- package/dist-es/commands/UpdateConnectorCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -216
- package/dist-types/models/models_0.d.ts +0 -288
- package/dist-types/ts3.4/models/models_0.d.ts +0 -200
- package/package.json +11 -10
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeCustomPluginRequestFilterSensitiveLog, DescribeCustomPluginResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1DescribeCustomPluginCommand, serializeAws_restJson1DescribeCustomPluginCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class DescribeCustomPluginCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class DescribeCustomPluginCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeWorkerConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeWorkerConfigurationCommand, serializeAws_restJson1DescribeWorkerConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class DescribeWorkerConfigurationCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -27,7 +27,7 @@ export class DescribeWorkerConfigurationCommand extends $Command {
|
|
|
27
27
|
logger,
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
30
|
+
inputFilterSensitiveLog: (_) => _,
|
|
31
31
|
outputFilterSensitiveLog: DescribeWorkerConfigurationResponseFilterSensitiveLog,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListConnectorsRequestFilterSensitiveLog, ListConnectorsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListConnectorsCommand, serializeAws_restJson1ListConnectorsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListConnectorsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListConnectorsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListCustomPluginsRequestFilterSensitiveLog, ListCustomPluginsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListCustomPluginsCommand, serializeAws_restJson1ListCustomPluginsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListCustomPluginsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListCustomPluginsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListWorkerConfigurationsRequestFilterSensitiveLog, ListWorkerConfigurationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListWorkerConfigurationsCommand, serializeAws_restJson1ListWorkerConfigurationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListWorkerConfigurationsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListWorkerConfigurationsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UpdateConnectorRequestFilterSensitiveLog, UpdateConnectorResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UpdateConnectorCommand, serializeAws_restJson1UpdateConnectorCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UpdateConnectorCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdateConnectorCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -128,210 +128,18 @@ export class UnauthorizedException extends __BaseException {
|
|
|
128
128
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
|
-
export const ScaleInPolicyDescriptionFilterSensitiveLog = (obj) => ({
|
|
132
|
-
...obj,
|
|
133
|
-
});
|
|
134
|
-
export const ScaleOutPolicyDescriptionFilterSensitiveLog = (obj) => ({
|
|
135
|
-
...obj,
|
|
136
|
-
});
|
|
137
|
-
export const AutoScalingDescriptionFilterSensitiveLog = (obj) => ({
|
|
138
|
-
...obj,
|
|
139
|
-
});
|
|
140
|
-
export const ProvisionedCapacityDescriptionFilterSensitiveLog = (obj) => ({
|
|
141
|
-
...obj,
|
|
142
|
-
});
|
|
143
|
-
export const CapacityDescriptionFilterSensitiveLog = (obj) => ({
|
|
144
|
-
...obj,
|
|
145
|
-
});
|
|
146
|
-
export const VpcDescriptionFilterSensitiveLog = (obj) => ({
|
|
147
|
-
...obj,
|
|
148
|
-
});
|
|
149
|
-
export const ApacheKafkaClusterDescriptionFilterSensitiveLog = (obj) => ({
|
|
150
|
-
...obj,
|
|
151
|
-
});
|
|
152
|
-
export const KafkaClusterDescriptionFilterSensitiveLog = (obj) => ({
|
|
153
|
-
...obj,
|
|
154
|
-
});
|
|
155
|
-
export const KafkaClusterClientAuthenticationDescriptionFilterSensitiveLog = (obj) => ({
|
|
156
|
-
...obj,
|
|
157
|
-
});
|
|
158
|
-
export const KafkaClusterEncryptionInTransitDescriptionFilterSensitiveLog = (obj) => ({
|
|
159
|
-
...obj,
|
|
160
|
-
});
|
|
161
|
-
export const CloudWatchLogsLogDeliveryDescriptionFilterSensitiveLog = (obj) => ({
|
|
162
|
-
...obj,
|
|
163
|
-
});
|
|
164
|
-
export const FirehoseLogDeliveryDescriptionFilterSensitiveLog = (obj) => ({
|
|
165
|
-
...obj,
|
|
166
|
-
});
|
|
167
|
-
export const S3LogDeliveryDescriptionFilterSensitiveLog = (obj) => ({
|
|
168
|
-
...obj,
|
|
169
|
-
});
|
|
170
|
-
export const WorkerLogDeliveryDescriptionFilterSensitiveLog = (obj) => ({
|
|
171
|
-
...obj,
|
|
172
|
-
});
|
|
173
|
-
export const LogDeliveryDescriptionFilterSensitiveLog = (obj) => ({
|
|
174
|
-
...obj,
|
|
175
|
-
});
|
|
176
|
-
export const CustomPluginDescriptionFilterSensitiveLog = (obj) => ({
|
|
177
|
-
...obj,
|
|
178
|
-
});
|
|
179
|
-
export const PluginDescriptionFilterSensitiveLog = (obj) => ({
|
|
180
|
-
...obj,
|
|
181
|
-
});
|
|
182
|
-
export const WorkerConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
183
|
-
...obj,
|
|
184
|
-
});
|
|
185
|
-
export const ConnectorSummaryFilterSensitiveLog = (obj) => ({
|
|
186
|
-
...obj,
|
|
187
|
-
});
|
|
188
|
-
export const CustomPluginFileDescriptionFilterSensitiveLog = (obj) => ({
|
|
189
|
-
...obj,
|
|
190
|
-
});
|
|
191
|
-
export const S3LocationDescriptionFilterSensitiveLog = (obj) => ({
|
|
192
|
-
...obj,
|
|
193
|
-
});
|
|
194
|
-
export const CustomPluginLocationDescriptionFilterSensitiveLog = (obj) => ({
|
|
195
|
-
...obj,
|
|
196
|
-
});
|
|
197
|
-
export const CustomPluginRevisionSummaryFilterSensitiveLog = (obj) => ({
|
|
198
|
-
...obj,
|
|
199
|
-
});
|
|
200
|
-
export const CustomPluginSummaryFilterSensitiveLog = (obj) => ({
|
|
201
|
-
...obj,
|
|
202
|
-
});
|
|
203
|
-
export const CustomPluginFilterSensitiveLog = (obj) => ({
|
|
204
|
-
...obj,
|
|
205
|
-
});
|
|
206
|
-
export const PluginFilterSensitiveLog = (obj) => ({
|
|
207
|
-
...obj,
|
|
208
|
-
});
|
|
209
|
-
export const WorkerConfigurationRevisionSummaryFilterSensitiveLog = (obj) => ({
|
|
210
|
-
...obj,
|
|
211
|
-
});
|
|
212
|
-
export const WorkerConfigurationSummaryFilterSensitiveLog = (obj) => ({
|
|
213
|
-
...obj,
|
|
214
|
-
});
|
|
215
|
-
export const VpcFilterSensitiveLog = (obj) => ({
|
|
216
|
-
...obj,
|
|
217
|
-
});
|
|
218
|
-
export const ApacheKafkaClusterFilterSensitiveLog = (obj) => ({
|
|
219
|
-
...obj,
|
|
220
|
-
});
|
|
221
|
-
export const ScaleInPolicyFilterSensitiveLog = (obj) => ({
|
|
222
|
-
...obj,
|
|
223
|
-
});
|
|
224
|
-
export const ScaleOutPolicyFilterSensitiveLog = (obj) => ({
|
|
225
|
-
...obj,
|
|
226
|
-
});
|
|
227
|
-
export const AutoScalingFilterSensitiveLog = (obj) => ({
|
|
228
|
-
...obj,
|
|
229
|
-
});
|
|
230
|
-
export const ScaleInPolicyUpdateFilterSensitiveLog = (obj) => ({
|
|
231
|
-
...obj,
|
|
232
|
-
});
|
|
233
|
-
export const ScaleOutPolicyUpdateFilterSensitiveLog = (obj) => ({
|
|
234
|
-
...obj,
|
|
235
|
-
});
|
|
236
|
-
export const AutoScalingUpdateFilterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
});
|
|
239
|
-
export const ProvisionedCapacityFilterSensitiveLog = (obj) => ({
|
|
240
|
-
...obj,
|
|
241
|
-
});
|
|
242
|
-
export const CapacityFilterSensitiveLog = (obj) => ({
|
|
243
|
-
...obj,
|
|
244
|
-
});
|
|
245
|
-
export const ProvisionedCapacityUpdateFilterSensitiveLog = (obj) => ({
|
|
246
|
-
...obj,
|
|
247
|
-
});
|
|
248
|
-
export const CapacityUpdateFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
|
-
export const CloudWatchLogsLogDeliveryFilterSensitiveLog = (obj) => ({
|
|
252
|
-
...obj,
|
|
253
|
-
});
|
|
254
|
-
export const KafkaClusterFilterSensitiveLog = (obj) => ({
|
|
255
|
-
...obj,
|
|
256
|
-
});
|
|
257
|
-
export const KafkaClusterClientAuthenticationFilterSensitiveLog = (obj) => ({
|
|
258
|
-
...obj,
|
|
259
|
-
});
|
|
260
|
-
export const KafkaClusterEncryptionInTransitFilterSensitiveLog = (obj) => ({
|
|
261
|
-
...obj,
|
|
262
|
-
});
|
|
263
|
-
export const FirehoseLogDeliveryFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
});
|
|
266
|
-
export const S3LogDeliveryFilterSensitiveLog = (obj) => ({
|
|
267
|
-
...obj,
|
|
268
|
-
});
|
|
269
|
-
export const WorkerLogDeliveryFilterSensitiveLog = (obj) => ({
|
|
270
|
-
...obj,
|
|
271
|
-
});
|
|
272
|
-
export const LogDeliveryFilterSensitiveLog = (obj) => ({
|
|
273
|
-
...obj,
|
|
274
|
-
});
|
|
275
|
-
export const WorkerConfigurationFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
131
|
export const CreateConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
279
132
|
...obj,
|
|
280
133
|
...(obj.connectorConfiguration && { connectorConfiguration: SENSITIVE_STRING }),
|
|
281
134
|
});
|
|
282
|
-
export const CreateConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
});
|
|
285
|
-
export const S3LocationFilterSensitiveLog = (obj) => ({
|
|
286
|
-
...obj,
|
|
287
|
-
});
|
|
288
|
-
export const CustomPluginLocationFilterSensitiveLog = (obj) => ({
|
|
289
|
-
...obj,
|
|
290
|
-
});
|
|
291
|
-
export const CreateCustomPluginRequestFilterSensitiveLog = (obj) => ({
|
|
292
|
-
...obj,
|
|
293
|
-
});
|
|
294
|
-
export const CreateCustomPluginResponseFilterSensitiveLog = (obj) => ({
|
|
295
|
-
...obj,
|
|
296
|
-
});
|
|
297
135
|
export const CreateWorkerConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
298
136
|
...obj,
|
|
299
137
|
...(obj.propertiesFileContent && { propertiesFileContent: SENSITIVE_STRING }),
|
|
300
138
|
});
|
|
301
|
-
export const CreateWorkerConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
302
|
-
...obj,
|
|
303
|
-
});
|
|
304
|
-
export const DeleteConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
305
|
-
...obj,
|
|
306
|
-
});
|
|
307
|
-
export const DeleteConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
308
|
-
...obj,
|
|
309
|
-
});
|
|
310
|
-
export const DeleteCustomPluginRequestFilterSensitiveLog = (obj) => ({
|
|
311
|
-
...obj,
|
|
312
|
-
});
|
|
313
|
-
export const DeleteCustomPluginResponseFilterSensitiveLog = (obj) => ({
|
|
314
|
-
...obj,
|
|
315
|
-
});
|
|
316
|
-
export const DescribeConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
317
|
-
...obj,
|
|
318
|
-
});
|
|
319
|
-
export const StateDescriptionFilterSensitiveLog = (obj) => ({
|
|
320
|
-
...obj,
|
|
321
|
-
});
|
|
322
139
|
export const DescribeConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
323
140
|
...obj,
|
|
324
141
|
...(obj.connectorConfiguration && { connectorConfiguration: SENSITIVE_STRING }),
|
|
325
142
|
});
|
|
326
|
-
export const DescribeCustomPluginRequestFilterSensitiveLog = (obj) => ({
|
|
327
|
-
...obj,
|
|
328
|
-
});
|
|
329
|
-
export const DescribeCustomPluginResponseFilterSensitiveLog = (obj) => ({
|
|
330
|
-
...obj,
|
|
331
|
-
});
|
|
332
|
-
export const DescribeWorkerConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
143
|
export const WorkerConfigurationRevisionDescriptionFilterSensitiveLog = (obj) => ({
|
|
336
144
|
...obj,
|
|
337
145
|
...(obj.propertiesFileContent && { propertiesFileContent: SENSITIVE_STRING }),
|
|
@@ -342,27 +150,3 @@ export const DescribeWorkerConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
|
342
150
|
latestRevision: WorkerConfigurationRevisionDescriptionFilterSensitiveLog(obj.latestRevision),
|
|
343
151
|
}),
|
|
344
152
|
});
|
|
345
|
-
export const ListConnectorsRequestFilterSensitiveLog = (obj) => ({
|
|
346
|
-
...obj,
|
|
347
|
-
});
|
|
348
|
-
export const ListConnectorsResponseFilterSensitiveLog = (obj) => ({
|
|
349
|
-
...obj,
|
|
350
|
-
});
|
|
351
|
-
export const ListCustomPluginsRequestFilterSensitiveLog = (obj) => ({
|
|
352
|
-
...obj,
|
|
353
|
-
});
|
|
354
|
-
export const ListCustomPluginsResponseFilterSensitiveLog = (obj) => ({
|
|
355
|
-
...obj,
|
|
356
|
-
});
|
|
357
|
-
export const ListWorkerConfigurationsRequestFilterSensitiveLog = (obj) => ({
|
|
358
|
-
...obj,
|
|
359
|
-
});
|
|
360
|
-
export const ListWorkerConfigurationsResponseFilterSensitiveLog = (obj) => ({
|
|
361
|
-
...obj,
|
|
362
|
-
});
|
|
363
|
-
export const UpdateConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
364
|
-
...obj,
|
|
365
|
-
});
|
|
366
|
-
export const UpdateConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
367
|
-
...obj,
|
|
368
|
-
});
|
|
@@ -1510,274 +1510,18 @@ export interface UpdateConnectorResponse {
|
|
|
1510
1510
|
*/
|
|
1511
1511
|
connectorState?: ConnectorState | string;
|
|
1512
1512
|
}
|
|
1513
|
-
/**
|
|
1514
|
-
* @internal
|
|
1515
|
-
*/
|
|
1516
|
-
export declare const ScaleInPolicyDescriptionFilterSensitiveLog: (obj: ScaleInPolicyDescription) => any;
|
|
1517
|
-
/**
|
|
1518
|
-
* @internal
|
|
1519
|
-
*/
|
|
1520
|
-
export declare const ScaleOutPolicyDescriptionFilterSensitiveLog: (obj: ScaleOutPolicyDescription) => any;
|
|
1521
|
-
/**
|
|
1522
|
-
* @internal
|
|
1523
|
-
*/
|
|
1524
|
-
export declare const AutoScalingDescriptionFilterSensitiveLog: (obj: AutoScalingDescription) => any;
|
|
1525
|
-
/**
|
|
1526
|
-
* @internal
|
|
1527
|
-
*/
|
|
1528
|
-
export declare const ProvisionedCapacityDescriptionFilterSensitiveLog: (obj: ProvisionedCapacityDescription) => any;
|
|
1529
|
-
/**
|
|
1530
|
-
* @internal
|
|
1531
|
-
*/
|
|
1532
|
-
export declare const CapacityDescriptionFilterSensitiveLog: (obj: CapacityDescription) => any;
|
|
1533
|
-
/**
|
|
1534
|
-
* @internal
|
|
1535
|
-
*/
|
|
1536
|
-
export declare const VpcDescriptionFilterSensitiveLog: (obj: VpcDescription) => any;
|
|
1537
|
-
/**
|
|
1538
|
-
* @internal
|
|
1539
|
-
*/
|
|
1540
|
-
export declare const ApacheKafkaClusterDescriptionFilterSensitiveLog: (obj: ApacheKafkaClusterDescription) => any;
|
|
1541
|
-
/**
|
|
1542
|
-
* @internal
|
|
1543
|
-
*/
|
|
1544
|
-
export declare const KafkaClusterDescriptionFilterSensitiveLog: (obj: KafkaClusterDescription) => any;
|
|
1545
|
-
/**
|
|
1546
|
-
* @internal
|
|
1547
|
-
*/
|
|
1548
|
-
export declare const KafkaClusterClientAuthenticationDescriptionFilterSensitiveLog: (obj: KafkaClusterClientAuthenticationDescription) => any;
|
|
1549
|
-
/**
|
|
1550
|
-
* @internal
|
|
1551
|
-
*/
|
|
1552
|
-
export declare const KafkaClusterEncryptionInTransitDescriptionFilterSensitiveLog: (obj: KafkaClusterEncryptionInTransitDescription) => any;
|
|
1553
|
-
/**
|
|
1554
|
-
* @internal
|
|
1555
|
-
*/
|
|
1556
|
-
export declare const CloudWatchLogsLogDeliveryDescriptionFilterSensitiveLog: (obj: CloudWatchLogsLogDeliveryDescription) => any;
|
|
1557
|
-
/**
|
|
1558
|
-
* @internal
|
|
1559
|
-
*/
|
|
1560
|
-
export declare const FirehoseLogDeliveryDescriptionFilterSensitiveLog: (obj: FirehoseLogDeliveryDescription) => any;
|
|
1561
|
-
/**
|
|
1562
|
-
* @internal
|
|
1563
|
-
*/
|
|
1564
|
-
export declare const S3LogDeliveryDescriptionFilterSensitiveLog: (obj: S3LogDeliveryDescription) => any;
|
|
1565
|
-
/**
|
|
1566
|
-
* @internal
|
|
1567
|
-
*/
|
|
1568
|
-
export declare const WorkerLogDeliveryDescriptionFilterSensitiveLog: (obj: WorkerLogDeliveryDescription) => any;
|
|
1569
|
-
/**
|
|
1570
|
-
* @internal
|
|
1571
|
-
*/
|
|
1572
|
-
export declare const LogDeliveryDescriptionFilterSensitiveLog: (obj: LogDeliveryDescription) => any;
|
|
1573
|
-
/**
|
|
1574
|
-
* @internal
|
|
1575
|
-
*/
|
|
1576
|
-
export declare const CustomPluginDescriptionFilterSensitiveLog: (obj: CustomPluginDescription) => any;
|
|
1577
|
-
/**
|
|
1578
|
-
* @internal
|
|
1579
|
-
*/
|
|
1580
|
-
export declare const PluginDescriptionFilterSensitiveLog: (obj: PluginDescription) => any;
|
|
1581
|
-
/**
|
|
1582
|
-
* @internal
|
|
1583
|
-
*/
|
|
1584
|
-
export declare const WorkerConfigurationDescriptionFilterSensitiveLog: (obj: WorkerConfigurationDescription) => any;
|
|
1585
|
-
/**
|
|
1586
|
-
* @internal
|
|
1587
|
-
*/
|
|
1588
|
-
export declare const ConnectorSummaryFilterSensitiveLog: (obj: ConnectorSummary) => any;
|
|
1589
|
-
/**
|
|
1590
|
-
* @internal
|
|
1591
|
-
*/
|
|
1592
|
-
export declare const CustomPluginFileDescriptionFilterSensitiveLog: (obj: CustomPluginFileDescription) => any;
|
|
1593
|
-
/**
|
|
1594
|
-
* @internal
|
|
1595
|
-
*/
|
|
1596
|
-
export declare const S3LocationDescriptionFilterSensitiveLog: (obj: S3LocationDescription) => any;
|
|
1597
|
-
/**
|
|
1598
|
-
* @internal
|
|
1599
|
-
*/
|
|
1600
|
-
export declare const CustomPluginLocationDescriptionFilterSensitiveLog: (obj: CustomPluginLocationDescription) => any;
|
|
1601
|
-
/**
|
|
1602
|
-
* @internal
|
|
1603
|
-
*/
|
|
1604
|
-
export declare const CustomPluginRevisionSummaryFilterSensitiveLog: (obj: CustomPluginRevisionSummary) => any;
|
|
1605
|
-
/**
|
|
1606
|
-
* @internal
|
|
1607
|
-
*/
|
|
1608
|
-
export declare const CustomPluginSummaryFilterSensitiveLog: (obj: CustomPluginSummary) => any;
|
|
1609
|
-
/**
|
|
1610
|
-
* @internal
|
|
1611
|
-
*/
|
|
1612
|
-
export declare const CustomPluginFilterSensitiveLog: (obj: CustomPlugin) => any;
|
|
1613
|
-
/**
|
|
1614
|
-
* @internal
|
|
1615
|
-
*/
|
|
1616
|
-
export declare const PluginFilterSensitiveLog: (obj: Plugin) => any;
|
|
1617
|
-
/**
|
|
1618
|
-
* @internal
|
|
1619
|
-
*/
|
|
1620
|
-
export declare const WorkerConfigurationRevisionSummaryFilterSensitiveLog: (obj: WorkerConfigurationRevisionSummary) => any;
|
|
1621
|
-
/**
|
|
1622
|
-
* @internal
|
|
1623
|
-
*/
|
|
1624
|
-
export declare const WorkerConfigurationSummaryFilterSensitiveLog: (obj: WorkerConfigurationSummary) => any;
|
|
1625
|
-
/**
|
|
1626
|
-
* @internal
|
|
1627
|
-
*/
|
|
1628
|
-
export declare const VpcFilterSensitiveLog: (obj: Vpc) => any;
|
|
1629
|
-
/**
|
|
1630
|
-
* @internal
|
|
1631
|
-
*/
|
|
1632
|
-
export declare const ApacheKafkaClusterFilterSensitiveLog: (obj: ApacheKafkaCluster) => any;
|
|
1633
|
-
/**
|
|
1634
|
-
* @internal
|
|
1635
|
-
*/
|
|
1636
|
-
export declare const ScaleInPolicyFilterSensitiveLog: (obj: ScaleInPolicy) => any;
|
|
1637
|
-
/**
|
|
1638
|
-
* @internal
|
|
1639
|
-
*/
|
|
1640
|
-
export declare const ScaleOutPolicyFilterSensitiveLog: (obj: ScaleOutPolicy) => any;
|
|
1641
|
-
/**
|
|
1642
|
-
* @internal
|
|
1643
|
-
*/
|
|
1644
|
-
export declare const AutoScalingFilterSensitiveLog: (obj: AutoScaling) => any;
|
|
1645
|
-
/**
|
|
1646
|
-
* @internal
|
|
1647
|
-
*/
|
|
1648
|
-
export declare const ScaleInPolicyUpdateFilterSensitiveLog: (obj: ScaleInPolicyUpdate) => any;
|
|
1649
|
-
/**
|
|
1650
|
-
* @internal
|
|
1651
|
-
*/
|
|
1652
|
-
export declare const ScaleOutPolicyUpdateFilterSensitiveLog: (obj: ScaleOutPolicyUpdate) => any;
|
|
1653
|
-
/**
|
|
1654
|
-
* @internal
|
|
1655
|
-
*/
|
|
1656
|
-
export declare const AutoScalingUpdateFilterSensitiveLog: (obj: AutoScalingUpdate) => any;
|
|
1657
|
-
/**
|
|
1658
|
-
* @internal
|
|
1659
|
-
*/
|
|
1660
|
-
export declare const ProvisionedCapacityFilterSensitiveLog: (obj: ProvisionedCapacity) => any;
|
|
1661
|
-
/**
|
|
1662
|
-
* @internal
|
|
1663
|
-
*/
|
|
1664
|
-
export declare const CapacityFilterSensitiveLog: (obj: Capacity) => any;
|
|
1665
|
-
/**
|
|
1666
|
-
* @internal
|
|
1667
|
-
*/
|
|
1668
|
-
export declare const ProvisionedCapacityUpdateFilterSensitiveLog: (obj: ProvisionedCapacityUpdate) => any;
|
|
1669
|
-
/**
|
|
1670
|
-
* @internal
|
|
1671
|
-
*/
|
|
1672
|
-
export declare const CapacityUpdateFilterSensitiveLog: (obj: CapacityUpdate) => any;
|
|
1673
|
-
/**
|
|
1674
|
-
* @internal
|
|
1675
|
-
*/
|
|
1676
|
-
export declare const CloudWatchLogsLogDeliveryFilterSensitiveLog: (obj: CloudWatchLogsLogDelivery) => any;
|
|
1677
|
-
/**
|
|
1678
|
-
* @internal
|
|
1679
|
-
*/
|
|
1680
|
-
export declare const KafkaClusterFilterSensitiveLog: (obj: KafkaCluster) => any;
|
|
1681
|
-
/**
|
|
1682
|
-
* @internal
|
|
1683
|
-
*/
|
|
1684
|
-
export declare const KafkaClusterClientAuthenticationFilterSensitiveLog: (obj: KafkaClusterClientAuthentication) => any;
|
|
1685
|
-
/**
|
|
1686
|
-
* @internal
|
|
1687
|
-
*/
|
|
1688
|
-
export declare const KafkaClusterEncryptionInTransitFilterSensitiveLog: (obj: KafkaClusterEncryptionInTransit) => any;
|
|
1689
|
-
/**
|
|
1690
|
-
* @internal
|
|
1691
|
-
*/
|
|
1692
|
-
export declare const FirehoseLogDeliveryFilterSensitiveLog: (obj: FirehoseLogDelivery) => any;
|
|
1693
|
-
/**
|
|
1694
|
-
* @internal
|
|
1695
|
-
*/
|
|
1696
|
-
export declare const S3LogDeliveryFilterSensitiveLog: (obj: S3LogDelivery) => any;
|
|
1697
|
-
/**
|
|
1698
|
-
* @internal
|
|
1699
|
-
*/
|
|
1700
|
-
export declare const WorkerLogDeliveryFilterSensitiveLog: (obj: WorkerLogDelivery) => any;
|
|
1701
|
-
/**
|
|
1702
|
-
* @internal
|
|
1703
|
-
*/
|
|
1704
|
-
export declare const LogDeliveryFilterSensitiveLog: (obj: LogDelivery) => any;
|
|
1705
|
-
/**
|
|
1706
|
-
* @internal
|
|
1707
|
-
*/
|
|
1708
|
-
export declare const WorkerConfigurationFilterSensitiveLog: (obj: WorkerConfiguration) => any;
|
|
1709
1513
|
/**
|
|
1710
1514
|
* @internal
|
|
1711
1515
|
*/
|
|
1712
1516
|
export declare const CreateConnectorRequestFilterSensitiveLog: (obj: CreateConnectorRequest) => any;
|
|
1713
|
-
/**
|
|
1714
|
-
* @internal
|
|
1715
|
-
*/
|
|
1716
|
-
export declare const CreateConnectorResponseFilterSensitiveLog: (obj: CreateConnectorResponse) => any;
|
|
1717
|
-
/**
|
|
1718
|
-
* @internal
|
|
1719
|
-
*/
|
|
1720
|
-
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
1721
|
-
/**
|
|
1722
|
-
* @internal
|
|
1723
|
-
*/
|
|
1724
|
-
export declare const CustomPluginLocationFilterSensitiveLog: (obj: CustomPluginLocation) => any;
|
|
1725
|
-
/**
|
|
1726
|
-
* @internal
|
|
1727
|
-
*/
|
|
1728
|
-
export declare const CreateCustomPluginRequestFilterSensitiveLog: (obj: CreateCustomPluginRequest) => any;
|
|
1729
|
-
/**
|
|
1730
|
-
* @internal
|
|
1731
|
-
*/
|
|
1732
|
-
export declare const CreateCustomPluginResponseFilterSensitiveLog: (obj: CreateCustomPluginResponse) => any;
|
|
1733
1517
|
/**
|
|
1734
1518
|
* @internal
|
|
1735
1519
|
*/
|
|
1736
1520
|
export declare const CreateWorkerConfigurationRequestFilterSensitiveLog: (obj: CreateWorkerConfigurationRequest) => any;
|
|
1737
|
-
/**
|
|
1738
|
-
* @internal
|
|
1739
|
-
*/
|
|
1740
|
-
export declare const CreateWorkerConfigurationResponseFilterSensitiveLog: (obj: CreateWorkerConfigurationResponse) => any;
|
|
1741
|
-
/**
|
|
1742
|
-
* @internal
|
|
1743
|
-
*/
|
|
1744
|
-
export declare const DeleteConnectorRequestFilterSensitiveLog: (obj: DeleteConnectorRequest) => any;
|
|
1745
|
-
/**
|
|
1746
|
-
* @internal
|
|
1747
|
-
*/
|
|
1748
|
-
export declare const DeleteConnectorResponseFilterSensitiveLog: (obj: DeleteConnectorResponse) => any;
|
|
1749
|
-
/**
|
|
1750
|
-
* @internal
|
|
1751
|
-
*/
|
|
1752
|
-
export declare const DeleteCustomPluginRequestFilterSensitiveLog: (obj: DeleteCustomPluginRequest) => any;
|
|
1753
|
-
/**
|
|
1754
|
-
* @internal
|
|
1755
|
-
*/
|
|
1756
|
-
export declare const DeleteCustomPluginResponseFilterSensitiveLog: (obj: DeleteCustomPluginResponse) => any;
|
|
1757
|
-
/**
|
|
1758
|
-
* @internal
|
|
1759
|
-
*/
|
|
1760
|
-
export declare const DescribeConnectorRequestFilterSensitiveLog: (obj: DescribeConnectorRequest) => any;
|
|
1761
|
-
/**
|
|
1762
|
-
* @internal
|
|
1763
|
-
*/
|
|
1764
|
-
export declare const StateDescriptionFilterSensitiveLog: (obj: StateDescription) => any;
|
|
1765
1521
|
/**
|
|
1766
1522
|
* @internal
|
|
1767
1523
|
*/
|
|
1768
1524
|
export declare const DescribeConnectorResponseFilterSensitiveLog: (obj: DescribeConnectorResponse) => any;
|
|
1769
|
-
/**
|
|
1770
|
-
* @internal
|
|
1771
|
-
*/
|
|
1772
|
-
export declare const DescribeCustomPluginRequestFilterSensitiveLog: (obj: DescribeCustomPluginRequest) => any;
|
|
1773
|
-
/**
|
|
1774
|
-
* @internal
|
|
1775
|
-
*/
|
|
1776
|
-
export declare const DescribeCustomPluginResponseFilterSensitiveLog: (obj: DescribeCustomPluginResponse) => any;
|
|
1777
|
-
/**
|
|
1778
|
-
* @internal
|
|
1779
|
-
*/
|
|
1780
|
-
export declare const DescribeWorkerConfigurationRequestFilterSensitiveLog: (obj: DescribeWorkerConfigurationRequest) => any;
|
|
1781
1525
|
/**
|
|
1782
1526
|
* @internal
|
|
1783
1527
|
*/
|
|
@@ -1786,35 +1530,3 @@ export declare const WorkerConfigurationRevisionDescriptionFilterSensitiveLog: (
|
|
|
1786
1530
|
* @internal
|
|
1787
1531
|
*/
|
|
1788
1532
|
export declare const DescribeWorkerConfigurationResponseFilterSensitiveLog: (obj: DescribeWorkerConfigurationResponse) => any;
|
|
1789
|
-
/**
|
|
1790
|
-
* @internal
|
|
1791
|
-
*/
|
|
1792
|
-
export declare const ListConnectorsRequestFilterSensitiveLog: (obj: ListConnectorsRequest) => any;
|
|
1793
|
-
/**
|
|
1794
|
-
* @internal
|
|
1795
|
-
*/
|
|
1796
|
-
export declare const ListConnectorsResponseFilterSensitiveLog: (obj: ListConnectorsResponse) => any;
|
|
1797
|
-
/**
|
|
1798
|
-
* @internal
|
|
1799
|
-
*/
|
|
1800
|
-
export declare const ListCustomPluginsRequestFilterSensitiveLog: (obj: ListCustomPluginsRequest) => any;
|
|
1801
|
-
/**
|
|
1802
|
-
* @internal
|
|
1803
|
-
*/
|
|
1804
|
-
export declare const ListCustomPluginsResponseFilterSensitiveLog: (obj: ListCustomPluginsResponse) => any;
|
|
1805
|
-
/**
|
|
1806
|
-
* @internal
|
|
1807
|
-
*/
|
|
1808
|
-
export declare const ListWorkerConfigurationsRequestFilterSensitiveLog: (obj: ListWorkerConfigurationsRequest) => any;
|
|
1809
|
-
/**
|
|
1810
|
-
* @internal
|
|
1811
|
-
*/
|
|
1812
|
-
export declare const ListWorkerConfigurationsResponseFilterSensitiveLog: (obj: ListWorkerConfigurationsResponse) => any;
|
|
1813
|
-
/**
|
|
1814
|
-
* @internal
|
|
1815
|
-
*/
|
|
1816
|
-
export declare const UpdateConnectorRequestFilterSensitiveLog: (obj: UpdateConnectorRequest) => any;
|
|
1817
|
-
/**
|
|
1818
|
-
* @internal
|
|
1819
|
-
*/
|
|
1820
|
-
export declare const UpdateConnectorResponseFilterSensitiveLog: (obj: UpdateConnectorResponse) => any;
|