@aws-sdk/client-kafkaconnect 3.379.1 → 3.382.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +217 -0
- package/package.json +5 -5
|
@@ -6,6 +6,7 @@ import { KafkaConnectServiceException as __BaseException } from "./KafkaConnectS
|
|
|
6
6
|
*/
|
|
7
7
|
export interface ScaleInPolicyDescription {
|
|
8
8
|
/**
|
|
9
|
+
* @public
|
|
9
10
|
* <p>Specifies the CPU utilization percentage threshold at which you want connector scale in
|
|
10
11
|
* to be triggered.</p>
|
|
11
12
|
*/
|
|
@@ -17,6 +18,7 @@ export interface ScaleInPolicyDescription {
|
|
|
17
18
|
*/
|
|
18
19
|
export interface ScaleOutPolicyDescription {
|
|
19
20
|
/**
|
|
21
|
+
* @public
|
|
20
22
|
* <p>The CPU utilization percentage threshold at which you want connector scale out to be
|
|
21
23
|
* triggered.</p>
|
|
22
24
|
*/
|
|
@@ -28,23 +30,28 @@ export interface ScaleOutPolicyDescription {
|
|
|
28
30
|
*/
|
|
29
31
|
export interface AutoScalingDescription {
|
|
30
32
|
/**
|
|
33
|
+
* @public
|
|
31
34
|
* <p>The maximum number of workers allocated to the connector.</p>
|
|
32
35
|
*/
|
|
33
36
|
maxWorkerCount?: number;
|
|
34
37
|
/**
|
|
38
|
+
* @public
|
|
35
39
|
* <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
|
|
36
40
|
* values are 1,2,4,8.</p>
|
|
37
41
|
*/
|
|
38
42
|
mcuCount?: number;
|
|
39
43
|
/**
|
|
44
|
+
* @public
|
|
40
45
|
* <p>The minimum number of workers allocated to the connector.</p>
|
|
41
46
|
*/
|
|
42
47
|
minWorkerCount?: number;
|
|
43
48
|
/**
|
|
49
|
+
* @public
|
|
44
50
|
* <p>The sacle-in policy for the connector.</p>
|
|
45
51
|
*/
|
|
46
52
|
scaleInPolicy?: ScaleInPolicyDescription;
|
|
47
53
|
/**
|
|
54
|
+
* @public
|
|
48
55
|
* <p>The sacle-out policy for the connector.></p>
|
|
49
56
|
*/
|
|
50
57
|
scaleOutPolicy?: ScaleOutPolicyDescription;
|
|
@@ -55,11 +62,13 @@ export interface AutoScalingDescription {
|
|
|
55
62
|
*/
|
|
56
63
|
export interface ProvisionedCapacityDescription {
|
|
57
64
|
/**
|
|
65
|
+
* @public
|
|
58
66
|
* <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
|
|
59
67
|
* values are 1,2,4,8.</p>
|
|
60
68
|
*/
|
|
61
69
|
mcuCount?: number;
|
|
62
70
|
/**
|
|
71
|
+
* @public
|
|
63
72
|
* <p>The number of workers that are allocated to the connector.</p>
|
|
64
73
|
*/
|
|
65
74
|
workerCount?: number;
|
|
@@ -70,10 +79,12 @@ export interface ProvisionedCapacityDescription {
|
|
|
70
79
|
*/
|
|
71
80
|
export interface CapacityDescription {
|
|
72
81
|
/**
|
|
82
|
+
* @public
|
|
73
83
|
* <p>Describes the connector's auto scaling capacity.</p>
|
|
74
84
|
*/
|
|
75
85
|
autoScaling?: AutoScalingDescription;
|
|
76
86
|
/**
|
|
87
|
+
* @public
|
|
77
88
|
* <p>Describes a connector's provisioned capacity.</p>
|
|
78
89
|
*/
|
|
79
90
|
provisionedCapacity?: ProvisionedCapacityDescription;
|
|
@@ -99,10 +110,12 @@ export type ConnectorState = (typeof ConnectorState)[keyof typeof ConnectorState
|
|
|
99
110
|
*/
|
|
100
111
|
export interface VpcDescription {
|
|
101
112
|
/**
|
|
113
|
+
* @public
|
|
102
114
|
* <p>The security groups for the connector.</p>
|
|
103
115
|
*/
|
|
104
116
|
securityGroups?: string[];
|
|
105
117
|
/**
|
|
118
|
+
* @public
|
|
106
119
|
* <p>The subnets for the connector.</p>
|
|
107
120
|
*/
|
|
108
121
|
subnets?: string[];
|
|
@@ -113,10 +126,12 @@ export interface VpcDescription {
|
|
|
113
126
|
*/
|
|
114
127
|
export interface ApacheKafkaClusterDescription {
|
|
115
128
|
/**
|
|
129
|
+
* @public
|
|
116
130
|
* <p>The bootstrap servers of the cluster.</p>
|
|
117
131
|
*/
|
|
118
132
|
bootstrapServers?: string;
|
|
119
133
|
/**
|
|
134
|
+
* @public
|
|
120
135
|
* <p>Details of an Amazon VPC which has network connectivity to the Apache Kafka
|
|
121
136
|
* cluster.</p>
|
|
122
137
|
*/
|
|
@@ -128,6 +143,7 @@ export interface ApacheKafkaClusterDescription {
|
|
|
128
143
|
*/
|
|
129
144
|
export interface KafkaClusterDescription {
|
|
130
145
|
/**
|
|
146
|
+
* @public
|
|
131
147
|
* <p>The Apache Kafka cluster to which the connector is connected.</p>
|
|
132
148
|
*/
|
|
133
149
|
apacheKafkaCluster?: ApacheKafkaClusterDescription;
|
|
@@ -151,6 +167,7 @@ export type KafkaClusterClientAuthenticationType = (typeof KafkaClusterClientAut
|
|
|
151
167
|
*/
|
|
152
168
|
export interface KafkaClusterClientAuthenticationDescription {
|
|
153
169
|
/**
|
|
170
|
+
* @public
|
|
154
171
|
* <p>The type of client authentication used to connect to the Apache Kafka cluster. Value
|
|
155
172
|
* NONE means that no client authentication is used.</p>
|
|
156
173
|
*/
|
|
@@ -174,6 +191,7 @@ export type KafkaClusterEncryptionInTransitType = (typeof KafkaClusterEncryption
|
|
|
174
191
|
*/
|
|
175
192
|
export interface KafkaClusterEncryptionInTransitDescription {
|
|
176
193
|
/**
|
|
194
|
+
* @public
|
|
177
195
|
* <p>The type of encryption in transit to the Apache Kafka cluster.</p>
|
|
178
196
|
*/
|
|
179
197
|
encryptionType?: KafkaClusterEncryptionInTransitType | string;
|
|
@@ -184,10 +202,12 @@ export interface KafkaClusterEncryptionInTransitDescription {
|
|
|
184
202
|
*/
|
|
185
203
|
export interface CloudWatchLogsLogDeliveryDescription {
|
|
186
204
|
/**
|
|
205
|
+
* @public
|
|
187
206
|
* <p>Whether log delivery to Amazon CloudWatch Logs is enabled.</p>
|
|
188
207
|
*/
|
|
189
208
|
enabled?: boolean;
|
|
190
209
|
/**
|
|
210
|
+
* @public
|
|
191
211
|
* <p>The name of the CloudWatch log group that is the destination for log delivery.</p>
|
|
192
212
|
*/
|
|
193
213
|
logGroup?: string;
|
|
@@ -199,11 +219,13 @@ export interface CloudWatchLogsLogDeliveryDescription {
|
|
|
199
219
|
*/
|
|
200
220
|
export interface FirehoseLogDeliveryDescription {
|
|
201
221
|
/**
|
|
222
|
+
* @public
|
|
202
223
|
* <p>The name of the Kinesis Data Firehose delivery stream that is the destination for log
|
|
203
224
|
* delivery.</p>
|
|
204
225
|
*/
|
|
205
226
|
deliveryStream?: string;
|
|
206
227
|
/**
|
|
228
|
+
* @public
|
|
207
229
|
* <p>Specifies whether connector logs get delivered to Amazon Kinesis Data Firehose.</p>
|
|
208
230
|
*/
|
|
209
231
|
enabled?: boolean;
|
|
@@ -214,14 +236,17 @@ export interface FirehoseLogDeliveryDescription {
|
|
|
214
236
|
*/
|
|
215
237
|
export interface S3LogDeliveryDescription {
|
|
216
238
|
/**
|
|
239
|
+
* @public
|
|
217
240
|
* <p>The name of the S3 bucket that is the destination for log delivery.</p>
|
|
218
241
|
*/
|
|
219
242
|
bucket?: string;
|
|
220
243
|
/**
|
|
244
|
+
* @public
|
|
221
245
|
* <p>Specifies whether connector logs get sent to the specified Amazon S3 destination.</p>
|
|
222
246
|
*/
|
|
223
247
|
enabled?: boolean;
|
|
224
248
|
/**
|
|
249
|
+
* @public
|
|
225
250
|
* <p>The S3 prefix that is the destination for log delivery.</p>
|
|
226
251
|
*/
|
|
227
252
|
prefix?: string;
|
|
@@ -233,14 +258,17 @@ export interface S3LogDeliveryDescription {
|
|
|
233
258
|
*/
|
|
234
259
|
export interface WorkerLogDeliveryDescription {
|
|
235
260
|
/**
|
|
261
|
+
* @public
|
|
236
262
|
* <p>Details about delivering logs to Amazon CloudWatch Logs.</p>
|
|
237
263
|
*/
|
|
238
264
|
cloudWatchLogs?: CloudWatchLogsLogDeliveryDescription;
|
|
239
265
|
/**
|
|
266
|
+
* @public
|
|
240
267
|
* <p>Details about delivering logs to Amazon Kinesis Data Firehose.</p>
|
|
241
268
|
*/
|
|
242
269
|
firehose?: FirehoseLogDeliveryDescription;
|
|
243
270
|
/**
|
|
271
|
+
* @public
|
|
244
272
|
* <p>Details about delivering logs to Amazon S3.</p>
|
|
245
273
|
*/
|
|
246
274
|
s3?: S3LogDeliveryDescription;
|
|
@@ -251,6 +279,7 @@ export interface WorkerLogDeliveryDescription {
|
|
|
251
279
|
*/
|
|
252
280
|
export interface LogDeliveryDescription {
|
|
253
281
|
/**
|
|
282
|
+
* @public
|
|
254
283
|
* <p>The workers can send worker logs to different destination types. This configuration
|
|
255
284
|
* specifies the details of these destinations.</p>
|
|
256
285
|
*/
|
|
@@ -262,10 +291,12 @@ export interface LogDeliveryDescription {
|
|
|
262
291
|
*/
|
|
263
292
|
export interface CustomPluginDescription {
|
|
264
293
|
/**
|
|
294
|
+
* @public
|
|
265
295
|
* <p>The Amazon Resource Name (ARN) of the custom plugin.</p>
|
|
266
296
|
*/
|
|
267
297
|
customPluginArn?: string;
|
|
268
298
|
/**
|
|
299
|
+
* @public
|
|
269
300
|
* <p>The revision of the custom plugin.</p>
|
|
270
301
|
*/
|
|
271
302
|
revision?: number;
|
|
@@ -276,6 +307,7 @@ export interface CustomPluginDescription {
|
|
|
276
307
|
*/
|
|
277
308
|
export interface PluginDescription {
|
|
278
309
|
/**
|
|
310
|
+
* @public
|
|
279
311
|
* <p>Details about a custom plugin.</p>
|
|
280
312
|
*/
|
|
281
313
|
customPlugin?: CustomPluginDescription;
|
|
@@ -286,10 +318,12 @@ export interface PluginDescription {
|
|
|
286
318
|
*/
|
|
287
319
|
export interface WorkerConfigurationDescription {
|
|
288
320
|
/**
|
|
321
|
+
* @public
|
|
289
322
|
* <p>The revision of the worker configuration.</p>
|
|
290
323
|
*/
|
|
291
324
|
revision?: number;
|
|
292
325
|
/**
|
|
326
|
+
* @public
|
|
293
327
|
* <p>The Amazon Resource Name (ARN) of the worker configuration.</p>
|
|
294
328
|
*/
|
|
295
329
|
workerConfigurationArn?: string;
|
|
@@ -300,65 +334,80 @@ export interface WorkerConfigurationDescription {
|
|
|
300
334
|
*/
|
|
301
335
|
export interface ConnectorSummary {
|
|
302
336
|
/**
|
|
337
|
+
* @public
|
|
303
338
|
* <p>The connector's compute capacity settings.</p>
|
|
304
339
|
*/
|
|
305
340
|
capacity?: CapacityDescription;
|
|
306
341
|
/**
|
|
342
|
+
* @public
|
|
307
343
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
308
344
|
*/
|
|
309
345
|
connectorArn?: string;
|
|
310
346
|
/**
|
|
347
|
+
* @public
|
|
311
348
|
* <p>The description of the connector.</p>
|
|
312
349
|
*/
|
|
313
350
|
connectorDescription?: string;
|
|
314
351
|
/**
|
|
352
|
+
* @public
|
|
315
353
|
* <p>The name of the connector.</p>
|
|
316
354
|
*/
|
|
317
355
|
connectorName?: string;
|
|
318
356
|
/**
|
|
357
|
+
* @public
|
|
319
358
|
* <p>The state of the connector.</p>
|
|
320
359
|
*/
|
|
321
360
|
connectorState?: ConnectorState | string;
|
|
322
361
|
/**
|
|
362
|
+
* @public
|
|
323
363
|
* <p>The time that the connector was created.</p>
|
|
324
364
|
*/
|
|
325
365
|
creationTime?: Date;
|
|
326
366
|
/**
|
|
367
|
+
* @public
|
|
327
368
|
* <p>The current version of the connector.</p>
|
|
328
369
|
*/
|
|
329
370
|
currentVersion?: string;
|
|
330
371
|
/**
|
|
372
|
+
* @public
|
|
331
373
|
* <p>The details of the Apache Kafka cluster to which the connector is connected.</p>
|
|
332
374
|
*/
|
|
333
375
|
kafkaCluster?: KafkaClusterDescription;
|
|
334
376
|
/**
|
|
377
|
+
* @public
|
|
335
378
|
* <p>The type of client authentication used to connect to the Apache Kafka cluster. The value
|
|
336
379
|
* is NONE when no client authentication is used.</p>
|
|
337
380
|
*/
|
|
338
381
|
kafkaClusterClientAuthentication?: KafkaClusterClientAuthenticationDescription;
|
|
339
382
|
/**
|
|
383
|
+
* @public
|
|
340
384
|
* <p>Details of encryption in transit to the Apache Kafka cluster.</p>
|
|
341
385
|
*/
|
|
342
386
|
kafkaClusterEncryptionInTransit?: KafkaClusterEncryptionInTransitDescription;
|
|
343
387
|
/**
|
|
388
|
+
* @public
|
|
344
389
|
* <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka
|
|
345
390
|
* cluster's version and the plugins.</p>
|
|
346
391
|
*/
|
|
347
392
|
kafkaConnectVersion?: string;
|
|
348
393
|
/**
|
|
394
|
+
* @public
|
|
349
395
|
* <p>The settings for delivering connector logs to Amazon CloudWatch Logs.</p>
|
|
350
396
|
*/
|
|
351
397
|
logDelivery?: LogDeliveryDescription;
|
|
352
398
|
/**
|
|
399
|
+
* @public
|
|
353
400
|
* <p>Specifies which plugins were used for this connector.</p>
|
|
354
401
|
*/
|
|
355
402
|
plugins?: PluginDescription[];
|
|
356
403
|
/**
|
|
404
|
+
* @public
|
|
357
405
|
* <p>The Amazon Resource Name (ARN) of the IAM role used by the connector to access Amazon
|
|
358
406
|
* Web Services resources.</p>
|
|
359
407
|
*/
|
|
360
408
|
serviceExecutionRoleArn?: string;
|
|
361
409
|
/**
|
|
410
|
+
* @public
|
|
362
411
|
* <p>The worker configurations that are in use with the connector.</p>
|
|
363
412
|
*/
|
|
364
413
|
workerConfiguration?: WorkerConfigurationDescription;
|
|
@@ -397,11 +446,13 @@ export type CustomPluginContentType = (typeof CustomPluginContentType)[keyof typ
|
|
|
397
446
|
*/
|
|
398
447
|
export interface CustomPluginFileDescription {
|
|
399
448
|
/**
|
|
449
|
+
* @public
|
|
400
450
|
* <p>The hex-encoded MD5 checksum of the custom plugin file. You can use it to validate the
|
|
401
451
|
* file.</p>
|
|
402
452
|
*/
|
|
403
453
|
fileMd5?: string;
|
|
404
454
|
/**
|
|
455
|
+
* @public
|
|
405
456
|
* <p>The size in bytes of the custom plugin file. You can use it to validate the file.</p>
|
|
406
457
|
*/
|
|
407
458
|
fileSize?: number;
|
|
@@ -412,14 +463,17 @@ export interface CustomPluginFileDescription {
|
|
|
412
463
|
*/
|
|
413
464
|
export interface S3LocationDescription {
|
|
414
465
|
/**
|
|
466
|
+
* @public
|
|
415
467
|
* <p>The Amazon Resource Name (ARN) of an S3 bucket.</p>
|
|
416
468
|
*/
|
|
417
469
|
bucketArn?: string;
|
|
418
470
|
/**
|
|
471
|
+
* @public
|
|
419
472
|
* <p>The file key for an object in an S3 bucket.</p>
|
|
420
473
|
*/
|
|
421
474
|
fileKey?: string;
|
|
422
475
|
/**
|
|
476
|
+
* @public
|
|
423
477
|
* <p>The version of an object in an S3 bucket.</p>
|
|
424
478
|
*/
|
|
425
479
|
objectVersion?: string;
|
|
@@ -430,6 +484,7 @@ export interface S3LocationDescription {
|
|
|
430
484
|
*/
|
|
431
485
|
export interface CustomPluginLocationDescription {
|
|
432
486
|
/**
|
|
487
|
+
* @public
|
|
433
488
|
* <p>The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin
|
|
434
489
|
* file stored in Amazon S3.</p>
|
|
435
490
|
*/
|
|
@@ -441,26 +496,32 @@ export interface CustomPluginLocationDescription {
|
|
|
441
496
|
*/
|
|
442
497
|
export interface CustomPluginRevisionSummary {
|
|
443
498
|
/**
|
|
499
|
+
* @public
|
|
444
500
|
* <p>The format of the plugin file.</p>
|
|
445
501
|
*/
|
|
446
502
|
contentType?: CustomPluginContentType | string;
|
|
447
503
|
/**
|
|
504
|
+
* @public
|
|
448
505
|
* <p>The time that the custom plugin was created.</p>
|
|
449
506
|
*/
|
|
450
507
|
creationTime?: Date;
|
|
451
508
|
/**
|
|
509
|
+
* @public
|
|
452
510
|
* <p>The description of the custom plugin.</p>
|
|
453
511
|
*/
|
|
454
512
|
description?: string;
|
|
455
513
|
/**
|
|
514
|
+
* @public
|
|
456
515
|
* <p>Details about the custom plugin file.</p>
|
|
457
516
|
*/
|
|
458
517
|
fileDescription?: CustomPluginFileDescription;
|
|
459
518
|
/**
|
|
519
|
+
* @public
|
|
460
520
|
* <p>Information about the location of the custom plugin.</p>
|
|
461
521
|
*/
|
|
462
522
|
location?: CustomPluginLocationDescription;
|
|
463
523
|
/**
|
|
524
|
+
* @public
|
|
464
525
|
* <p>The revision of the custom plugin.</p>
|
|
465
526
|
*/
|
|
466
527
|
revision?: number;
|
|
@@ -471,26 +532,32 @@ export interface CustomPluginRevisionSummary {
|
|
|
471
532
|
*/
|
|
472
533
|
export interface CustomPluginSummary {
|
|
473
534
|
/**
|
|
535
|
+
* @public
|
|
474
536
|
* <p>The time that the custom plugin was created.</p>
|
|
475
537
|
*/
|
|
476
538
|
creationTime?: Date;
|
|
477
539
|
/**
|
|
540
|
+
* @public
|
|
478
541
|
* <p>The Amazon Resource Name (ARN) of the custom plugin.</p>
|
|
479
542
|
*/
|
|
480
543
|
customPluginArn?: string;
|
|
481
544
|
/**
|
|
545
|
+
* @public
|
|
482
546
|
* <p>The state of the custom plugin.</p>
|
|
483
547
|
*/
|
|
484
548
|
customPluginState?: CustomPluginState | string;
|
|
485
549
|
/**
|
|
550
|
+
* @public
|
|
486
551
|
* <p>A description of the custom plugin.</p>
|
|
487
552
|
*/
|
|
488
553
|
description?: string;
|
|
489
554
|
/**
|
|
555
|
+
* @public
|
|
490
556
|
* <p>The latest revision of the custom plugin.</p>
|
|
491
557
|
*/
|
|
492
558
|
latestRevision?: CustomPluginRevisionSummary;
|
|
493
559
|
/**
|
|
560
|
+
* @public
|
|
494
561
|
* <p>The name of the custom plugin.</p>
|
|
495
562
|
*/
|
|
496
563
|
name?: string;
|
|
@@ -502,10 +569,12 @@ export interface CustomPluginSummary {
|
|
|
502
569
|
*/
|
|
503
570
|
export interface CustomPlugin {
|
|
504
571
|
/**
|
|
572
|
+
* @public
|
|
505
573
|
* <p>The Amazon Resource Name (ARN) of the custom plugin.</p>
|
|
506
574
|
*/
|
|
507
575
|
customPluginArn: string | undefined;
|
|
508
576
|
/**
|
|
577
|
+
* @public
|
|
509
578
|
* <p>The revision of the custom plugin.</p>
|
|
510
579
|
*/
|
|
511
580
|
revision: number | undefined;
|
|
@@ -517,6 +586,7 @@ export interface CustomPlugin {
|
|
|
517
586
|
*/
|
|
518
587
|
export interface Plugin {
|
|
519
588
|
/**
|
|
589
|
+
* @public
|
|
520
590
|
* <p>Details about a custom plugin.</p>
|
|
521
591
|
*/
|
|
522
592
|
customPlugin: CustomPlugin | undefined;
|
|
@@ -527,14 +597,17 @@ export interface Plugin {
|
|
|
527
597
|
*/
|
|
528
598
|
export interface WorkerConfigurationRevisionSummary {
|
|
529
599
|
/**
|
|
600
|
+
* @public
|
|
530
601
|
* <p>The time that a worker configuration revision was created.</p>
|
|
531
602
|
*/
|
|
532
603
|
creationTime?: Date;
|
|
533
604
|
/**
|
|
605
|
+
* @public
|
|
534
606
|
* <p>The description of a worker configuration revision.</p>
|
|
535
607
|
*/
|
|
536
608
|
description?: string;
|
|
537
609
|
/**
|
|
610
|
+
* @public
|
|
538
611
|
* <p>The revision of a worker configuration.</p>
|
|
539
612
|
*/
|
|
540
613
|
revision?: number;
|
|
@@ -545,22 +618,27 @@ export interface WorkerConfigurationRevisionSummary {
|
|
|
545
618
|
*/
|
|
546
619
|
export interface WorkerConfigurationSummary {
|
|
547
620
|
/**
|
|
621
|
+
* @public
|
|
548
622
|
* <p>The time that a worker configuration was created.</p>
|
|
549
623
|
*/
|
|
550
624
|
creationTime?: Date;
|
|
551
625
|
/**
|
|
626
|
+
* @public
|
|
552
627
|
* <p>The description of a worker configuration.</p>
|
|
553
628
|
*/
|
|
554
629
|
description?: string;
|
|
555
630
|
/**
|
|
631
|
+
* @public
|
|
556
632
|
* <p>The latest revision of a worker configuration.</p>
|
|
557
633
|
*/
|
|
558
634
|
latestRevision?: WorkerConfigurationRevisionSummary;
|
|
559
635
|
/**
|
|
636
|
+
* @public
|
|
560
637
|
* <p>The name of the worker configuration.</p>
|
|
561
638
|
*/
|
|
562
639
|
name?: string;
|
|
563
640
|
/**
|
|
641
|
+
* @public
|
|
564
642
|
* <p>The Amazon Resource Name (ARN) of the worker configuration.</p>
|
|
565
643
|
*/
|
|
566
644
|
workerConfigurationArn?: string;
|
|
@@ -571,10 +649,12 @@ export interface WorkerConfigurationSummary {
|
|
|
571
649
|
*/
|
|
572
650
|
export interface Vpc {
|
|
573
651
|
/**
|
|
652
|
+
* @public
|
|
574
653
|
* <p>The security groups for the connector.</p>
|
|
575
654
|
*/
|
|
576
655
|
securityGroups?: string[];
|
|
577
656
|
/**
|
|
657
|
+
* @public
|
|
578
658
|
* <p>The subnets for the connector.</p>
|
|
579
659
|
*/
|
|
580
660
|
subnets: string[] | undefined;
|
|
@@ -585,10 +665,12 @@ export interface Vpc {
|
|
|
585
665
|
*/
|
|
586
666
|
export interface ApacheKafkaCluster {
|
|
587
667
|
/**
|
|
668
|
+
* @public
|
|
588
669
|
* <p>The bootstrap servers of the cluster.</p>
|
|
589
670
|
*/
|
|
590
671
|
bootstrapServers: string | undefined;
|
|
591
672
|
/**
|
|
673
|
+
* @public
|
|
592
674
|
* <p>Details of an Amazon VPC which has network connectivity to the Apache Kafka
|
|
593
675
|
* cluster.</p>
|
|
594
676
|
*/
|
|
@@ -600,6 +682,7 @@ export interface ApacheKafkaCluster {
|
|
|
600
682
|
*/
|
|
601
683
|
export interface ScaleInPolicy {
|
|
602
684
|
/**
|
|
685
|
+
* @public
|
|
603
686
|
* <p>Specifies the CPU utilization percentage threshold at which you want connector scale in
|
|
604
687
|
* to be triggered.</p>
|
|
605
688
|
*/
|
|
@@ -611,6 +694,7 @@ export interface ScaleInPolicy {
|
|
|
611
694
|
*/
|
|
612
695
|
export interface ScaleOutPolicy {
|
|
613
696
|
/**
|
|
697
|
+
* @public
|
|
614
698
|
* <p>The CPU utilization percentage threshold at which you want connector scale out to be
|
|
615
699
|
* triggered.</p>
|
|
616
700
|
*/
|
|
@@ -622,23 +706,28 @@ export interface ScaleOutPolicy {
|
|
|
622
706
|
*/
|
|
623
707
|
export interface AutoScaling {
|
|
624
708
|
/**
|
|
709
|
+
* @public
|
|
625
710
|
* <p>The maximum number of workers allocated to the connector.</p>
|
|
626
711
|
*/
|
|
627
712
|
maxWorkerCount: number | undefined;
|
|
628
713
|
/**
|
|
714
|
+
* @public
|
|
629
715
|
* <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
|
|
630
716
|
* values are 1,2,4,8.</p>
|
|
631
717
|
*/
|
|
632
718
|
mcuCount: number | undefined;
|
|
633
719
|
/**
|
|
720
|
+
* @public
|
|
634
721
|
* <p>The minimum number of workers allocated to the connector.</p>
|
|
635
722
|
*/
|
|
636
723
|
minWorkerCount: number | undefined;
|
|
637
724
|
/**
|
|
725
|
+
* @public
|
|
638
726
|
* <p>The sacle-in policy for the connector.</p>
|
|
639
727
|
*/
|
|
640
728
|
scaleInPolicy?: ScaleInPolicy;
|
|
641
729
|
/**
|
|
730
|
+
* @public
|
|
642
731
|
* <p>The sacle-out policy for the connector.</p>
|
|
643
732
|
*/
|
|
644
733
|
scaleOutPolicy?: ScaleOutPolicy;
|
|
@@ -649,6 +738,7 @@ export interface AutoScaling {
|
|
|
649
738
|
*/
|
|
650
739
|
export interface ScaleInPolicyUpdate {
|
|
651
740
|
/**
|
|
741
|
+
* @public
|
|
652
742
|
* <p>The target CPU utilization percentage threshold at which you want connector scale in to
|
|
653
743
|
* be triggered.</p>
|
|
654
744
|
*/
|
|
@@ -660,6 +750,7 @@ export interface ScaleInPolicyUpdate {
|
|
|
660
750
|
*/
|
|
661
751
|
export interface ScaleOutPolicyUpdate {
|
|
662
752
|
/**
|
|
753
|
+
* @public
|
|
663
754
|
* <p>The target CPU utilization percentage threshold at which you want connector scale out to
|
|
664
755
|
* be triggered.</p>
|
|
665
756
|
*/
|
|
@@ -671,23 +762,28 @@ export interface ScaleOutPolicyUpdate {
|
|
|
671
762
|
*/
|
|
672
763
|
export interface AutoScalingUpdate {
|
|
673
764
|
/**
|
|
765
|
+
* @public
|
|
674
766
|
* <p>The target maximum number of workers allocated to the connector.</p>
|
|
675
767
|
*/
|
|
676
768
|
maxWorkerCount: number | undefined;
|
|
677
769
|
/**
|
|
770
|
+
* @public
|
|
678
771
|
* <p>The target number of microcontroller units (MCUs) allocated to each connector worker.
|
|
679
772
|
* The valid values are 1,2,4,8.</p>
|
|
680
773
|
*/
|
|
681
774
|
mcuCount: number | undefined;
|
|
682
775
|
/**
|
|
776
|
+
* @public
|
|
683
777
|
* <p>The target minimum number of workers allocated to the connector.</p>
|
|
684
778
|
*/
|
|
685
779
|
minWorkerCount: number | undefined;
|
|
686
780
|
/**
|
|
781
|
+
* @public
|
|
687
782
|
* <p>The target sacle-in policy for the connector.</p>
|
|
688
783
|
*/
|
|
689
784
|
scaleInPolicy: ScaleInPolicyUpdate | undefined;
|
|
690
785
|
/**
|
|
786
|
+
* @public
|
|
691
787
|
* <p>The target sacle-out policy for the connector.</p>
|
|
692
788
|
*/
|
|
693
789
|
scaleOutPolicy: ScaleOutPolicyUpdate | undefined;
|
|
@@ -711,11 +807,13 @@ export declare class BadRequestException extends __BaseException {
|
|
|
711
807
|
*/
|
|
712
808
|
export interface ProvisionedCapacity {
|
|
713
809
|
/**
|
|
810
|
+
* @public
|
|
714
811
|
* <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
|
|
715
812
|
* values are 1,2,4,8.</p>
|
|
716
813
|
*/
|
|
717
814
|
mcuCount: number | undefined;
|
|
718
815
|
/**
|
|
816
|
+
* @public
|
|
719
817
|
* <p>The number of workers that are allocated to the connector.</p>
|
|
720
818
|
*/
|
|
721
819
|
workerCount: number | undefined;
|
|
@@ -727,10 +825,12 @@ export interface ProvisionedCapacity {
|
|
|
727
825
|
*/
|
|
728
826
|
export interface Capacity {
|
|
729
827
|
/**
|
|
828
|
+
* @public
|
|
730
829
|
* <p>Information about the auto scaling parameters for the connector.</p>
|
|
731
830
|
*/
|
|
732
831
|
autoScaling?: AutoScaling;
|
|
733
832
|
/**
|
|
833
|
+
* @public
|
|
734
834
|
* <p>Details about a fixed capacity allocated to a connector.</p>
|
|
735
835
|
*/
|
|
736
836
|
provisionedCapacity?: ProvisionedCapacity;
|
|
@@ -741,11 +841,13 @@ export interface Capacity {
|
|
|
741
841
|
*/
|
|
742
842
|
export interface ProvisionedCapacityUpdate {
|
|
743
843
|
/**
|
|
844
|
+
* @public
|
|
744
845
|
* <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
|
|
745
846
|
* values are 1,2,4,8.</p>
|
|
746
847
|
*/
|
|
747
848
|
mcuCount: number | undefined;
|
|
748
849
|
/**
|
|
850
|
+
* @public
|
|
749
851
|
* <p>The number of workers that are allocated to the connector.</p>
|
|
750
852
|
*/
|
|
751
853
|
workerCount: number | undefined;
|
|
@@ -757,10 +859,12 @@ export interface ProvisionedCapacityUpdate {
|
|
|
757
859
|
*/
|
|
758
860
|
export interface CapacityUpdate {
|
|
759
861
|
/**
|
|
862
|
+
* @public
|
|
760
863
|
* <p>The target auto scaling setting.</p>
|
|
761
864
|
*/
|
|
762
865
|
autoScaling?: AutoScalingUpdate;
|
|
763
866
|
/**
|
|
867
|
+
* @public
|
|
764
868
|
* <p>The target settings for provisioned capacity.</p>
|
|
765
869
|
*/
|
|
766
870
|
provisionedCapacity?: ProvisionedCapacityUpdate;
|
|
@@ -771,10 +875,12 @@ export interface CapacityUpdate {
|
|
|
771
875
|
*/
|
|
772
876
|
export interface CloudWatchLogsLogDelivery {
|
|
773
877
|
/**
|
|
878
|
+
* @public
|
|
774
879
|
* <p>Whether log delivery to Amazon CloudWatch Logs is enabled.</p>
|
|
775
880
|
*/
|
|
776
881
|
enabled: boolean | undefined;
|
|
777
882
|
/**
|
|
883
|
+
* @public
|
|
778
884
|
* <p>The name of the CloudWatch log group that is the destination for log delivery.</p>
|
|
779
885
|
*/
|
|
780
886
|
logGroup?: string;
|
|
@@ -798,6 +904,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
798
904
|
*/
|
|
799
905
|
export interface KafkaCluster {
|
|
800
906
|
/**
|
|
907
|
+
* @public
|
|
801
908
|
* <p>The Apache Kafka cluster to which the connector is connected.</p>
|
|
802
909
|
*/
|
|
803
910
|
apacheKafkaCluster: ApacheKafkaCluster | undefined;
|
|
@@ -809,6 +916,7 @@ export interface KafkaCluster {
|
|
|
809
916
|
*/
|
|
810
917
|
export interface KafkaClusterClientAuthentication {
|
|
811
918
|
/**
|
|
919
|
+
* @public
|
|
812
920
|
* <p>The type of client authentication used to connect to the Apache Kafka cluster. Value
|
|
813
921
|
* NONE means that no client authentication is used.</p>
|
|
814
922
|
*/
|
|
@@ -820,6 +928,7 @@ export interface KafkaClusterClientAuthentication {
|
|
|
820
928
|
*/
|
|
821
929
|
export interface KafkaClusterEncryptionInTransit {
|
|
822
930
|
/**
|
|
931
|
+
* @public
|
|
823
932
|
* <p>The type of encryption in transit to the Apache Kafka cluster.</p>
|
|
824
933
|
*/
|
|
825
934
|
encryptionType: KafkaClusterEncryptionInTransitType | string | undefined;
|
|
@@ -830,11 +939,13 @@ export interface KafkaClusterEncryptionInTransit {
|
|
|
830
939
|
*/
|
|
831
940
|
export interface FirehoseLogDelivery {
|
|
832
941
|
/**
|
|
942
|
+
* @public
|
|
833
943
|
* <p>The name of the Kinesis Data Firehose delivery stream that is the destination for log
|
|
834
944
|
* delivery.</p>
|
|
835
945
|
*/
|
|
836
946
|
deliveryStream?: string;
|
|
837
947
|
/**
|
|
948
|
+
* @public
|
|
838
949
|
* <p>Specifies whether connector logs get delivered to Amazon Kinesis Data Firehose.</p>
|
|
839
950
|
*/
|
|
840
951
|
enabled: boolean | undefined;
|
|
@@ -845,14 +956,17 @@ export interface FirehoseLogDelivery {
|
|
|
845
956
|
*/
|
|
846
957
|
export interface S3LogDelivery {
|
|
847
958
|
/**
|
|
959
|
+
* @public
|
|
848
960
|
* <p>The name of the S3 bucket that is the destination for log delivery.</p>
|
|
849
961
|
*/
|
|
850
962
|
bucket?: string;
|
|
851
963
|
/**
|
|
964
|
+
* @public
|
|
852
965
|
* <p>Specifies whether connector logs get sent to the specified Amazon S3 destination.</p>
|
|
853
966
|
*/
|
|
854
967
|
enabled: boolean | undefined;
|
|
855
968
|
/**
|
|
969
|
+
* @public
|
|
856
970
|
* <p>The S3 prefix that is the destination for log delivery.</p>
|
|
857
971
|
*/
|
|
858
972
|
prefix?: string;
|
|
@@ -864,14 +978,17 @@ export interface S3LogDelivery {
|
|
|
864
978
|
*/
|
|
865
979
|
export interface WorkerLogDelivery {
|
|
866
980
|
/**
|
|
981
|
+
* @public
|
|
867
982
|
* <p>Details about delivering logs to Amazon CloudWatch Logs.</p>
|
|
868
983
|
*/
|
|
869
984
|
cloudWatchLogs?: CloudWatchLogsLogDelivery;
|
|
870
985
|
/**
|
|
986
|
+
* @public
|
|
871
987
|
* <p>Details about delivering logs to Amazon Kinesis Data Firehose.</p>
|
|
872
988
|
*/
|
|
873
989
|
firehose?: FirehoseLogDelivery;
|
|
874
990
|
/**
|
|
991
|
+
* @public
|
|
875
992
|
* <p>Details about delivering logs to Amazon S3.</p>
|
|
876
993
|
*/
|
|
877
994
|
s3?: S3LogDelivery;
|
|
@@ -882,6 +999,7 @@ export interface WorkerLogDelivery {
|
|
|
882
999
|
*/
|
|
883
1000
|
export interface LogDelivery {
|
|
884
1001
|
/**
|
|
1002
|
+
* @public
|
|
885
1003
|
* <p>The workers can send worker logs to different destination types. This configuration
|
|
886
1004
|
* specifies the details of these destinations.</p>
|
|
887
1005
|
*/
|
|
@@ -894,10 +1012,12 @@ export interface LogDelivery {
|
|
|
894
1012
|
*/
|
|
895
1013
|
export interface WorkerConfiguration {
|
|
896
1014
|
/**
|
|
1015
|
+
* @public
|
|
897
1016
|
* <p>The revision of the worker configuration.</p>
|
|
898
1017
|
*/
|
|
899
1018
|
revision: number | undefined;
|
|
900
1019
|
/**
|
|
1020
|
+
* @public
|
|
901
1021
|
* <p>The Amazon Resource Name (ARN) of the worker configuration.</p>
|
|
902
1022
|
*/
|
|
903
1023
|
workerConfigurationArn: string | undefined;
|
|
@@ -907,48 +1027,59 @@ export interface WorkerConfiguration {
|
|
|
907
1027
|
*/
|
|
908
1028
|
export interface CreateConnectorRequest {
|
|
909
1029
|
/**
|
|
1030
|
+
* @public
|
|
910
1031
|
* <p>Information about the capacity allocated to the connector. Exactly one of the two
|
|
911
1032
|
* properties must be specified.</p>
|
|
912
1033
|
*/
|
|
913
1034
|
capacity: Capacity | undefined;
|
|
914
1035
|
/**
|
|
1036
|
+
* @public
|
|
915
1037
|
* <p>A map of keys to values that represent the configuration for the connector.</p>
|
|
916
1038
|
*/
|
|
917
1039
|
connectorConfiguration: Record<string, string> | undefined;
|
|
918
1040
|
/**
|
|
1041
|
+
* @public
|
|
919
1042
|
* <p>A summary description of the connector.</p>
|
|
920
1043
|
*/
|
|
921
1044
|
connectorDescription?: string;
|
|
922
1045
|
/**
|
|
1046
|
+
* @public
|
|
923
1047
|
* <p>The name of the connector.</p>
|
|
924
1048
|
*/
|
|
925
1049
|
connectorName: string | undefined;
|
|
926
1050
|
/**
|
|
1051
|
+
* @public
|
|
927
1052
|
* <p>Specifies which Apache Kafka cluster to connect to.</p>
|
|
928
1053
|
*/
|
|
929
1054
|
kafkaCluster: KafkaCluster | undefined;
|
|
930
1055
|
/**
|
|
1056
|
+
* @public
|
|
931
1057
|
* <p>Details of the client authentication used by the Apache Kafka cluster.</p>
|
|
932
1058
|
*/
|
|
933
1059
|
kafkaClusterClientAuthentication: KafkaClusterClientAuthentication | undefined;
|
|
934
1060
|
/**
|
|
1061
|
+
* @public
|
|
935
1062
|
* <p>Details of encryption in transit to the Apache Kafka cluster.</p>
|
|
936
1063
|
*/
|
|
937
1064
|
kafkaClusterEncryptionInTransit: KafkaClusterEncryptionInTransit | undefined;
|
|
938
1065
|
/**
|
|
1066
|
+
* @public
|
|
939
1067
|
* <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka
|
|
940
1068
|
* cluster's version and the plugins.</p>
|
|
941
1069
|
*/
|
|
942
1070
|
kafkaConnectVersion: string | undefined;
|
|
943
1071
|
/**
|
|
1072
|
+
* @public
|
|
944
1073
|
* <p>Details about log delivery.</p>
|
|
945
1074
|
*/
|
|
946
1075
|
logDelivery?: LogDelivery;
|
|
947
1076
|
/**
|
|
1077
|
+
* @public
|
|
948
1078
|
* <p>Specifies which plugins to use for the connector.</p>
|
|
949
1079
|
*/
|
|
950
1080
|
plugins: Plugin[] | undefined;
|
|
951
1081
|
/**
|
|
1082
|
+
* @public
|
|
952
1083
|
* <p>The Amazon Resource Name (ARN) of the IAM role used by the connector to access the
|
|
953
1084
|
* Amazon Web Services resources that it needs. The types of resources depends on the logic of
|
|
954
1085
|
* the connector. For example, a connector that has Amazon S3 as a destination must have
|
|
@@ -956,6 +1087,7 @@ export interface CreateConnectorRequest {
|
|
|
956
1087
|
*/
|
|
957
1088
|
serviceExecutionRoleArn: string | undefined;
|
|
958
1089
|
/**
|
|
1090
|
+
* @public
|
|
959
1091
|
* <p>Specifies which worker configuration to use with the connector.</p>
|
|
960
1092
|
*/
|
|
961
1093
|
workerConfiguration?: WorkerConfiguration;
|
|
@@ -965,14 +1097,17 @@ export interface CreateConnectorRequest {
|
|
|
965
1097
|
*/
|
|
966
1098
|
export interface CreateConnectorResponse {
|
|
967
1099
|
/**
|
|
1100
|
+
* @public
|
|
968
1101
|
* <p>The Amazon Resource Name (ARN) that Amazon assigned to the connector.</p>
|
|
969
1102
|
*/
|
|
970
1103
|
connectorArn?: string;
|
|
971
1104
|
/**
|
|
1105
|
+
* @public
|
|
972
1106
|
* <p>The name of the connector.</p>
|
|
973
1107
|
*/
|
|
974
1108
|
connectorName?: string;
|
|
975
1109
|
/**
|
|
1110
|
+
* @public
|
|
976
1111
|
* <p>The state of the connector.</p>
|
|
977
1112
|
*/
|
|
978
1113
|
connectorState?: ConnectorState | string;
|
|
@@ -1060,14 +1195,17 @@ export declare class UnauthorizedException extends __BaseException {
|
|
|
1060
1195
|
*/
|
|
1061
1196
|
export interface S3Location {
|
|
1062
1197
|
/**
|
|
1198
|
+
* @public
|
|
1063
1199
|
* <p>The Amazon Resource Name (ARN) of an S3 bucket.</p>
|
|
1064
1200
|
*/
|
|
1065
1201
|
bucketArn: string | undefined;
|
|
1066
1202
|
/**
|
|
1203
|
+
* @public
|
|
1067
1204
|
* <p>The file key for an object in an S3 bucket.</p>
|
|
1068
1205
|
*/
|
|
1069
1206
|
fileKey: string | undefined;
|
|
1070
1207
|
/**
|
|
1208
|
+
* @public
|
|
1071
1209
|
* <p>The version of an object in an S3 bucket.</p>
|
|
1072
1210
|
*/
|
|
1073
1211
|
objectVersion?: string;
|
|
@@ -1078,6 +1216,7 @@ export interface S3Location {
|
|
|
1078
1216
|
*/
|
|
1079
1217
|
export interface CustomPluginLocation {
|
|
1080
1218
|
/**
|
|
1219
|
+
* @public
|
|
1081
1220
|
* <p>The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin
|
|
1082
1221
|
* file stored in Amazon S3.</p>
|
|
1083
1222
|
*/
|
|
@@ -1088,18 +1227,22 @@ export interface CustomPluginLocation {
|
|
|
1088
1227
|
*/
|
|
1089
1228
|
export interface CreateCustomPluginRequest {
|
|
1090
1229
|
/**
|
|
1230
|
+
* @public
|
|
1091
1231
|
* <p>The type of the plugin file.</p>
|
|
1092
1232
|
*/
|
|
1093
1233
|
contentType: CustomPluginContentType | string | undefined;
|
|
1094
1234
|
/**
|
|
1235
|
+
* @public
|
|
1095
1236
|
* <p>A summary description of the custom plugin.</p>
|
|
1096
1237
|
*/
|
|
1097
1238
|
description?: string;
|
|
1098
1239
|
/**
|
|
1240
|
+
* @public
|
|
1099
1241
|
* <p>Information about the location of a custom plugin.</p>
|
|
1100
1242
|
*/
|
|
1101
1243
|
location: CustomPluginLocation | undefined;
|
|
1102
1244
|
/**
|
|
1245
|
+
* @public
|
|
1103
1246
|
* <p>The name of the custom plugin.</p>
|
|
1104
1247
|
*/
|
|
1105
1248
|
name: string | undefined;
|
|
@@ -1109,18 +1252,22 @@ export interface CreateCustomPluginRequest {
|
|
|
1109
1252
|
*/
|
|
1110
1253
|
export interface CreateCustomPluginResponse {
|
|
1111
1254
|
/**
|
|
1255
|
+
* @public
|
|
1112
1256
|
* <p>The Amazon Resource Name (ARN) that Amazon assigned to the custom plugin.</p>
|
|
1113
1257
|
*/
|
|
1114
1258
|
customPluginArn?: string;
|
|
1115
1259
|
/**
|
|
1260
|
+
* @public
|
|
1116
1261
|
* <p>The state of the custom plugin.</p>
|
|
1117
1262
|
*/
|
|
1118
1263
|
customPluginState?: CustomPluginState | string;
|
|
1119
1264
|
/**
|
|
1265
|
+
* @public
|
|
1120
1266
|
* <p>The name of the custom plugin.</p>
|
|
1121
1267
|
*/
|
|
1122
1268
|
name?: string;
|
|
1123
1269
|
/**
|
|
1270
|
+
* @public
|
|
1124
1271
|
* <p>The revision of the custom plugin.</p>
|
|
1125
1272
|
*/
|
|
1126
1273
|
revision?: number;
|
|
@@ -1130,14 +1277,17 @@ export interface CreateCustomPluginResponse {
|
|
|
1130
1277
|
*/
|
|
1131
1278
|
export interface CreateWorkerConfigurationRequest {
|
|
1132
1279
|
/**
|
|
1280
|
+
* @public
|
|
1133
1281
|
* <p>A summary description of the worker configuration.</p>
|
|
1134
1282
|
*/
|
|
1135
1283
|
description?: string;
|
|
1136
1284
|
/**
|
|
1285
|
+
* @public
|
|
1137
1286
|
* <p>The name of the worker configuration.</p>
|
|
1138
1287
|
*/
|
|
1139
1288
|
name: string | undefined;
|
|
1140
1289
|
/**
|
|
1290
|
+
* @public
|
|
1141
1291
|
* <p>Base64 encoded contents of connect-distributed.properties file.</p>
|
|
1142
1292
|
*/
|
|
1143
1293
|
propertiesFileContent: string | undefined;
|
|
@@ -1147,18 +1297,22 @@ export interface CreateWorkerConfigurationRequest {
|
|
|
1147
1297
|
*/
|
|
1148
1298
|
export interface CreateWorkerConfigurationResponse {
|
|
1149
1299
|
/**
|
|
1300
|
+
* @public
|
|
1150
1301
|
* <p>The time that the worker configuration was created.</p>
|
|
1151
1302
|
*/
|
|
1152
1303
|
creationTime?: Date;
|
|
1153
1304
|
/**
|
|
1305
|
+
* @public
|
|
1154
1306
|
* <p>The latest revision of the worker configuration.</p>
|
|
1155
1307
|
*/
|
|
1156
1308
|
latestRevision?: WorkerConfigurationRevisionSummary;
|
|
1157
1309
|
/**
|
|
1310
|
+
* @public
|
|
1158
1311
|
* <p>The name of the worker configuration.</p>
|
|
1159
1312
|
*/
|
|
1160
1313
|
name?: string;
|
|
1161
1314
|
/**
|
|
1315
|
+
* @public
|
|
1162
1316
|
* <p>The Amazon Resource Name (ARN) that Amazon assigned to the worker configuration.</p>
|
|
1163
1317
|
*/
|
|
1164
1318
|
workerConfigurationArn?: string;
|
|
@@ -1168,10 +1322,12 @@ export interface CreateWorkerConfigurationResponse {
|
|
|
1168
1322
|
*/
|
|
1169
1323
|
export interface DeleteConnectorRequest {
|
|
1170
1324
|
/**
|
|
1325
|
+
* @public
|
|
1171
1326
|
* <p>The Amazon Resource Name (ARN) of the connector that you want to delete.</p>
|
|
1172
1327
|
*/
|
|
1173
1328
|
connectorArn: string | undefined;
|
|
1174
1329
|
/**
|
|
1330
|
+
* @public
|
|
1175
1331
|
* <p>The current version of the connector that you want to delete.</p>
|
|
1176
1332
|
*/
|
|
1177
1333
|
currentVersion?: string;
|
|
@@ -1181,10 +1337,12 @@ export interface DeleteConnectorRequest {
|
|
|
1181
1337
|
*/
|
|
1182
1338
|
export interface DeleteConnectorResponse {
|
|
1183
1339
|
/**
|
|
1340
|
+
* @public
|
|
1184
1341
|
* <p>The Amazon Resource Name (ARN) of the connector that you requested to delete.</p>
|
|
1185
1342
|
*/
|
|
1186
1343
|
connectorArn?: string;
|
|
1187
1344
|
/**
|
|
1345
|
+
* @public
|
|
1188
1346
|
* <p>The state of the connector that you requested to delete.</p>
|
|
1189
1347
|
*/
|
|
1190
1348
|
connectorState?: ConnectorState | string;
|
|
@@ -1194,6 +1352,7 @@ export interface DeleteConnectorResponse {
|
|
|
1194
1352
|
*/
|
|
1195
1353
|
export interface DeleteCustomPluginRequest {
|
|
1196
1354
|
/**
|
|
1355
|
+
* @public
|
|
1197
1356
|
* <p>The Amazon Resource Name (ARN) of the custom plugin that you want to delete.</p>
|
|
1198
1357
|
*/
|
|
1199
1358
|
customPluginArn: string | undefined;
|
|
@@ -1203,10 +1362,12 @@ export interface DeleteCustomPluginRequest {
|
|
|
1203
1362
|
*/
|
|
1204
1363
|
export interface DeleteCustomPluginResponse {
|
|
1205
1364
|
/**
|
|
1365
|
+
* @public
|
|
1206
1366
|
* <p>The Amazon Resource Name (ARN) of the custom plugin that you requested to delete.</p>
|
|
1207
1367
|
*/
|
|
1208
1368
|
customPluginArn?: string;
|
|
1209
1369
|
/**
|
|
1370
|
+
* @public
|
|
1210
1371
|
* <p>The state of the custom plugin.</p>
|
|
1211
1372
|
*/
|
|
1212
1373
|
customPluginState?: CustomPluginState | string;
|
|
@@ -1216,6 +1377,7 @@ export interface DeleteCustomPluginResponse {
|
|
|
1216
1377
|
*/
|
|
1217
1378
|
export interface DescribeConnectorRequest {
|
|
1218
1379
|
/**
|
|
1380
|
+
* @public
|
|
1219
1381
|
* <p>The Amazon Resource Name (ARN) of the connector that you want to describe.</p>
|
|
1220
1382
|
*/
|
|
1221
1383
|
connectorArn: string | undefined;
|
|
@@ -1226,10 +1388,12 @@ export interface DescribeConnectorRequest {
|
|
|
1226
1388
|
*/
|
|
1227
1389
|
export interface StateDescription {
|
|
1228
1390
|
/**
|
|
1391
|
+
* @public
|
|
1229
1392
|
* <p>A code that describes the state of a resource.</p>
|
|
1230
1393
|
*/
|
|
1231
1394
|
code?: string;
|
|
1232
1395
|
/**
|
|
1396
|
+
* @public
|
|
1233
1397
|
* <p>A message that describes the state of a resource.</p>
|
|
1234
1398
|
*/
|
|
1235
1399
|
message?: string;
|
|
@@ -1239,74 +1403,91 @@ export interface StateDescription {
|
|
|
1239
1403
|
*/
|
|
1240
1404
|
export interface DescribeConnectorResponse {
|
|
1241
1405
|
/**
|
|
1406
|
+
* @public
|
|
1242
1407
|
* <p>Information about the capacity of the connector, whether it is auto scaled or
|
|
1243
1408
|
* provisioned.</p>
|
|
1244
1409
|
*/
|
|
1245
1410
|
capacity?: CapacityDescription;
|
|
1246
1411
|
/**
|
|
1412
|
+
* @public
|
|
1247
1413
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
1248
1414
|
*/
|
|
1249
1415
|
connectorArn?: string;
|
|
1250
1416
|
/**
|
|
1417
|
+
* @public
|
|
1251
1418
|
* <p>A map of keys to values that represent the configuration for the connector.</p>
|
|
1252
1419
|
*/
|
|
1253
1420
|
connectorConfiguration?: Record<string, string>;
|
|
1254
1421
|
/**
|
|
1422
|
+
* @public
|
|
1255
1423
|
* <p>A summary description of the connector.</p>
|
|
1256
1424
|
*/
|
|
1257
1425
|
connectorDescription?: string;
|
|
1258
1426
|
/**
|
|
1427
|
+
* @public
|
|
1259
1428
|
* <p>The name of the connector.</p>
|
|
1260
1429
|
*/
|
|
1261
1430
|
connectorName?: string;
|
|
1262
1431
|
/**
|
|
1432
|
+
* @public
|
|
1263
1433
|
* <p>The state of the connector.</p>
|
|
1264
1434
|
*/
|
|
1265
1435
|
connectorState?: ConnectorState | string;
|
|
1266
1436
|
/**
|
|
1437
|
+
* @public
|
|
1267
1438
|
* <p>The time the connector was created.</p>
|
|
1268
1439
|
*/
|
|
1269
1440
|
creationTime?: Date;
|
|
1270
1441
|
/**
|
|
1442
|
+
* @public
|
|
1271
1443
|
* <p>The current version of the connector.</p>
|
|
1272
1444
|
*/
|
|
1273
1445
|
currentVersion?: string;
|
|
1274
1446
|
/**
|
|
1447
|
+
* @public
|
|
1275
1448
|
* <p>The Apache Kafka cluster that the connector is connected to.</p>
|
|
1276
1449
|
*/
|
|
1277
1450
|
kafkaCluster?: KafkaClusterDescription;
|
|
1278
1451
|
/**
|
|
1452
|
+
* @public
|
|
1279
1453
|
* <p>The type of client authentication used to connect to the Apache Kafka cluster. The value
|
|
1280
1454
|
* is NONE when no client authentication is used.</p>
|
|
1281
1455
|
*/
|
|
1282
1456
|
kafkaClusterClientAuthentication?: KafkaClusterClientAuthenticationDescription;
|
|
1283
1457
|
/**
|
|
1458
|
+
* @public
|
|
1284
1459
|
* <p>Details of encryption in transit to the Apache Kafka cluster.</p>
|
|
1285
1460
|
*/
|
|
1286
1461
|
kafkaClusterEncryptionInTransit?: KafkaClusterEncryptionInTransitDescription;
|
|
1287
1462
|
/**
|
|
1463
|
+
* @public
|
|
1288
1464
|
* <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka
|
|
1289
1465
|
* cluster's version and the plugins.</p>
|
|
1290
1466
|
*/
|
|
1291
1467
|
kafkaConnectVersion?: string;
|
|
1292
1468
|
/**
|
|
1469
|
+
* @public
|
|
1293
1470
|
* <p>Details about delivering logs to Amazon CloudWatch Logs.</p>
|
|
1294
1471
|
*/
|
|
1295
1472
|
logDelivery?: LogDeliveryDescription;
|
|
1296
1473
|
/**
|
|
1474
|
+
* @public
|
|
1297
1475
|
* <p>Specifies which plugins were used for this connector.</p>
|
|
1298
1476
|
*/
|
|
1299
1477
|
plugins?: PluginDescription[];
|
|
1300
1478
|
/**
|
|
1479
|
+
* @public
|
|
1301
1480
|
* <p>The Amazon Resource Name (ARN) of the IAM role used by the connector to access Amazon
|
|
1302
1481
|
* Web Services resources.</p>
|
|
1303
1482
|
*/
|
|
1304
1483
|
serviceExecutionRoleArn?: string;
|
|
1305
1484
|
/**
|
|
1485
|
+
* @public
|
|
1306
1486
|
* <p>Specifies which worker configuration was used for the connector.</p>
|
|
1307
1487
|
*/
|
|
1308
1488
|
workerConfiguration?: WorkerConfigurationDescription;
|
|
1309
1489
|
/**
|
|
1490
|
+
* @public
|
|
1310
1491
|
* <p>Details about the state of a connector.</p>
|
|
1311
1492
|
*/
|
|
1312
1493
|
stateDescription?: StateDescription;
|
|
@@ -1316,6 +1497,7 @@ export interface DescribeConnectorResponse {
|
|
|
1316
1497
|
*/
|
|
1317
1498
|
export interface DescribeCustomPluginRequest {
|
|
1318
1499
|
/**
|
|
1500
|
+
* @public
|
|
1319
1501
|
* <p>Returns information about a custom plugin.</p>
|
|
1320
1502
|
*/
|
|
1321
1503
|
customPluginArn: string | undefined;
|
|
@@ -1325,31 +1507,38 @@ export interface DescribeCustomPluginRequest {
|
|
|
1325
1507
|
*/
|
|
1326
1508
|
export interface DescribeCustomPluginResponse {
|
|
1327
1509
|
/**
|
|
1510
|
+
* @public
|
|
1328
1511
|
* <p>The time that the custom plugin was created.</p>
|
|
1329
1512
|
*/
|
|
1330
1513
|
creationTime?: Date;
|
|
1331
1514
|
/**
|
|
1515
|
+
* @public
|
|
1332
1516
|
* <p>The Amazon Resource Name (ARN) of the custom plugin.</p>
|
|
1333
1517
|
*/
|
|
1334
1518
|
customPluginArn?: string;
|
|
1335
1519
|
/**
|
|
1520
|
+
* @public
|
|
1336
1521
|
* <p>The state of the custom plugin.</p>
|
|
1337
1522
|
*/
|
|
1338
1523
|
customPluginState?: CustomPluginState | string;
|
|
1339
1524
|
/**
|
|
1525
|
+
* @public
|
|
1340
1526
|
* <p>The description of the custom plugin.</p>
|
|
1341
1527
|
*/
|
|
1342
1528
|
description?: string;
|
|
1343
1529
|
/**
|
|
1530
|
+
* @public
|
|
1344
1531
|
* <p>The latest successfully created revision of the custom plugin. If there are no
|
|
1345
1532
|
* successfully created revisions, this field will be absent.</p>
|
|
1346
1533
|
*/
|
|
1347
1534
|
latestRevision?: CustomPluginRevisionSummary;
|
|
1348
1535
|
/**
|
|
1536
|
+
* @public
|
|
1349
1537
|
* <p>The name of the custom plugin.</p>
|
|
1350
1538
|
*/
|
|
1351
1539
|
name?: string;
|
|
1352
1540
|
/**
|
|
1541
|
+
* @public
|
|
1353
1542
|
* <p>Details about the state of a custom plugin.</p>
|
|
1354
1543
|
*/
|
|
1355
1544
|
stateDescription?: StateDescription;
|
|
@@ -1359,6 +1548,7 @@ export interface DescribeCustomPluginResponse {
|
|
|
1359
1548
|
*/
|
|
1360
1549
|
export interface DescribeWorkerConfigurationRequest {
|
|
1361
1550
|
/**
|
|
1551
|
+
* @public
|
|
1362
1552
|
* <p>The Amazon Resource Name (ARN) of the worker configuration that you want to get
|
|
1363
1553
|
* information about.</p>
|
|
1364
1554
|
*/
|
|
@@ -1370,18 +1560,22 @@ export interface DescribeWorkerConfigurationRequest {
|
|
|
1370
1560
|
*/
|
|
1371
1561
|
export interface WorkerConfigurationRevisionDescription {
|
|
1372
1562
|
/**
|
|
1563
|
+
* @public
|
|
1373
1564
|
* <p>The time that the worker configuration was created.</p>
|
|
1374
1565
|
*/
|
|
1375
1566
|
creationTime?: Date;
|
|
1376
1567
|
/**
|
|
1568
|
+
* @public
|
|
1377
1569
|
* <p>The description of the worker configuration revision.</p>
|
|
1378
1570
|
*/
|
|
1379
1571
|
description?: string;
|
|
1380
1572
|
/**
|
|
1573
|
+
* @public
|
|
1381
1574
|
* <p>Base64 encoded contents of the connect-distributed.properties file.</p>
|
|
1382
1575
|
*/
|
|
1383
1576
|
propertiesFileContent?: string;
|
|
1384
1577
|
/**
|
|
1578
|
+
* @public
|
|
1385
1579
|
* <p>The description of a revision of the worker configuration.</p>
|
|
1386
1580
|
*/
|
|
1387
1581
|
revision?: number;
|
|
@@ -1391,22 +1585,27 @@ export interface WorkerConfigurationRevisionDescription {
|
|
|
1391
1585
|
*/
|
|
1392
1586
|
export interface DescribeWorkerConfigurationResponse {
|
|
1393
1587
|
/**
|
|
1588
|
+
* @public
|
|
1394
1589
|
* <p>The time that the worker configuration was created.</p>
|
|
1395
1590
|
*/
|
|
1396
1591
|
creationTime?: Date;
|
|
1397
1592
|
/**
|
|
1593
|
+
* @public
|
|
1398
1594
|
* <p>The description of the worker configuration.</p>
|
|
1399
1595
|
*/
|
|
1400
1596
|
description?: string;
|
|
1401
1597
|
/**
|
|
1598
|
+
* @public
|
|
1402
1599
|
* <p>The latest revision of the custom configuration.</p>
|
|
1403
1600
|
*/
|
|
1404
1601
|
latestRevision?: WorkerConfigurationRevisionDescription;
|
|
1405
1602
|
/**
|
|
1603
|
+
* @public
|
|
1406
1604
|
* <p>The name of the worker configuration.</p>
|
|
1407
1605
|
*/
|
|
1408
1606
|
name?: string;
|
|
1409
1607
|
/**
|
|
1608
|
+
* @public
|
|
1410
1609
|
* <p>The Amazon Resource Name (ARN) of the custom configuration.</p>
|
|
1411
1610
|
*/
|
|
1412
1611
|
workerConfigurationArn?: string;
|
|
@@ -1416,14 +1615,17 @@ export interface DescribeWorkerConfigurationResponse {
|
|
|
1416
1615
|
*/
|
|
1417
1616
|
export interface ListConnectorsRequest {
|
|
1418
1617
|
/**
|
|
1618
|
+
* @public
|
|
1419
1619
|
* <p>The name prefix that you want to use to search for and list connectors.</p>
|
|
1420
1620
|
*/
|
|
1421
1621
|
connectorNamePrefix?: string;
|
|
1422
1622
|
/**
|
|
1623
|
+
* @public
|
|
1423
1624
|
* <p>The maximum number of connectors to list in one response.</p>
|
|
1424
1625
|
*/
|
|
1425
1626
|
maxResults?: number;
|
|
1426
1627
|
/**
|
|
1628
|
+
* @public
|
|
1427
1629
|
* <p>If the response of a ListConnectors operation is truncated, it will include a NextToken.
|
|
1428
1630
|
* Send this NextToken in a subsequent request to continue listing from where the previous
|
|
1429
1631
|
* operation left off.</p>
|
|
@@ -1435,10 +1637,12 @@ export interface ListConnectorsRequest {
|
|
|
1435
1637
|
*/
|
|
1436
1638
|
export interface ListConnectorsResponse {
|
|
1437
1639
|
/**
|
|
1640
|
+
* @public
|
|
1438
1641
|
* <p>An array of connector descriptions.</p>
|
|
1439
1642
|
*/
|
|
1440
1643
|
connectors?: ConnectorSummary[];
|
|
1441
1644
|
/**
|
|
1645
|
+
* @public
|
|
1442
1646
|
* <p>If the response of a ListConnectors operation is truncated, it will include a NextToken.
|
|
1443
1647
|
* Send this NextToken in a subsequent request to continue listing from where it left
|
|
1444
1648
|
* off.</p>
|
|
@@ -1450,10 +1654,12 @@ export interface ListConnectorsResponse {
|
|
|
1450
1654
|
*/
|
|
1451
1655
|
export interface ListCustomPluginsRequest {
|
|
1452
1656
|
/**
|
|
1657
|
+
* @public
|
|
1453
1658
|
* <p>The maximum number of custom plugins to list in one response.</p>
|
|
1454
1659
|
*/
|
|
1455
1660
|
maxResults?: number;
|
|
1456
1661
|
/**
|
|
1662
|
+
* @public
|
|
1457
1663
|
* <p>If the response of a ListCustomPlugins operation is truncated, it will include a
|
|
1458
1664
|
* NextToken. Send this NextToken in a subsequent request to continue listing from where the
|
|
1459
1665
|
* previous operation left off.</p>
|
|
@@ -1465,10 +1671,12 @@ export interface ListCustomPluginsRequest {
|
|
|
1465
1671
|
*/
|
|
1466
1672
|
export interface ListCustomPluginsResponse {
|
|
1467
1673
|
/**
|
|
1674
|
+
* @public
|
|
1468
1675
|
* <p>An array of custom plugin descriptions.</p>
|
|
1469
1676
|
*/
|
|
1470
1677
|
customPlugins?: CustomPluginSummary[];
|
|
1471
1678
|
/**
|
|
1679
|
+
* @public
|
|
1472
1680
|
* <p>If the response of a ListCustomPlugins operation is truncated, it will include a
|
|
1473
1681
|
* NextToken. Send this NextToken in a subsequent request to continue listing from where the
|
|
1474
1682
|
* previous operation left off.</p>
|
|
@@ -1480,10 +1688,12 @@ export interface ListCustomPluginsResponse {
|
|
|
1480
1688
|
*/
|
|
1481
1689
|
export interface ListWorkerConfigurationsRequest {
|
|
1482
1690
|
/**
|
|
1691
|
+
* @public
|
|
1483
1692
|
* <p>The maximum number of worker configurations to list in one response.</p>
|
|
1484
1693
|
*/
|
|
1485
1694
|
maxResults?: number;
|
|
1486
1695
|
/**
|
|
1696
|
+
* @public
|
|
1487
1697
|
* <p>If the response of a ListWorkerConfigurations operation is truncated, it will include a
|
|
1488
1698
|
* NextToken. Send this NextToken in a subsequent request to continue listing from where the
|
|
1489
1699
|
* previous operation left off.</p>
|
|
@@ -1495,12 +1705,14 @@ export interface ListWorkerConfigurationsRequest {
|
|
|
1495
1705
|
*/
|
|
1496
1706
|
export interface ListWorkerConfigurationsResponse {
|
|
1497
1707
|
/**
|
|
1708
|
+
* @public
|
|
1498
1709
|
* <p>If the response of a ListWorkerConfigurations operation is truncated, it will include a
|
|
1499
1710
|
* NextToken. Send this NextToken in a subsequent request to continue listing from where the
|
|
1500
1711
|
* previous operation left off.</p>
|
|
1501
1712
|
*/
|
|
1502
1713
|
nextToken?: string;
|
|
1503
1714
|
/**
|
|
1715
|
+
* @public
|
|
1504
1716
|
* <p>An array of worker configuration descriptions.</p>
|
|
1505
1717
|
*/
|
|
1506
1718
|
workerConfigurations?: WorkerConfigurationSummary[];
|
|
@@ -1510,14 +1722,17 @@ export interface ListWorkerConfigurationsResponse {
|
|
|
1510
1722
|
*/
|
|
1511
1723
|
export interface UpdateConnectorRequest {
|
|
1512
1724
|
/**
|
|
1725
|
+
* @public
|
|
1513
1726
|
* <p>The target capacity.</p>
|
|
1514
1727
|
*/
|
|
1515
1728
|
capacity: CapacityUpdate | undefined;
|
|
1516
1729
|
/**
|
|
1730
|
+
* @public
|
|
1517
1731
|
* <p>The Amazon Resource Name (ARN) of the connector that you want to update.</p>
|
|
1518
1732
|
*/
|
|
1519
1733
|
connectorArn: string | undefined;
|
|
1520
1734
|
/**
|
|
1735
|
+
* @public
|
|
1521
1736
|
* <p>The current version of the connector that you want to update.</p>
|
|
1522
1737
|
*/
|
|
1523
1738
|
currentVersion: string | undefined;
|
|
@@ -1527,10 +1742,12 @@ export interface UpdateConnectorRequest {
|
|
|
1527
1742
|
*/
|
|
1528
1743
|
export interface UpdateConnectorResponse {
|
|
1529
1744
|
/**
|
|
1745
|
+
* @public
|
|
1530
1746
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
1531
1747
|
*/
|
|
1532
1748
|
connectorArn?: string;
|
|
1533
1749
|
/**
|
|
1750
|
+
* @public
|
|
1534
1751
|
* <p>The state of the connector.</p>
|
|
1535
1752
|
*/
|
|
1536
1753
|
connectorState?: ConnectorState | string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kafkaconnect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kafkaconnect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.382.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.382.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.382.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|