@aws-sdk/client-kafkaconnect 3.131.0 → 3.137.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 +11 -0
- package/dist-cjs/commands/CreateConnectorCommand.js +2 -2
- package/dist-cjs/commands/CreateCustomPluginCommand.js +2 -2
- package/dist-cjs/commands/CreateWorkerConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DeleteConnectorCommand.js +2 -2
- package/dist-cjs/commands/DeleteCustomPluginCommand.js +2 -2
- package/dist-cjs/commands/DescribeConnectorCommand.js +2 -2
- package/dist-cjs/commands/DescribeCustomPluginCommand.js +2 -2
- package/dist-cjs/commands/DescribeWorkerConfigurationCommand.js +2 -2
- package/dist-cjs/commands/ListConnectorsCommand.js +2 -2
- package/dist-cjs/commands/ListCustomPluginsCommand.js +2 -2
- package/dist-cjs/commands/ListWorkerConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/UpdateConnectorCommand.js +2 -2
- package/dist-cjs/models/models_0.js +317 -471
- package/dist-es/commands/CreateConnectorCommand.js +3 -3
- package/dist-es/commands/CreateCustomPluginCommand.js +3 -3
- package/dist-es/commands/CreateWorkerConfigurationCommand.js +3 -3
- package/dist-es/commands/DeleteConnectorCommand.js +3 -3
- package/dist-es/commands/DeleteCustomPluginCommand.js +3 -3
- package/dist-es/commands/DescribeConnectorCommand.js +3 -3
- package/dist-es/commands/DescribeCustomPluginCommand.js +3 -3
- package/dist-es/commands/DescribeWorkerConfigurationCommand.js +3 -3
- package/dist-es/commands/ListConnectorsCommand.js +3 -3
- package/dist-es/commands/ListCustomPluginsCommand.js +3 -3
- package/dist-es/commands/ListWorkerConfigurationsCommand.js +3 -3
- package/dist-es/commands/UpdateConnectorCommand.js +3 -3
- package/dist-es/models/models_0.js +79 -310
- package/dist-types/models/models_0.d.ts +308 -462
- package/dist-types/ts3.4/models/models_0.d.ts +154 -308
- package/package.json +6 -6
|
@@ -5,19 +5,11 @@ export interface ScaleInPolicyDescription {
|
|
|
5
5
|
|
|
6
6
|
cpuUtilizationPercentage?: number;
|
|
7
7
|
}
|
|
8
|
-
export declare namespace ScaleInPolicyDescription {
|
|
9
|
-
|
|
10
|
-
const filterSensitiveLog: (obj: ScaleInPolicyDescription) => any;
|
|
11
|
-
}
|
|
12
8
|
|
|
13
9
|
export interface ScaleOutPolicyDescription {
|
|
14
10
|
|
|
15
11
|
cpuUtilizationPercentage?: number;
|
|
16
12
|
}
|
|
17
|
-
export declare namespace ScaleOutPolicyDescription {
|
|
18
|
-
|
|
19
|
-
const filterSensitiveLog: (obj: ScaleOutPolicyDescription) => any;
|
|
20
|
-
}
|
|
21
13
|
|
|
22
14
|
export interface AutoScalingDescription {
|
|
23
15
|
|
|
@@ -31,10 +23,6 @@ export interface AutoScalingDescription {
|
|
|
31
23
|
|
|
32
24
|
scaleOutPolicy?: ScaleOutPolicyDescription;
|
|
33
25
|
}
|
|
34
|
-
export declare namespace AutoScalingDescription {
|
|
35
|
-
|
|
36
|
-
const filterSensitiveLog: (obj: AutoScalingDescription) => any;
|
|
37
|
-
}
|
|
38
26
|
|
|
39
27
|
export interface ProvisionedCapacityDescription {
|
|
40
28
|
|
|
@@ -42,10 +30,6 @@ export interface ProvisionedCapacityDescription {
|
|
|
42
30
|
|
|
43
31
|
workerCount?: number;
|
|
44
32
|
}
|
|
45
|
-
export declare namespace ProvisionedCapacityDescription {
|
|
46
|
-
|
|
47
|
-
const filterSensitiveLog: (obj: ProvisionedCapacityDescription) => any;
|
|
48
|
-
}
|
|
49
33
|
|
|
50
34
|
export interface CapacityDescription {
|
|
51
35
|
|
|
@@ -53,10 +37,6 @@ export interface CapacityDescription {
|
|
|
53
37
|
|
|
54
38
|
provisionedCapacity?: ProvisionedCapacityDescription;
|
|
55
39
|
}
|
|
56
|
-
export declare namespace CapacityDescription {
|
|
57
|
-
|
|
58
|
-
const filterSensitiveLog: (obj: CapacityDescription) => any;
|
|
59
|
-
}
|
|
60
40
|
export declare enum ConnectorState {
|
|
61
41
|
CREATING = "CREATING",
|
|
62
42
|
DELETING = "DELETING",
|
|
@@ -71,10 +51,6 @@ export interface VpcDescription {
|
|
|
71
51
|
|
|
72
52
|
subnets?: string[];
|
|
73
53
|
}
|
|
74
|
-
export declare namespace VpcDescription {
|
|
75
|
-
|
|
76
|
-
const filterSensitiveLog: (obj: VpcDescription) => any;
|
|
77
|
-
}
|
|
78
54
|
|
|
79
55
|
export interface ApacheKafkaClusterDescription {
|
|
80
56
|
|
|
@@ -82,19 +58,11 @@ export interface ApacheKafkaClusterDescription {
|
|
|
82
58
|
|
|
83
59
|
vpc?: VpcDescription;
|
|
84
60
|
}
|
|
85
|
-
export declare namespace ApacheKafkaClusterDescription {
|
|
86
|
-
|
|
87
|
-
const filterSensitiveLog: (obj: ApacheKafkaClusterDescription) => any;
|
|
88
|
-
}
|
|
89
61
|
|
|
90
62
|
export interface KafkaClusterDescription {
|
|
91
63
|
|
|
92
64
|
apacheKafkaCluster?: ApacheKafkaClusterDescription;
|
|
93
65
|
}
|
|
94
|
-
export declare namespace KafkaClusterDescription {
|
|
95
|
-
|
|
96
|
-
const filterSensitiveLog: (obj: KafkaClusterDescription) => any;
|
|
97
|
-
}
|
|
98
66
|
export declare enum KafkaClusterClientAuthenticationType {
|
|
99
67
|
IAM = "IAM",
|
|
100
68
|
NONE = "NONE"
|
|
@@ -104,10 +72,6 @@ export interface KafkaClusterClientAuthenticationDescription {
|
|
|
104
72
|
|
|
105
73
|
authenticationType?: KafkaClusterClientAuthenticationType | string;
|
|
106
74
|
}
|
|
107
|
-
export declare namespace KafkaClusterClientAuthenticationDescription {
|
|
108
|
-
|
|
109
|
-
const filterSensitiveLog: (obj: KafkaClusterClientAuthenticationDescription) => any;
|
|
110
|
-
}
|
|
111
75
|
export declare enum KafkaClusterEncryptionInTransitType {
|
|
112
76
|
PLAINTEXT = "PLAINTEXT",
|
|
113
77
|
TLS = "TLS"
|
|
@@ -117,10 +81,6 @@ export interface KafkaClusterEncryptionInTransitDescription {
|
|
|
117
81
|
|
|
118
82
|
encryptionType?: KafkaClusterEncryptionInTransitType | string;
|
|
119
83
|
}
|
|
120
|
-
export declare namespace KafkaClusterEncryptionInTransitDescription {
|
|
121
|
-
|
|
122
|
-
const filterSensitiveLog: (obj: KafkaClusterEncryptionInTransitDescription) => any;
|
|
123
|
-
}
|
|
124
84
|
|
|
125
85
|
export interface CloudWatchLogsLogDeliveryDescription {
|
|
126
86
|
|
|
@@ -128,10 +88,6 @@ export interface CloudWatchLogsLogDeliveryDescription {
|
|
|
128
88
|
|
|
129
89
|
logGroup?: string;
|
|
130
90
|
}
|
|
131
|
-
export declare namespace CloudWatchLogsLogDeliveryDescription {
|
|
132
|
-
|
|
133
|
-
const filterSensitiveLog: (obj: CloudWatchLogsLogDeliveryDescription) => any;
|
|
134
|
-
}
|
|
135
91
|
|
|
136
92
|
export interface FirehoseLogDeliveryDescription {
|
|
137
93
|
|
|
@@ -139,10 +95,6 @@ export interface FirehoseLogDeliveryDescription {
|
|
|
139
95
|
|
|
140
96
|
enabled?: boolean;
|
|
141
97
|
}
|
|
142
|
-
export declare namespace FirehoseLogDeliveryDescription {
|
|
143
|
-
|
|
144
|
-
const filterSensitiveLog: (obj: FirehoseLogDeliveryDescription) => any;
|
|
145
|
-
}
|
|
146
98
|
|
|
147
99
|
export interface S3LogDeliveryDescription {
|
|
148
100
|
|
|
@@ -152,10 +104,6 @@ export interface S3LogDeliveryDescription {
|
|
|
152
104
|
|
|
153
105
|
prefix?: string;
|
|
154
106
|
}
|
|
155
|
-
export declare namespace S3LogDeliveryDescription {
|
|
156
|
-
|
|
157
|
-
const filterSensitiveLog: (obj: S3LogDeliveryDescription) => any;
|
|
158
|
-
}
|
|
159
107
|
|
|
160
108
|
export interface WorkerLogDeliveryDescription {
|
|
161
109
|
|
|
@@ -165,19 +113,11 @@ export interface WorkerLogDeliveryDescription {
|
|
|
165
113
|
|
|
166
114
|
s3?: S3LogDeliveryDescription;
|
|
167
115
|
}
|
|
168
|
-
export declare namespace WorkerLogDeliveryDescription {
|
|
169
|
-
|
|
170
|
-
const filterSensitiveLog: (obj: WorkerLogDeliveryDescription) => any;
|
|
171
|
-
}
|
|
172
116
|
|
|
173
117
|
export interface LogDeliveryDescription {
|
|
174
118
|
|
|
175
119
|
workerLogDelivery?: WorkerLogDeliveryDescription;
|
|
176
120
|
}
|
|
177
|
-
export declare namespace LogDeliveryDescription {
|
|
178
|
-
|
|
179
|
-
const filterSensitiveLog: (obj: LogDeliveryDescription) => any;
|
|
180
|
-
}
|
|
181
121
|
|
|
182
122
|
export interface CustomPluginDescription {
|
|
183
123
|
|
|
@@ -185,19 +125,11 @@ export interface CustomPluginDescription {
|
|
|
185
125
|
|
|
186
126
|
revision?: number;
|
|
187
127
|
}
|
|
188
|
-
export declare namespace CustomPluginDescription {
|
|
189
|
-
|
|
190
|
-
const filterSensitiveLog: (obj: CustomPluginDescription) => any;
|
|
191
|
-
}
|
|
192
128
|
|
|
193
129
|
export interface PluginDescription {
|
|
194
130
|
|
|
195
131
|
customPlugin?: CustomPluginDescription;
|
|
196
132
|
}
|
|
197
|
-
export declare namespace PluginDescription {
|
|
198
|
-
|
|
199
|
-
const filterSensitiveLog: (obj: PluginDescription) => any;
|
|
200
|
-
}
|
|
201
133
|
|
|
202
134
|
export interface WorkerConfigurationDescription {
|
|
203
135
|
|
|
@@ -205,10 +137,6 @@ export interface WorkerConfigurationDescription {
|
|
|
205
137
|
|
|
206
138
|
workerConfigurationArn?: string;
|
|
207
139
|
}
|
|
208
|
-
export declare namespace WorkerConfigurationDescription {
|
|
209
|
-
|
|
210
|
-
const filterSensitiveLog: (obj: WorkerConfigurationDescription) => any;
|
|
211
|
-
}
|
|
212
140
|
|
|
213
141
|
export interface ConnectorSummary {
|
|
214
142
|
|
|
@@ -242,10 +170,6 @@ export interface ConnectorSummary {
|
|
|
242
170
|
|
|
243
171
|
workerConfiguration?: WorkerConfigurationDescription;
|
|
244
172
|
}
|
|
245
|
-
export declare namespace ConnectorSummary {
|
|
246
|
-
|
|
247
|
-
const filterSensitiveLog: (obj: ConnectorSummary) => any;
|
|
248
|
-
}
|
|
249
173
|
export declare enum CustomPluginState {
|
|
250
174
|
ACTIVE = "ACTIVE",
|
|
251
175
|
CREATE_FAILED = "CREATE_FAILED",
|
|
@@ -265,10 +189,6 @@ export interface CustomPluginFileDescription {
|
|
|
265
189
|
|
|
266
190
|
fileSize?: number;
|
|
267
191
|
}
|
|
268
|
-
export declare namespace CustomPluginFileDescription {
|
|
269
|
-
|
|
270
|
-
const filterSensitiveLog: (obj: CustomPluginFileDescription) => any;
|
|
271
|
-
}
|
|
272
192
|
|
|
273
193
|
export interface S3LocationDescription {
|
|
274
194
|
|
|
@@ -278,19 +198,11 @@ export interface S3LocationDescription {
|
|
|
278
198
|
|
|
279
199
|
objectVersion?: string;
|
|
280
200
|
}
|
|
281
|
-
export declare namespace S3LocationDescription {
|
|
282
|
-
|
|
283
|
-
const filterSensitiveLog: (obj: S3LocationDescription) => any;
|
|
284
|
-
}
|
|
285
201
|
|
|
286
202
|
export interface CustomPluginLocationDescription {
|
|
287
203
|
|
|
288
204
|
s3Location?: S3LocationDescription;
|
|
289
205
|
}
|
|
290
|
-
export declare namespace CustomPluginLocationDescription {
|
|
291
|
-
|
|
292
|
-
const filterSensitiveLog: (obj: CustomPluginLocationDescription) => any;
|
|
293
|
-
}
|
|
294
206
|
|
|
295
207
|
export interface CustomPluginRevisionSummary {
|
|
296
208
|
|
|
@@ -306,10 +218,6 @@ export interface CustomPluginRevisionSummary {
|
|
|
306
218
|
|
|
307
219
|
revision?: number;
|
|
308
220
|
}
|
|
309
|
-
export declare namespace CustomPluginRevisionSummary {
|
|
310
|
-
|
|
311
|
-
const filterSensitiveLog: (obj: CustomPluginRevisionSummary) => any;
|
|
312
|
-
}
|
|
313
221
|
|
|
314
222
|
export interface CustomPluginSummary {
|
|
315
223
|
|
|
@@ -325,10 +233,6 @@ export interface CustomPluginSummary {
|
|
|
325
233
|
|
|
326
234
|
name?: string;
|
|
327
235
|
}
|
|
328
|
-
export declare namespace CustomPluginSummary {
|
|
329
|
-
|
|
330
|
-
const filterSensitiveLog: (obj: CustomPluginSummary) => any;
|
|
331
|
-
}
|
|
332
236
|
|
|
333
237
|
export interface CustomPlugin {
|
|
334
238
|
|
|
@@ -336,19 +240,11 @@ export interface CustomPlugin {
|
|
|
336
240
|
|
|
337
241
|
revision: number | undefined;
|
|
338
242
|
}
|
|
339
|
-
export declare namespace CustomPlugin {
|
|
340
|
-
|
|
341
|
-
const filterSensitiveLog: (obj: CustomPlugin) => any;
|
|
342
|
-
}
|
|
343
243
|
|
|
344
244
|
export interface Plugin {
|
|
345
245
|
|
|
346
246
|
customPlugin: CustomPlugin | undefined;
|
|
347
247
|
}
|
|
348
|
-
export declare namespace Plugin {
|
|
349
|
-
|
|
350
|
-
const filterSensitiveLog: (obj: Plugin) => any;
|
|
351
|
-
}
|
|
352
248
|
|
|
353
249
|
export interface WorkerConfigurationRevisionSummary {
|
|
354
250
|
|
|
@@ -358,10 +254,6 @@ export interface WorkerConfigurationRevisionSummary {
|
|
|
358
254
|
|
|
359
255
|
revision?: number;
|
|
360
256
|
}
|
|
361
|
-
export declare namespace WorkerConfigurationRevisionSummary {
|
|
362
|
-
|
|
363
|
-
const filterSensitiveLog: (obj: WorkerConfigurationRevisionSummary) => any;
|
|
364
|
-
}
|
|
365
257
|
|
|
366
258
|
export interface WorkerConfigurationSummary {
|
|
367
259
|
|
|
@@ -375,10 +267,6 @@ export interface WorkerConfigurationSummary {
|
|
|
375
267
|
|
|
376
268
|
workerConfigurationArn?: string;
|
|
377
269
|
}
|
|
378
|
-
export declare namespace WorkerConfigurationSummary {
|
|
379
|
-
|
|
380
|
-
const filterSensitiveLog: (obj: WorkerConfigurationSummary) => any;
|
|
381
|
-
}
|
|
382
270
|
|
|
383
271
|
export interface Vpc {
|
|
384
272
|
|
|
@@ -386,10 +274,6 @@ export interface Vpc {
|
|
|
386
274
|
|
|
387
275
|
subnets: string[] | undefined;
|
|
388
276
|
}
|
|
389
|
-
export declare namespace Vpc {
|
|
390
|
-
|
|
391
|
-
const filterSensitiveLog: (obj: Vpc) => any;
|
|
392
|
-
}
|
|
393
277
|
|
|
394
278
|
export interface ApacheKafkaCluster {
|
|
395
279
|
|
|
@@ -397,28 +281,16 @@ export interface ApacheKafkaCluster {
|
|
|
397
281
|
|
|
398
282
|
vpc: Vpc | undefined;
|
|
399
283
|
}
|
|
400
|
-
export declare namespace ApacheKafkaCluster {
|
|
401
|
-
|
|
402
|
-
const filterSensitiveLog: (obj: ApacheKafkaCluster) => any;
|
|
403
|
-
}
|
|
404
284
|
|
|
405
285
|
export interface ScaleInPolicy {
|
|
406
286
|
|
|
407
287
|
cpuUtilizationPercentage: number | undefined;
|
|
408
288
|
}
|
|
409
|
-
export declare namespace ScaleInPolicy {
|
|
410
|
-
|
|
411
|
-
const filterSensitiveLog: (obj: ScaleInPolicy) => any;
|
|
412
|
-
}
|
|
413
289
|
|
|
414
290
|
export interface ScaleOutPolicy {
|
|
415
291
|
|
|
416
292
|
cpuUtilizationPercentage: number | undefined;
|
|
417
293
|
}
|
|
418
|
-
export declare namespace ScaleOutPolicy {
|
|
419
|
-
|
|
420
|
-
const filterSensitiveLog: (obj: ScaleOutPolicy) => any;
|
|
421
|
-
}
|
|
422
294
|
|
|
423
295
|
export interface AutoScaling {
|
|
424
296
|
|
|
@@ -432,28 +304,16 @@ export interface AutoScaling {
|
|
|
432
304
|
|
|
433
305
|
scaleOutPolicy?: ScaleOutPolicy;
|
|
434
306
|
}
|
|
435
|
-
export declare namespace AutoScaling {
|
|
436
|
-
|
|
437
|
-
const filterSensitiveLog: (obj: AutoScaling) => any;
|
|
438
|
-
}
|
|
439
307
|
|
|
440
308
|
export interface ScaleInPolicyUpdate {
|
|
441
309
|
|
|
442
310
|
cpuUtilizationPercentage: number | undefined;
|
|
443
311
|
}
|
|
444
|
-
export declare namespace ScaleInPolicyUpdate {
|
|
445
|
-
|
|
446
|
-
const filterSensitiveLog: (obj: ScaleInPolicyUpdate) => any;
|
|
447
|
-
}
|
|
448
312
|
|
|
449
313
|
export interface ScaleOutPolicyUpdate {
|
|
450
314
|
|
|
451
315
|
cpuUtilizationPercentage: number | undefined;
|
|
452
316
|
}
|
|
453
|
-
export declare namespace ScaleOutPolicyUpdate {
|
|
454
|
-
|
|
455
|
-
const filterSensitiveLog: (obj: ScaleOutPolicyUpdate) => any;
|
|
456
|
-
}
|
|
457
317
|
|
|
458
318
|
export interface AutoScalingUpdate {
|
|
459
319
|
|
|
@@ -467,10 +327,6 @@ export interface AutoScalingUpdate {
|
|
|
467
327
|
|
|
468
328
|
scaleOutPolicy: ScaleOutPolicyUpdate | undefined;
|
|
469
329
|
}
|
|
470
|
-
export declare namespace AutoScalingUpdate {
|
|
471
|
-
|
|
472
|
-
const filterSensitiveLog: (obj: AutoScalingUpdate) => any;
|
|
473
|
-
}
|
|
474
330
|
|
|
475
331
|
export declare class BadRequestException extends __BaseException {
|
|
476
332
|
readonly name: "BadRequestException";
|
|
@@ -485,10 +341,6 @@ export interface ProvisionedCapacity {
|
|
|
485
341
|
|
|
486
342
|
workerCount: number | undefined;
|
|
487
343
|
}
|
|
488
|
-
export declare namespace ProvisionedCapacity {
|
|
489
|
-
|
|
490
|
-
const filterSensitiveLog: (obj: ProvisionedCapacity) => any;
|
|
491
|
-
}
|
|
492
344
|
|
|
493
345
|
export interface Capacity {
|
|
494
346
|
|
|
@@ -496,10 +348,6 @@ export interface Capacity {
|
|
|
496
348
|
|
|
497
349
|
provisionedCapacity?: ProvisionedCapacity;
|
|
498
350
|
}
|
|
499
|
-
export declare namespace Capacity {
|
|
500
|
-
|
|
501
|
-
const filterSensitiveLog: (obj: Capacity) => any;
|
|
502
|
-
}
|
|
503
351
|
|
|
504
352
|
export interface ProvisionedCapacityUpdate {
|
|
505
353
|
|
|
@@ -507,10 +355,6 @@ export interface ProvisionedCapacityUpdate {
|
|
|
507
355
|
|
|
508
356
|
workerCount: number | undefined;
|
|
509
357
|
}
|
|
510
|
-
export declare namespace ProvisionedCapacityUpdate {
|
|
511
|
-
|
|
512
|
-
const filterSensitiveLog: (obj: ProvisionedCapacityUpdate) => any;
|
|
513
|
-
}
|
|
514
358
|
|
|
515
359
|
export interface CapacityUpdate {
|
|
516
360
|
|
|
@@ -518,10 +362,6 @@ export interface CapacityUpdate {
|
|
|
518
362
|
|
|
519
363
|
provisionedCapacity?: ProvisionedCapacityUpdate;
|
|
520
364
|
}
|
|
521
|
-
export declare namespace CapacityUpdate {
|
|
522
|
-
|
|
523
|
-
const filterSensitiveLog: (obj: CapacityUpdate) => any;
|
|
524
|
-
}
|
|
525
365
|
|
|
526
366
|
export interface CloudWatchLogsLogDelivery {
|
|
527
367
|
|
|
@@ -529,10 +369,6 @@ export interface CloudWatchLogsLogDelivery {
|
|
|
529
369
|
|
|
530
370
|
logGroup?: string;
|
|
531
371
|
}
|
|
532
|
-
export declare namespace CloudWatchLogsLogDelivery {
|
|
533
|
-
|
|
534
|
-
const filterSensitiveLog: (obj: CloudWatchLogsLogDelivery) => any;
|
|
535
|
-
}
|
|
536
372
|
|
|
537
373
|
export declare class ConflictException extends __BaseException {
|
|
538
374
|
readonly name: "ConflictException";
|
|
@@ -545,28 +381,16 @@ export interface KafkaCluster {
|
|
|
545
381
|
|
|
546
382
|
apacheKafkaCluster: ApacheKafkaCluster | undefined;
|
|
547
383
|
}
|
|
548
|
-
export declare namespace KafkaCluster {
|
|
549
|
-
|
|
550
|
-
const filterSensitiveLog: (obj: KafkaCluster) => any;
|
|
551
|
-
}
|
|
552
384
|
|
|
553
385
|
export interface KafkaClusterClientAuthentication {
|
|
554
386
|
|
|
555
387
|
authenticationType: KafkaClusterClientAuthenticationType | string | undefined;
|
|
556
388
|
}
|
|
557
|
-
export declare namespace KafkaClusterClientAuthentication {
|
|
558
|
-
|
|
559
|
-
const filterSensitiveLog: (obj: KafkaClusterClientAuthentication) => any;
|
|
560
|
-
}
|
|
561
389
|
|
|
562
390
|
export interface KafkaClusterEncryptionInTransit {
|
|
563
391
|
|
|
564
392
|
encryptionType: KafkaClusterEncryptionInTransitType | string | undefined;
|
|
565
393
|
}
|
|
566
|
-
export declare namespace KafkaClusterEncryptionInTransit {
|
|
567
|
-
|
|
568
|
-
const filterSensitiveLog: (obj: KafkaClusterEncryptionInTransit) => any;
|
|
569
|
-
}
|
|
570
394
|
|
|
571
395
|
export interface FirehoseLogDelivery {
|
|
572
396
|
|
|
@@ -574,10 +398,6 @@ export interface FirehoseLogDelivery {
|
|
|
574
398
|
|
|
575
399
|
enabled: boolean | undefined;
|
|
576
400
|
}
|
|
577
|
-
export declare namespace FirehoseLogDelivery {
|
|
578
|
-
|
|
579
|
-
const filterSensitiveLog: (obj: FirehoseLogDelivery) => any;
|
|
580
|
-
}
|
|
581
401
|
|
|
582
402
|
export interface S3LogDelivery {
|
|
583
403
|
|
|
@@ -587,10 +407,6 @@ export interface S3LogDelivery {
|
|
|
587
407
|
|
|
588
408
|
prefix?: string;
|
|
589
409
|
}
|
|
590
|
-
export declare namespace S3LogDelivery {
|
|
591
|
-
|
|
592
|
-
const filterSensitiveLog: (obj: S3LogDelivery) => any;
|
|
593
|
-
}
|
|
594
410
|
|
|
595
411
|
export interface WorkerLogDelivery {
|
|
596
412
|
|
|
@@ -600,19 +416,11 @@ export interface WorkerLogDelivery {
|
|
|
600
416
|
|
|
601
417
|
s3?: S3LogDelivery;
|
|
602
418
|
}
|
|
603
|
-
export declare namespace WorkerLogDelivery {
|
|
604
|
-
|
|
605
|
-
const filterSensitiveLog: (obj: WorkerLogDelivery) => any;
|
|
606
|
-
}
|
|
607
419
|
|
|
608
420
|
export interface LogDelivery {
|
|
609
421
|
|
|
610
422
|
workerLogDelivery: WorkerLogDelivery | undefined;
|
|
611
423
|
}
|
|
612
|
-
export declare namespace LogDelivery {
|
|
613
|
-
|
|
614
|
-
const filterSensitiveLog: (obj: LogDelivery) => any;
|
|
615
|
-
}
|
|
616
424
|
|
|
617
425
|
export interface WorkerConfiguration {
|
|
618
426
|
|
|
@@ -620,10 +428,6 @@ export interface WorkerConfiguration {
|
|
|
620
428
|
|
|
621
429
|
workerConfigurationArn: string | undefined;
|
|
622
430
|
}
|
|
623
|
-
export declare namespace WorkerConfiguration {
|
|
624
|
-
|
|
625
|
-
const filterSensitiveLog: (obj: WorkerConfiguration) => any;
|
|
626
|
-
}
|
|
627
431
|
export interface CreateConnectorRequest {
|
|
628
432
|
|
|
629
433
|
capacity: Capacity | undefined;
|
|
@@ -650,10 +454,6 @@ export interface CreateConnectorRequest {
|
|
|
650
454
|
|
|
651
455
|
workerConfiguration?: WorkerConfiguration;
|
|
652
456
|
}
|
|
653
|
-
export declare namespace CreateConnectorRequest {
|
|
654
|
-
|
|
655
|
-
const filterSensitiveLog: (obj: CreateConnectorRequest) => any;
|
|
656
|
-
}
|
|
657
457
|
export interface CreateConnectorResponse {
|
|
658
458
|
|
|
659
459
|
connectorArn?: string;
|
|
@@ -662,10 +462,6 @@ export interface CreateConnectorResponse {
|
|
|
662
462
|
|
|
663
463
|
connectorState?: ConnectorState | string;
|
|
664
464
|
}
|
|
665
|
-
export declare namespace CreateConnectorResponse {
|
|
666
|
-
|
|
667
|
-
const filterSensitiveLog: (obj: CreateConnectorResponse) => any;
|
|
668
|
-
}
|
|
669
465
|
|
|
670
466
|
export declare class ForbiddenException extends __BaseException {
|
|
671
467
|
readonly name: "ForbiddenException";
|
|
@@ -717,19 +513,11 @@ export interface S3Location {
|
|
|
717
513
|
|
|
718
514
|
objectVersion?: string;
|
|
719
515
|
}
|
|
720
|
-
export declare namespace S3Location {
|
|
721
|
-
|
|
722
|
-
const filterSensitiveLog: (obj: S3Location) => any;
|
|
723
|
-
}
|
|
724
516
|
|
|
725
517
|
export interface CustomPluginLocation {
|
|
726
518
|
|
|
727
519
|
s3Location: S3Location | undefined;
|
|
728
520
|
}
|
|
729
|
-
export declare namespace CustomPluginLocation {
|
|
730
|
-
|
|
731
|
-
const filterSensitiveLog: (obj: CustomPluginLocation) => any;
|
|
732
|
-
}
|
|
733
521
|
export interface CreateCustomPluginRequest {
|
|
734
522
|
|
|
735
523
|
contentType: CustomPluginContentType | string | undefined;
|
|
@@ -740,10 +528,6 @@ export interface CreateCustomPluginRequest {
|
|
|
740
528
|
|
|
741
529
|
name: string | undefined;
|
|
742
530
|
}
|
|
743
|
-
export declare namespace CreateCustomPluginRequest {
|
|
744
|
-
|
|
745
|
-
const filterSensitiveLog: (obj: CreateCustomPluginRequest) => any;
|
|
746
|
-
}
|
|
747
531
|
export interface CreateCustomPluginResponse {
|
|
748
532
|
|
|
749
533
|
customPluginArn?: string;
|
|
@@ -754,10 +538,6 @@ export interface CreateCustomPluginResponse {
|
|
|
754
538
|
|
|
755
539
|
revision?: number;
|
|
756
540
|
}
|
|
757
|
-
export declare namespace CreateCustomPluginResponse {
|
|
758
|
-
|
|
759
|
-
const filterSensitiveLog: (obj: CreateCustomPluginResponse) => any;
|
|
760
|
-
}
|
|
761
541
|
export interface CreateWorkerConfigurationRequest {
|
|
762
542
|
|
|
763
543
|
description?: string;
|
|
@@ -766,10 +546,6 @@ export interface CreateWorkerConfigurationRequest {
|
|
|
766
546
|
|
|
767
547
|
propertiesFileContent: string | undefined;
|
|
768
548
|
}
|
|
769
|
-
export declare namespace CreateWorkerConfigurationRequest {
|
|
770
|
-
|
|
771
|
-
const filterSensitiveLog: (obj: CreateWorkerConfigurationRequest) => any;
|
|
772
|
-
}
|
|
773
549
|
export interface CreateWorkerConfigurationResponse {
|
|
774
550
|
|
|
775
551
|
creationTime?: Date;
|
|
@@ -780,56 +556,32 @@ export interface CreateWorkerConfigurationResponse {
|
|
|
780
556
|
|
|
781
557
|
workerConfigurationArn?: string;
|
|
782
558
|
}
|
|
783
|
-
export declare namespace CreateWorkerConfigurationResponse {
|
|
784
|
-
|
|
785
|
-
const filterSensitiveLog: (obj: CreateWorkerConfigurationResponse) => any;
|
|
786
|
-
}
|
|
787
559
|
export interface DeleteConnectorRequest {
|
|
788
560
|
|
|
789
561
|
connectorArn: string | undefined;
|
|
790
562
|
|
|
791
563
|
currentVersion?: string;
|
|
792
564
|
}
|
|
793
|
-
export declare namespace DeleteConnectorRequest {
|
|
794
|
-
|
|
795
|
-
const filterSensitiveLog: (obj: DeleteConnectorRequest) => any;
|
|
796
|
-
}
|
|
797
565
|
export interface DeleteConnectorResponse {
|
|
798
566
|
|
|
799
567
|
connectorArn?: string;
|
|
800
568
|
|
|
801
569
|
connectorState?: ConnectorState | string;
|
|
802
570
|
}
|
|
803
|
-
export declare namespace DeleteConnectorResponse {
|
|
804
|
-
|
|
805
|
-
const filterSensitiveLog: (obj: DeleteConnectorResponse) => any;
|
|
806
|
-
}
|
|
807
571
|
export interface DeleteCustomPluginRequest {
|
|
808
572
|
|
|
809
573
|
customPluginArn: string | undefined;
|
|
810
574
|
}
|
|
811
|
-
export declare namespace DeleteCustomPluginRequest {
|
|
812
|
-
|
|
813
|
-
const filterSensitiveLog: (obj: DeleteCustomPluginRequest) => any;
|
|
814
|
-
}
|
|
815
575
|
export interface DeleteCustomPluginResponse {
|
|
816
576
|
|
|
817
577
|
customPluginArn?: string;
|
|
818
578
|
|
|
819
579
|
customPluginState?: CustomPluginState | string;
|
|
820
580
|
}
|
|
821
|
-
export declare namespace DeleteCustomPluginResponse {
|
|
822
|
-
|
|
823
|
-
const filterSensitiveLog: (obj: DeleteCustomPluginResponse) => any;
|
|
824
|
-
}
|
|
825
581
|
export interface DescribeConnectorRequest {
|
|
826
582
|
|
|
827
583
|
connectorArn: string | undefined;
|
|
828
584
|
}
|
|
829
|
-
export declare namespace DescribeConnectorRequest {
|
|
830
|
-
|
|
831
|
-
const filterSensitiveLog: (obj: DescribeConnectorRequest) => any;
|
|
832
|
-
}
|
|
833
585
|
|
|
834
586
|
export interface StateDescription {
|
|
835
587
|
|
|
@@ -837,10 +589,6 @@ export interface StateDescription {
|
|
|
837
589
|
|
|
838
590
|
message?: string;
|
|
839
591
|
}
|
|
840
|
-
export declare namespace StateDescription {
|
|
841
|
-
|
|
842
|
-
const filterSensitiveLog: (obj: StateDescription) => any;
|
|
843
|
-
}
|
|
844
592
|
export interface DescribeConnectorResponse {
|
|
845
593
|
|
|
846
594
|
capacity?: CapacityDescription;
|
|
@@ -877,18 +625,10 @@ export interface DescribeConnectorResponse {
|
|
|
877
625
|
|
|
878
626
|
stateDescription?: StateDescription;
|
|
879
627
|
}
|
|
880
|
-
export declare namespace DescribeConnectorResponse {
|
|
881
|
-
|
|
882
|
-
const filterSensitiveLog: (obj: DescribeConnectorResponse) => any;
|
|
883
|
-
}
|
|
884
628
|
export interface DescribeCustomPluginRequest {
|
|
885
629
|
|
|
886
630
|
customPluginArn: string | undefined;
|
|
887
631
|
}
|
|
888
|
-
export declare namespace DescribeCustomPluginRequest {
|
|
889
|
-
|
|
890
|
-
const filterSensitiveLog: (obj: DescribeCustomPluginRequest) => any;
|
|
891
|
-
}
|
|
892
632
|
export interface DescribeCustomPluginResponse {
|
|
893
633
|
|
|
894
634
|
creationTime?: Date;
|
|
@@ -905,18 +645,10 @@ export interface DescribeCustomPluginResponse {
|
|
|
905
645
|
|
|
906
646
|
stateDescription?: StateDescription;
|
|
907
647
|
}
|
|
908
|
-
export declare namespace DescribeCustomPluginResponse {
|
|
909
|
-
|
|
910
|
-
const filterSensitiveLog: (obj: DescribeCustomPluginResponse) => any;
|
|
911
|
-
}
|
|
912
648
|
export interface DescribeWorkerConfigurationRequest {
|
|
913
649
|
|
|
914
650
|
workerConfigurationArn: string | undefined;
|
|
915
651
|
}
|
|
916
|
-
export declare namespace DescribeWorkerConfigurationRequest {
|
|
917
|
-
|
|
918
|
-
const filterSensitiveLog: (obj: DescribeWorkerConfigurationRequest) => any;
|
|
919
|
-
}
|
|
920
652
|
|
|
921
653
|
export interface WorkerConfigurationRevisionDescription {
|
|
922
654
|
|
|
@@ -928,10 +660,6 @@ export interface WorkerConfigurationRevisionDescription {
|
|
|
928
660
|
|
|
929
661
|
revision?: number;
|
|
930
662
|
}
|
|
931
|
-
export declare namespace WorkerConfigurationRevisionDescription {
|
|
932
|
-
|
|
933
|
-
const filterSensitiveLog: (obj: WorkerConfigurationRevisionDescription) => any;
|
|
934
|
-
}
|
|
935
663
|
export interface DescribeWorkerConfigurationResponse {
|
|
936
664
|
|
|
937
665
|
creationTime?: Date;
|
|
@@ -944,10 +672,6 @@ export interface DescribeWorkerConfigurationResponse {
|
|
|
944
672
|
|
|
945
673
|
workerConfigurationArn?: string;
|
|
946
674
|
}
|
|
947
|
-
export declare namespace DescribeWorkerConfigurationResponse {
|
|
948
|
-
|
|
949
|
-
const filterSensitiveLog: (obj: DescribeWorkerConfigurationResponse) => any;
|
|
950
|
-
}
|
|
951
675
|
export interface ListConnectorsRequest {
|
|
952
676
|
|
|
953
677
|
connectorNamePrefix?: string;
|
|
@@ -956,60 +680,36 @@ export interface ListConnectorsRequest {
|
|
|
956
680
|
|
|
957
681
|
nextToken?: string;
|
|
958
682
|
}
|
|
959
|
-
export declare namespace ListConnectorsRequest {
|
|
960
|
-
|
|
961
|
-
const filterSensitiveLog: (obj: ListConnectorsRequest) => any;
|
|
962
|
-
}
|
|
963
683
|
export interface ListConnectorsResponse {
|
|
964
684
|
|
|
965
685
|
connectors?: ConnectorSummary[];
|
|
966
686
|
|
|
967
687
|
nextToken?: string;
|
|
968
688
|
}
|
|
969
|
-
export declare namespace ListConnectorsResponse {
|
|
970
|
-
|
|
971
|
-
const filterSensitiveLog: (obj: ListConnectorsResponse) => any;
|
|
972
|
-
}
|
|
973
689
|
export interface ListCustomPluginsRequest {
|
|
974
690
|
|
|
975
691
|
maxResults?: number;
|
|
976
692
|
|
|
977
693
|
nextToken?: string;
|
|
978
694
|
}
|
|
979
|
-
export declare namespace ListCustomPluginsRequest {
|
|
980
|
-
|
|
981
|
-
const filterSensitiveLog: (obj: ListCustomPluginsRequest) => any;
|
|
982
|
-
}
|
|
983
695
|
export interface ListCustomPluginsResponse {
|
|
984
696
|
|
|
985
697
|
customPlugins?: CustomPluginSummary[];
|
|
986
698
|
|
|
987
699
|
nextToken?: string;
|
|
988
700
|
}
|
|
989
|
-
export declare namespace ListCustomPluginsResponse {
|
|
990
|
-
|
|
991
|
-
const filterSensitiveLog: (obj: ListCustomPluginsResponse) => any;
|
|
992
|
-
}
|
|
993
701
|
export interface ListWorkerConfigurationsRequest {
|
|
994
702
|
|
|
995
703
|
maxResults?: number;
|
|
996
704
|
|
|
997
705
|
nextToken?: string;
|
|
998
706
|
}
|
|
999
|
-
export declare namespace ListWorkerConfigurationsRequest {
|
|
1000
|
-
|
|
1001
|
-
const filterSensitiveLog: (obj: ListWorkerConfigurationsRequest) => any;
|
|
1002
|
-
}
|
|
1003
707
|
export interface ListWorkerConfigurationsResponse {
|
|
1004
708
|
|
|
1005
709
|
nextToken?: string;
|
|
1006
710
|
|
|
1007
711
|
workerConfigurations?: WorkerConfigurationSummary[];
|
|
1008
712
|
}
|
|
1009
|
-
export declare namespace ListWorkerConfigurationsResponse {
|
|
1010
|
-
|
|
1011
|
-
const filterSensitiveLog: (obj: ListWorkerConfigurationsResponse) => any;
|
|
1012
|
-
}
|
|
1013
713
|
export interface UpdateConnectorRequest {
|
|
1014
714
|
|
|
1015
715
|
capacity: CapacityUpdate | undefined;
|
|
@@ -1018,17 +718,163 @@ export interface UpdateConnectorRequest {
|
|
|
1018
718
|
|
|
1019
719
|
currentVersion: string | undefined;
|
|
1020
720
|
}
|
|
1021
|
-
export declare namespace UpdateConnectorRequest {
|
|
1022
|
-
|
|
1023
|
-
const filterSensitiveLog: (obj: UpdateConnectorRequest) => any;
|
|
1024
|
-
}
|
|
1025
721
|
export interface UpdateConnectorResponse {
|
|
1026
722
|
|
|
1027
723
|
connectorArn?: string;
|
|
1028
724
|
|
|
1029
725
|
connectorState?: ConnectorState | string;
|
|
1030
726
|
}
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
727
|
+
|
|
728
|
+
export declare const ScaleInPolicyDescriptionFilterSensitiveLog: (obj: ScaleInPolicyDescription) => any;
|
|
729
|
+
|
|
730
|
+
export declare const ScaleOutPolicyDescriptionFilterSensitiveLog: (obj: ScaleOutPolicyDescription) => any;
|
|
731
|
+
|
|
732
|
+
export declare const AutoScalingDescriptionFilterSensitiveLog: (obj: AutoScalingDescription) => any;
|
|
733
|
+
|
|
734
|
+
export declare const ProvisionedCapacityDescriptionFilterSensitiveLog: (obj: ProvisionedCapacityDescription) => any;
|
|
735
|
+
|
|
736
|
+
export declare const CapacityDescriptionFilterSensitiveLog: (obj: CapacityDescription) => any;
|
|
737
|
+
|
|
738
|
+
export declare const VpcDescriptionFilterSensitiveLog: (obj: VpcDescription) => any;
|
|
739
|
+
|
|
740
|
+
export declare const ApacheKafkaClusterDescriptionFilterSensitiveLog: (obj: ApacheKafkaClusterDescription) => any;
|
|
741
|
+
|
|
742
|
+
export declare const KafkaClusterDescriptionFilterSensitiveLog: (obj: KafkaClusterDescription) => any;
|
|
743
|
+
|
|
744
|
+
export declare const KafkaClusterClientAuthenticationDescriptionFilterSensitiveLog: (obj: KafkaClusterClientAuthenticationDescription) => any;
|
|
745
|
+
|
|
746
|
+
export declare const KafkaClusterEncryptionInTransitDescriptionFilterSensitiveLog: (obj: KafkaClusterEncryptionInTransitDescription) => any;
|
|
747
|
+
|
|
748
|
+
export declare const CloudWatchLogsLogDeliveryDescriptionFilterSensitiveLog: (obj: CloudWatchLogsLogDeliveryDescription) => any;
|
|
749
|
+
|
|
750
|
+
export declare const FirehoseLogDeliveryDescriptionFilterSensitiveLog: (obj: FirehoseLogDeliveryDescription) => any;
|
|
751
|
+
|
|
752
|
+
export declare const S3LogDeliveryDescriptionFilterSensitiveLog: (obj: S3LogDeliveryDescription) => any;
|
|
753
|
+
|
|
754
|
+
export declare const WorkerLogDeliveryDescriptionFilterSensitiveLog: (obj: WorkerLogDeliveryDescription) => any;
|
|
755
|
+
|
|
756
|
+
export declare const LogDeliveryDescriptionFilterSensitiveLog: (obj: LogDeliveryDescription) => any;
|
|
757
|
+
|
|
758
|
+
export declare const CustomPluginDescriptionFilterSensitiveLog: (obj: CustomPluginDescription) => any;
|
|
759
|
+
|
|
760
|
+
export declare const PluginDescriptionFilterSensitiveLog: (obj: PluginDescription) => any;
|
|
761
|
+
|
|
762
|
+
export declare const WorkerConfigurationDescriptionFilterSensitiveLog: (obj: WorkerConfigurationDescription) => any;
|
|
763
|
+
|
|
764
|
+
export declare const ConnectorSummaryFilterSensitiveLog: (obj: ConnectorSummary) => any;
|
|
765
|
+
|
|
766
|
+
export declare const CustomPluginFileDescriptionFilterSensitiveLog: (obj: CustomPluginFileDescription) => any;
|
|
767
|
+
|
|
768
|
+
export declare const S3LocationDescriptionFilterSensitiveLog: (obj: S3LocationDescription) => any;
|
|
769
|
+
|
|
770
|
+
export declare const CustomPluginLocationDescriptionFilterSensitiveLog: (obj: CustomPluginLocationDescription) => any;
|
|
771
|
+
|
|
772
|
+
export declare const CustomPluginRevisionSummaryFilterSensitiveLog: (obj: CustomPluginRevisionSummary) => any;
|
|
773
|
+
|
|
774
|
+
export declare const CustomPluginSummaryFilterSensitiveLog: (obj: CustomPluginSummary) => any;
|
|
775
|
+
|
|
776
|
+
export declare const CustomPluginFilterSensitiveLog: (obj: CustomPlugin) => any;
|
|
777
|
+
|
|
778
|
+
export declare const PluginFilterSensitiveLog: (obj: Plugin) => any;
|
|
779
|
+
|
|
780
|
+
export declare const WorkerConfigurationRevisionSummaryFilterSensitiveLog: (obj: WorkerConfigurationRevisionSummary) => any;
|
|
781
|
+
|
|
782
|
+
export declare const WorkerConfigurationSummaryFilterSensitiveLog: (obj: WorkerConfigurationSummary) => any;
|
|
783
|
+
|
|
784
|
+
export declare const VpcFilterSensitiveLog: (obj: Vpc) => any;
|
|
785
|
+
|
|
786
|
+
export declare const ApacheKafkaClusterFilterSensitiveLog: (obj: ApacheKafkaCluster) => any;
|
|
787
|
+
|
|
788
|
+
export declare const ScaleInPolicyFilterSensitiveLog: (obj: ScaleInPolicy) => any;
|
|
789
|
+
|
|
790
|
+
export declare const ScaleOutPolicyFilterSensitiveLog: (obj: ScaleOutPolicy) => any;
|
|
791
|
+
|
|
792
|
+
export declare const AutoScalingFilterSensitiveLog: (obj: AutoScaling) => any;
|
|
793
|
+
|
|
794
|
+
export declare const ScaleInPolicyUpdateFilterSensitiveLog: (obj: ScaleInPolicyUpdate) => any;
|
|
795
|
+
|
|
796
|
+
export declare const ScaleOutPolicyUpdateFilterSensitiveLog: (obj: ScaleOutPolicyUpdate) => any;
|
|
797
|
+
|
|
798
|
+
export declare const AutoScalingUpdateFilterSensitiveLog: (obj: AutoScalingUpdate) => any;
|
|
799
|
+
|
|
800
|
+
export declare const ProvisionedCapacityFilterSensitiveLog: (obj: ProvisionedCapacity) => any;
|
|
801
|
+
|
|
802
|
+
export declare const CapacityFilterSensitiveLog: (obj: Capacity) => any;
|
|
803
|
+
|
|
804
|
+
export declare const ProvisionedCapacityUpdateFilterSensitiveLog: (obj: ProvisionedCapacityUpdate) => any;
|
|
805
|
+
|
|
806
|
+
export declare const CapacityUpdateFilterSensitiveLog: (obj: CapacityUpdate) => any;
|
|
807
|
+
|
|
808
|
+
export declare const CloudWatchLogsLogDeliveryFilterSensitiveLog: (obj: CloudWatchLogsLogDelivery) => any;
|
|
809
|
+
|
|
810
|
+
export declare const KafkaClusterFilterSensitiveLog: (obj: KafkaCluster) => any;
|
|
811
|
+
|
|
812
|
+
export declare const KafkaClusterClientAuthenticationFilterSensitiveLog: (obj: KafkaClusterClientAuthentication) => any;
|
|
813
|
+
|
|
814
|
+
export declare const KafkaClusterEncryptionInTransitFilterSensitiveLog: (obj: KafkaClusterEncryptionInTransit) => any;
|
|
815
|
+
|
|
816
|
+
export declare const FirehoseLogDeliveryFilterSensitiveLog: (obj: FirehoseLogDelivery) => any;
|
|
817
|
+
|
|
818
|
+
export declare const S3LogDeliveryFilterSensitiveLog: (obj: S3LogDelivery) => any;
|
|
819
|
+
|
|
820
|
+
export declare const WorkerLogDeliveryFilterSensitiveLog: (obj: WorkerLogDelivery) => any;
|
|
821
|
+
|
|
822
|
+
export declare const LogDeliveryFilterSensitiveLog: (obj: LogDelivery) => any;
|
|
823
|
+
|
|
824
|
+
export declare const WorkerConfigurationFilterSensitiveLog: (obj: WorkerConfiguration) => any;
|
|
825
|
+
|
|
826
|
+
export declare const CreateConnectorRequestFilterSensitiveLog: (obj: CreateConnectorRequest) => any;
|
|
827
|
+
|
|
828
|
+
export declare const CreateConnectorResponseFilterSensitiveLog: (obj: CreateConnectorResponse) => any;
|
|
829
|
+
|
|
830
|
+
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
831
|
+
|
|
832
|
+
export declare const CustomPluginLocationFilterSensitiveLog: (obj: CustomPluginLocation) => any;
|
|
833
|
+
|
|
834
|
+
export declare const CreateCustomPluginRequestFilterSensitiveLog: (obj: CreateCustomPluginRequest) => any;
|
|
835
|
+
|
|
836
|
+
export declare const CreateCustomPluginResponseFilterSensitiveLog: (obj: CreateCustomPluginResponse) => any;
|
|
837
|
+
|
|
838
|
+
export declare const CreateWorkerConfigurationRequestFilterSensitiveLog: (obj: CreateWorkerConfigurationRequest) => any;
|
|
839
|
+
|
|
840
|
+
export declare const CreateWorkerConfigurationResponseFilterSensitiveLog: (obj: CreateWorkerConfigurationResponse) => any;
|
|
841
|
+
|
|
842
|
+
export declare const DeleteConnectorRequestFilterSensitiveLog: (obj: DeleteConnectorRequest) => any;
|
|
843
|
+
|
|
844
|
+
export declare const DeleteConnectorResponseFilterSensitiveLog: (obj: DeleteConnectorResponse) => any;
|
|
845
|
+
|
|
846
|
+
export declare const DeleteCustomPluginRequestFilterSensitiveLog: (obj: DeleteCustomPluginRequest) => any;
|
|
847
|
+
|
|
848
|
+
export declare const DeleteCustomPluginResponseFilterSensitiveLog: (obj: DeleteCustomPluginResponse) => any;
|
|
849
|
+
|
|
850
|
+
export declare const DescribeConnectorRequestFilterSensitiveLog: (obj: DescribeConnectorRequest) => any;
|
|
851
|
+
|
|
852
|
+
export declare const StateDescriptionFilterSensitiveLog: (obj: StateDescription) => any;
|
|
853
|
+
|
|
854
|
+
export declare const DescribeConnectorResponseFilterSensitiveLog: (obj: DescribeConnectorResponse) => any;
|
|
855
|
+
|
|
856
|
+
export declare const DescribeCustomPluginRequestFilterSensitiveLog: (obj: DescribeCustomPluginRequest) => any;
|
|
857
|
+
|
|
858
|
+
export declare const DescribeCustomPluginResponseFilterSensitiveLog: (obj: DescribeCustomPluginResponse) => any;
|
|
859
|
+
|
|
860
|
+
export declare const DescribeWorkerConfigurationRequestFilterSensitiveLog: (obj: DescribeWorkerConfigurationRequest) => any;
|
|
861
|
+
|
|
862
|
+
export declare const WorkerConfigurationRevisionDescriptionFilterSensitiveLog: (obj: WorkerConfigurationRevisionDescription) => any;
|
|
863
|
+
|
|
864
|
+
export declare const DescribeWorkerConfigurationResponseFilterSensitiveLog: (obj: DescribeWorkerConfigurationResponse) => any;
|
|
865
|
+
|
|
866
|
+
export declare const ListConnectorsRequestFilterSensitiveLog: (obj: ListConnectorsRequest) => any;
|
|
867
|
+
|
|
868
|
+
export declare const ListConnectorsResponseFilterSensitiveLog: (obj: ListConnectorsResponse) => any;
|
|
869
|
+
|
|
870
|
+
export declare const ListCustomPluginsRequestFilterSensitiveLog: (obj: ListCustomPluginsRequest) => any;
|
|
871
|
+
|
|
872
|
+
export declare const ListCustomPluginsResponseFilterSensitiveLog: (obj: ListCustomPluginsResponse) => any;
|
|
873
|
+
|
|
874
|
+
export declare const ListWorkerConfigurationsRequestFilterSensitiveLog: (obj: ListWorkerConfigurationsRequest) => any;
|
|
875
|
+
|
|
876
|
+
export declare const ListWorkerConfigurationsResponseFilterSensitiveLog: (obj: ListWorkerConfigurationsResponse) => any;
|
|
877
|
+
|
|
878
|
+
export declare const UpdateConnectorRequestFilterSensitiveLog: (obj: UpdateConnectorRequest) => any;
|
|
879
|
+
|
|
880
|
+
export declare const UpdateConnectorResponseFilterSensitiveLog: (obj: UpdateConnectorResponse) => any;
|