@aws-sdk/client-kafkaconnect 3.169.0 → 3.170.0

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