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