@aws-sdk/client-kafkaconnect 3.687.0 → 3.691.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 +172 -172
- package/dist-types/ts3.4/models/models_0.d.ts +180 -172
- package/package.json +7 -7
|
@@ -10,7 +10,7 @@ export interface ScaleInPolicyDescription {
|
|
|
10
10
|
* to be triggered.</p>
|
|
11
11
|
* @public
|
|
12
12
|
*/
|
|
13
|
-
cpuUtilizationPercentage?: number;
|
|
13
|
+
cpuUtilizationPercentage?: number | undefined;
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* <p>The description of the scale-out policy for the connector.</p>
|
|
@@ -22,7 +22,7 @@ export interface ScaleOutPolicyDescription {
|
|
|
22
22
|
* triggered.</p>
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
cpuUtilizationPercentage?: number;
|
|
25
|
+
cpuUtilizationPercentage?: number | undefined;
|
|
26
26
|
}
|
|
27
27
|
/**
|
|
28
28
|
* <p>Information about the auto scaling parameters for the connector.</p>
|
|
@@ -33,28 +33,28 @@ export interface AutoScalingDescription {
|
|
|
33
33
|
* <p>The maximum number of workers allocated to the connector.</p>
|
|
34
34
|
* @public
|
|
35
35
|
*/
|
|
36
|
-
maxWorkerCount?: number;
|
|
36
|
+
maxWorkerCount?: number | undefined;
|
|
37
37
|
/**
|
|
38
38
|
* <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
|
|
39
39
|
* values are 1,2,4,8.</p>
|
|
40
40
|
* @public
|
|
41
41
|
*/
|
|
42
|
-
mcuCount?: number;
|
|
42
|
+
mcuCount?: number | undefined;
|
|
43
43
|
/**
|
|
44
44
|
* <p>The minimum number of workers allocated to the connector.</p>
|
|
45
45
|
* @public
|
|
46
46
|
*/
|
|
47
|
-
minWorkerCount?: number;
|
|
47
|
+
minWorkerCount?: number | undefined;
|
|
48
48
|
/**
|
|
49
49
|
* <p>The sacle-in policy for the connector.</p>
|
|
50
50
|
* @public
|
|
51
51
|
*/
|
|
52
|
-
scaleInPolicy?: ScaleInPolicyDescription;
|
|
52
|
+
scaleInPolicy?: ScaleInPolicyDescription | undefined;
|
|
53
53
|
/**
|
|
54
54
|
* <p>The sacle-out policy for the connector.></p>
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
scaleOutPolicy?: ScaleOutPolicyDescription;
|
|
57
|
+
scaleOutPolicy?: ScaleOutPolicyDescription | undefined;
|
|
58
58
|
}
|
|
59
59
|
/**
|
|
60
60
|
* <p>The description of a connector's provisioned capacity.</p>
|
|
@@ -66,12 +66,12 @@ export interface ProvisionedCapacityDescription {
|
|
|
66
66
|
* values are 1,2,4,8.</p>
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
|
-
mcuCount?: number;
|
|
69
|
+
mcuCount?: number | undefined;
|
|
70
70
|
/**
|
|
71
71
|
* <p>The number of workers that are allocated to the connector.</p>
|
|
72
72
|
* @public
|
|
73
73
|
*/
|
|
74
|
-
workerCount?: number;
|
|
74
|
+
workerCount?: number | undefined;
|
|
75
75
|
}
|
|
76
76
|
/**
|
|
77
77
|
* <p>A description of the connector's capacity.</p>
|
|
@@ -82,12 +82,12 @@ export interface CapacityDescription {
|
|
|
82
82
|
* <p>Describes the connector's auto scaling capacity.</p>
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
|
-
autoScaling?: AutoScalingDescription;
|
|
85
|
+
autoScaling?: AutoScalingDescription | undefined;
|
|
86
86
|
/**
|
|
87
87
|
* <p>Describes a connector's provisioned capacity.</p>
|
|
88
88
|
* @public
|
|
89
89
|
*/
|
|
90
|
-
provisionedCapacity?: ProvisionedCapacityDescription;
|
|
90
|
+
provisionedCapacity?: ProvisionedCapacityDescription | undefined;
|
|
91
91
|
}
|
|
92
92
|
/**
|
|
93
93
|
* @public
|
|
@@ -113,12 +113,12 @@ export interface VpcDescription {
|
|
|
113
113
|
* <p>The security groups for the connector.</p>
|
|
114
114
|
* @public
|
|
115
115
|
*/
|
|
116
|
-
securityGroups?: string[];
|
|
116
|
+
securityGroups?: string[] | undefined;
|
|
117
117
|
/**
|
|
118
118
|
* <p>The subnets for the connector.</p>
|
|
119
119
|
* @public
|
|
120
120
|
*/
|
|
121
|
-
subnets?: string[];
|
|
121
|
+
subnets?: string[] | undefined;
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
124
|
* <p>The description of the Apache Kafka cluster to which the connector is connected.</p>
|
|
@@ -129,13 +129,13 @@ export interface ApacheKafkaClusterDescription {
|
|
|
129
129
|
* <p>The bootstrap servers of the cluster.</p>
|
|
130
130
|
* @public
|
|
131
131
|
*/
|
|
132
|
-
bootstrapServers?: string;
|
|
132
|
+
bootstrapServers?: string | undefined;
|
|
133
133
|
/**
|
|
134
134
|
* <p>Details of an Amazon VPC which has network connectivity to the Apache Kafka
|
|
135
135
|
* cluster.</p>
|
|
136
136
|
* @public
|
|
137
137
|
*/
|
|
138
|
-
vpc?: VpcDescription;
|
|
138
|
+
vpc?: VpcDescription | undefined;
|
|
139
139
|
}
|
|
140
140
|
/**
|
|
141
141
|
* <p>Details of how to connect to the Apache Kafka cluster.</p>
|
|
@@ -146,7 +146,7 @@ export interface KafkaClusterDescription {
|
|
|
146
146
|
* <p>The Apache Kafka cluster to which the connector is connected.</p>
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
apacheKafkaCluster?: ApacheKafkaClusterDescription;
|
|
149
|
+
apacheKafkaCluster?: ApacheKafkaClusterDescription | undefined;
|
|
150
150
|
}
|
|
151
151
|
/**
|
|
152
152
|
* @public
|
|
@@ -171,7 +171,7 @@ export interface KafkaClusterClientAuthenticationDescription {
|
|
|
171
171
|
* NONE means that no client authentication is used.</p>
|
|
172
172
|
* @public
|
|
173
173
|
*/
|
|
174
|
-
authenticationType?: KafkaClusterClientAuthenticationType;
|
|
174
|
+
authenticationType?: KafkaClusterClientAuthenticationType | undefined;
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
177
177
|
* @public
|
|
@@ -194,7 +194,7 @@ export interface KafkaClusterEncryptionInTransitDescription {
|
|
|
194
194
|
* <p>The type of encryption in transit to the Apache Kafka cluster.</p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
encryptionType?: KafkaClusterEncryptionInTransitType;
|
|
197
|
+
encryptionType?: KafkaClusterEncryptionInTransitType | undefined;
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
200
|
* <p>A description of the log delivery settings.</p>
|
|
@@ -205,12 +205,12 @@ export interface CloudWatchLogsLogDeliveryDescription {
|
|
|
205
205
|
* <p>Whether log delivery to Amazon CloudWatch Logs is enabled.</p>
|
|
206
206
|
* @public
|
|
207
207
|
*/
|
|
208
|
-
enabled?: boolean;
|
|
208
|
+
enabled?: boolean | undefined;
|
|
209
209
|
/**
|
|
210
210
|
* <p>The name of the CloudWatch log group that is the destination for log delivery.</p>
|
|
211
211
|
* @public
|
|
212
212
|
*/
|
|
213
|
-
logGroup?: string;
|
|
213
|
+
logGroup?: string | undefined;
|
|
214
214
|
}
|
|
215
215
|
/**
|
|
216
216
|
* <p>A description of the settings for delivering logs to Amazon Kinesis Data
|
|
@@ -223,12 +223,12 @@ export interface FirehoseLogDeliveryDescription {
|
|
|
223
223
|
* delivery.</p>
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
226
|
-
deliveryStream?: string;
|
|
226
|
+
deliveryStream?: string | undefined;
|
|
227
227
|
/**
|
|
228
228
|
* <p>Specifies whether connector logs get delivered to Amazon Kinesis Data Firehose.</p>
|
|
229
229
|
* @public
|
|
230
230
|
*/
|
|
231
|
-
enabled?: boolean;
|
|
231
|
+
enabled?: boolean | undefined;
|
|
232
232
|
}
|
|
233
233
|
/**
|
|
234
234
|
* <p>The description of the details about delivering logs to Amazon S3.</p>
|
|
@@ -239,17 +239,17 @@ export interface S3LogDeliveryDescription {
|
|
|
239
239
|
* <p>The name of the S3 bucket that is the destination for log delivery.</p>
|
|
240
240
|
* @public
|
|
241
241
|
*/
|
|
242
|
-
bucket?: string;
|
|
242
|
+
bucket?: string | undefined;
|
|
243
243
|
/**
|
|
244
244
|
* <p>Specifies whether connector logs get sent to the specified Amazon S3 destination.</p>
|
|
245
245
|
* @public
|
|
246
246
|
*/
|
|
247
|
-
enabled?: boolean;
|
|
247
|
+
enabled?: boolean | undefined;
|
|
248
248
|
/**
|
|
249
249
|
* <p>The S3 prefix that is the destination for log delivery.</p>
|
|
250
250
|
* @public
|
|
251
251
|
*/
|
|
252
|
-
prefix?: string;
|
|
252
|
+
prefix?: string | undefined;
|
|
253
253
|
}
|
|
254
254
|
/**
|
|
255
255
|
* <p>Workers can send worker logs to different destination types. This configuration
|
|
@@ -261,17 +261,17 @@ export interface WorkerLogDeliveryDescription {
|
|
|
261
261
|
* <p>Details about delivering logs to Amazon CloudWatch Logs.</p>
|
|
262
262
|
* @public
|
|
263
263
|
*/
|
|
264
|
-
cloudWatchLogs?: CloudWatchLogsLogDeliveryDescription;
|
|
264
|
+
cloudWatchLogs?: CloudWatchLogsLogDeliveryDescription | undefined;
|
|
265
265
|
/**
|
|
266
266
|
* <p>Details about delivering logs to Amazon Kinesis Data Firehose.</p>
|
|
267
267
|
* @public
|
|
268
268
|
*/
|
|
269
|
-
firehose?: FirehoseLogDeliveryDescription;
|
|
269
|
+
firehose?: FirehoseLogDeliveryDescription | undefined;
|
|
270
270
|
/**
|
|
271
271
|
* <p>Details about delivering logs to Amazon S3.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
s3?: S3LogDeliveryDescription;
|
|
274
|
+
s3?: S3LogDeliveryDescription | undefined;
|
|
275
275
|
}
|
|
276
276
|
/**
|
|
277
277
|
* <p>The description of the log delivery settings.</p>
|
|
@@ -283,7 +283,7 @@ export interface LogDeliveryDescription {
|
|
|
283
283
|
* specifies the details of these destinations.</p>
|
|
284
284
|
* @public
|
|
285
285
|
*/
|
|
286
|
-
workerLogDelivery?: WorkerLogDeliveryDescription;
|
|
286
|
+
workerLogDelivery?: WorkerLogDeliveryDescription | undefined;
|
|
287
287
|
}
|
|
288
288
|
/**
|
|
289
289
|
* <p>Details about a custom plugin.</p>
|
|
@@ -294,12 +294,12 @@ export interface CustomPluginDescription {
|
|
|
294
294
|
* <p>The Amazon Resource Name (ARN) of the custom plugin.</p>
|
|
295
295
|
* @public
|
|
296
296
|
*/
|
|
297
|
-
customPluginArn?: string;
|
|
297
|
+
customPluginArn?: string | undefined;
|
|
298
298
|
/**
|
|
299
299
|
* <p>The revision of the custom plugin.</p>
|
|
300
300
|
* @public
|
|
301
301
|
*/
|
|
302
|
-
revision?: number;
|
|
302
|
+
revision?: number | undefined;
|
|
303
303
|
}
|
|
304
304
|
/**
|
|
305
305
|
* <p>The description of the plugin.</p>
|
|
@@ -310,7 +310,7 @@ export interface PluginDescription {
|
|
|
310
310
|
* <p>Details about a custom plugin.</p>
|
|
311
311
|
* @public
|
|
312
312
|
*/
|
|
313
|
-
customPlugin?: CustomPluginDescription;
|
|
313
|
+
customPlugin?: CustomPluginDescription | undefined;
|
|
314
314
|
}
|
|
315
315
|
/**
|
|
316
316
|
* <p>The description of the worker configuration.</p>
|
|
@@ -321,12 +321,12 @@ export interface WorkerConfigurationDescription {
|
|
|
321
321
|
* <p>The revision of the worker configuration.</p>
|
|
322
322
|
* @public
|
|
323
323
|
*/
|
|
324
|
-
revision?: number;
|
|
324
|
+
revision?: number | undefined;
|
|
325
325
|
/**
|
|
326
326
|
* <p>The Amazon Resource Name (ARN) of the worker configuration.</p>
|
|
327
327
|
* @public
|
|
328
328
|
*/
|
|
329
|
-
workerConfigurationArn?: string;
|
|
329
|
+
workerConfigurationArn?: string | undefined;
|
|
330
330
|
}
|
|
331
331
|
/**
|
|
332
332
|
* <p>Summary of a connector.</p>
|
|
@@ -337,80 +337,80 @@ export interface ConnectorSummary {
|
|
|
337
337
|
* <p>The connector's compute capacity settings.</p>
|
|
338
338
|
* @public
|
|
339
339
|
*/
|
|
340
|
-
capacity?: CapacityDescription;
|
|
340
|
+
capacity?: CapacityDescription | undefined;
|
|
341
341
|
/**
|
|
342
342
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
343
343
|
* @public
|
|
344
344
|
*/
|
|
345
|
-
connectorArn?: string;
|
|
345
|
+
connectorArn?: string | undefined;
|
|
346
346
|
/**
|
|
347
347
|
* <p>The description of the connector.</p>
|
|
348
348
|
* @public
|
|
349
349
|
*/
|
|
350
|
-
connectorDescription?: string;
|
|
350
|
+
connectorDescription?: string | undefined;
|
|
351
351
|
/**
|
|
352
352
|
* <p>The name of the connector.</p>
|
|
353
353
|
* @public
|
|
354
354
|
*/
|
|
355
|
-
connectorName?: string;
|
|
355
|
+
connectorName?: string | undefined;
|
|
356
356
|
/**
|
|
357
357
|
* <p>The state of the connector.</p>
|
|
358
358
|
* @public
|
|
359
359
|
*/
|
|
360
|
-
connectorState?: ConnectorState;
|
|
360
|
+
connectorState?: ConnectorState | undefined;
|
|
361
361
|
/**
|
|
362
362
|
* <p>The time that the connector was created.</p>
|
|
363
363
|
* @public
|
|
364
364
|
*/
|
|
365
|
-
creationTime?: Date;
|
|
365
|
+
creationTime?: Date | undefined;
|
|
366
366
|
/**
|
|
367
367
|
* <p>The current version of the connector.</p>
|
|
368
368
|
* @public
|
|
369
369
|
*/
|
|
370
|
-
currentVersion?: string;
|
|
370
|
+
currentVersion?: string | undefined;
|
|
371
371
|
/**
|
|
372
372
|
* <p>The details of the Apache Kafka cluster to which the connector is connected.</p>
|
|
373
373
|
* @public
|
|
374
374
|
*/
|
|
375
|
-
kafkaCluster?: KafkaClusterDescription;
|
|
375
|
+
kafkaCluster?: KafkaClusterDescription | undefined;
|
|
376
376
|
/**
|
|
377
377
|
* <p>The type of client authentication used to connect to the Apache Kafka cluster. The value
|
|
378
378
|
* is NONE when no client authentication is used.</p>
|
|
379
379
|
* @public
|
|
380
380
|
*/
|
|
381
|
-
kafkaClusterClientAuthentication?: KafkaClusterClientAuthenticationDescription;
|
|
381
|
+
kafkaClusterClientAuthentication?: KafkaClusterClientAuthenticationDescription | undefined;
|
|
382
382
|
/**
|
|
383
383
|
* <p>Details of encryption in transit to the Apache Kafka cluster.</p>
|
|
384
384
|
* @public
|
|
385
385
|
*/
|
|
386
|
-
kafkaClusterEncryptionInTransit?: KafkaClusterEncryptionInTransitDescription;
|
|
386
|
+
kafkaClusterEncryptionInTransit?: KafkaClusterEncryptionInTransitDescription | undefined;
|
|
387
387
|
/**
|
|
388
388
|
* <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka
|
|
389
389
|
* cluster's version and the plugins.</p>
|
|
390
390
|
* @public
|
|
391
391
|
*/
|
|
392
|
-
kafkaConnectVersion?: string;
|
|
392
|
+
kafkaConnectVersion?: string | undefined;
|
|
393
393
|
/**
|
|
394
394
|
* <p>The settings for delivering connector logs to Amazon CloudWatch Logs.</p>
|
|
395
395
|
* @public
|
|
396
396
|
*/
|
|
397
|
-
logDelivery?: LogDeliveryDescription;
|
|
397
|
+
logDelivery?: LogDeliveryDescription | undefined;
|
|
398
398
|
/**
|
|
399
399
|
* <p>Specifies which plugins were used for this connector.</p>
|
|
400
400
|
* @public
|
|
401
401
|
*/
|
|
402
|
-
plugins?: PluginDescription[];
|
|
402
|
+
plugins?: PluginDescription[] | undefined;
|
|
403
403
|
/**
|
|
404
404
|
* <p>The Amazon Resource Name (ARN) of the IAM role used by the connector to access Amazon
|
|
405
405
|
* Web Services resources.</p>
|
|
406
406
|
* @public
|
|
407
407
|
*/
|
|
408
|
-
serviceExecutionRoleArn?: string;
|
|
408
|
+
serviceExecutionRoleArn?: string | undefined;
|
|
409
409
|
/**
|
|
410
410
|
* <p>The worker configurations that are in use with the connector.</p>
|
|
411
411
|
* @public
|
|
412
412
|
*/
|
|
413
|
-
workerConfiguration?: WorkerConfigurationDescription;
|
|
413
|
+
workerConfiguration?: WorkerConfigurationDescription | undefined;
|
|
414
414
|
}
|
|
415
415
|
/**
|
|
416
416
|
* @public
|
|
@@ -450,12 +450,12 @@ export interface CustomPluginFileDescription {
|
|
|
450
450
|
* file.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
fileMd5?: string;
|
|
453
|
+
fileMd5?: string | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>The size in bytes of the custom plugin file. You can use it to validate the file.</p>
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
fileSize?: number;
|
|
458
|
+
fileSize?: number | undefined;
|
|
459
459
|
}
|
|
460
460
|
/**
|
|
461
461
|
* <p>The description of the location of an object in Amazon S3.</p>
|
|
@@ -466,17 +466,17 @@ export interface S3LocationDescription {
|
|
|
466
466
|
* <p>The Amazon Resource Name (ARN) of an S3 bucket.</p>
|
|
467
467
|
* @public
|
|
468
468
|
*/
|
|
469
|
-
bucketArn?: string;
|
|
469
|
+
bucketArn?: string | undefined;
|
|
470
470
|
/**
|
|
471
471
|
* <p>The file key for an object in an S3 bucket.</p>
|
|
472
472
|
* @public
|
|
473
473
|
*/
|
|
474
|
-
fileKey?: string;
|
|
474
|
+
fileKey?: string | undefined;
|
|
475
475
|
/**
|
|
476
476
|
* <p>The version of an object in an S3 bucket.</p>
|
|
477
477
|
* @public
|
|
478
478
|
*/
|
|
479
|
-
objectVersion?: string;
|
|
479
|
+
objectVersion?: string | undefined;
|
|
480
480
|
}
|
|
481
481
|
/**
|
|
482
482
|
* <p>Information about the location of a custom plugin.</p>
|
|
@@ -488,7 +488,7 @@ export interface CustomPluginLocationDescription {
|
|
|
488
488
|
* file stored in Amazon S3.</p>
|
|
489
489
|
* @public
|
|
490
490
|
*/
|
|
491
|
-
s3Location?: S3LocationDescription;
|
|
491
|
+
s3Location?: S3LocationDescription | undefined;
|
|
492
492
|
}
|
|
493
493
|
/**
|
|
494
494
|
* <p>Details about the revision of a custom plugin.</p>
|
|
@@ -499,32 +499,32 @@ export interface CustomPluginRevisionSummary {
|
|
|
499
499
|
* <p>The format of the plugin file.</p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
contentType?: CustomPluginContentType;
|
|
502
|
+
contentType?: CustomPluginContentType | undefined;
|
|
503
503
|
/**
|
|
504
504
|
* <p>The time that the custom plugin was created.</p>
|
|
505
505
|
* @public
|
|
506
506
|
*/
|
|
507
|
-
creationTime?: Date;
|
|
507
|
+
creationTime?: Date | undefined;
|
|
508
508
|
/**
|
|
509
509
|
* <p>The description of the custom plugin.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
description?: string;
|
|
512
|
+
description?: string | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>Details about the custom plugin file.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
fileDescription?: CustomPluginFileDescription;
|
|
517
|
+
fileDescription?: CustomPluginFileDescription | undefined;
|
|
518
518
|
/**
|
|
519
519
|
* <p>Information about the location of the custom plugin.</p>
|
|
520
520
|
* @public
|
|
521
521
|
*/
|
|
522
|
-
location?: CustomPluginLocationDescription;
|
|
522
|
+
location?: CustomPluginLocationDescription | undefined;
|
|
523
523
|
/**
|
|
524
524
|
* <p>The revision of the custom plugin.</p>
|
|
525
525
|
* @public
|
|
526
526
|
*/
|
|
527
|
-
revision?: number;
|
|
527
|
+
revision?: number | undefined;
|
|
528
528
|
}
|
|
529
529
|
/**
|
|
530
530
|
* <p>A summary of the custom plugin.</p>
|
|
@@ -535,32 +535,32 @@ export interface CustomPluginSummary {
|
|
|
535
535
|
* <p>The time that the custom plugin was created.</p>
|
|
536
536
|
* @public
|
|
537
537
|
*/
|
|
538
|
-
creationTime?: Date;
|
|
538
|
+
creationTime?: Date | undefined;
|
|
539
539
|
/**
|
|
540
540
|
* <p>The Amazon Resource Name (ARN) of the custom plugin.</p>
|
|
541
541
|
* @public
|
|
542
542
|
*/
|
|
543
|
-
customPluginArn?: string;
|
|
543
|
+
customPluginArn?: string | undefined;
|
|
544
544
|
/**
|
|
545
545
|
* <p>The state of the custom plugin.</p>
|
|
546
546
|
* @public
|
|
547
547
|
*/
|
|
548
|
-
customPluginState?: CustomPluginState;
|
|
548
|
+
customPluginState?: CustomPluginState | undefined;
|
|
549
549
|
/**
|
|
550
550
|
* <p>A description of the custom plugin.</p>
|
|
551
551
|
* @public
|
|
552
552
|
*/
|
|
553
|
-
description?: string;
|
|
553
|
+
description?: string | undefined;
|
|
554
554
|
/**
|
|
555
555
|
* <p>The latest revision of the custom plugin.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
latestRevision?: CustomPluginRevisionSummary;
|
|
558
|
+
latestRevision?: CustomPluginRevisionSummary | undefined;
|
|
559
559
|
/**
|
|
560
560
|
* <p>The name of the custom plugin.</p>
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
name?: string;
|
|
563
|
+
name?: string | undefined;
|
|
564
564
|
}
|
|
565
565
|
/**
|
|
566
566
|
* <p>A plugin is an Amazon Web Services resource that contains the code that defines a connector's logic.</p>
|
|
@@ -598,17 +598,17 @@ export interface WorkerConfigurationRevisionSummary {
|
|
|
598
598
|
* <p>The time that a worker configuration revision was created.</p>
|
|
599
599
|
* @public
|
|
600
600
|
*/
|
|
601
|
-
creationTime?: Date;
|
|
601
|
+
creationTime?: Date | undefined;
|
|
602
602
|
/**
|
|
603
603
|
* <p>The description of a worker configuration revision.</p>
|
|
604
604
|
* @public
|
|
605
605
|
*/
|
|
606
|
-
description?: string;
|
|
606
|
+
description?: string | undefined;
|
|
607
607
|
/**
|
|
608
608
|
* <p>The revision of a worker configuration.</p>
|
|
609
609
|
* @public
|
|
610
610
|
*/
|
|
611
|
-
revision?: number;
|
|
611
|
+
revision?: number | undefined;
|
|
612
612
|
}
|
|
613
613
|
/**
|
|
614
614
|
* @public
|
|
@@ -631,32 +631,32 @@ export interface WorkerConfigurationSummary {
|
|
|
631
631
|
* <p>The time that a worker configuration was created.</p>
|
|
632
632
|
* @public
|
|
633
633
|
*/
|
|
634
|
-
creationTime?: Date;
|
|
634
|
+
creationTime?: Date | undefined;
|
|
635
635
|
/**
|
|
636
636
|
* <p>The description of a worker configuration.</p>
|
|
637
637
|
* @public
|
|
638
638
|
*/
|
|
639
|
-
description?: string;
|
|
639
|
+
description?: string | undefined;
|
|
640
640
|
/**
|
|
641
641
|
* <p>The latest revision of a worker configuration.</p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
latestRevision?: WorkerConfigurationRevisionSummary;
|
|
644
|
+
latestRevision?: WorkerConfigurationRevisionSummary | undefined;
|
|
645
645
|
/**
|
|
646
646
|
* <p>The name of the worker configuration.</p>
|
|
647
647
|
* @public
|
|
648
648
|
*/
|
|
649
|
-
name?: string;
|
|
649
|
+
name?: string | undefined;
|
|
650
650
|
/**
|
|
651
651
|
* <p>The Amazon Resource Name (ARN) of the worker configuration.</p>
|
|
652
652
|
* @public
|
|
653
653
|
*/
|
|
654
|
-
workerConfigurationArn?: string;
|
|
654
|
+
workerConfigurationArn?: string | undefined;
|
|
655
655
|
/**
|
|
656
656
|
* <p>The state of the worker configuration.</p>
|
|
657
657
|
* @public
|
|
658
658
|
*/
|
|
659
|
-
workerConfigurationState?: WorkerConfigurationState;
|
|
659
|
+
workerConfigurationState?: WorkerConfigurationState | undefined;
|
|
660
660
|
}
|
|
661
661
|
/**
|
|
662
662
|
* <p>Information about the VPC in which the connector resides.</p>
|
|
@@ -667,7 +667,7 @@ export interface Vpc {
|
|
|
667
667
|
* <p>The security groups for the connector.</p>
|
|
668
668
|
* @public
|
|
669
669
|
*/
|
|
670
|
-
securityGroups?: string[];
|
|
670
|
+
securityGroups?: string[] | undefined;
|
|
671
671
|
/**
|
|
672
672
|
* <p>The subnets for the connector.</p>
|
|
673
673
|
* @public
|
|
@@ -740,12 +740,12 @@ export interface AutoScaling {
|
|
|
740
740
|
* <p>The sacle-in policy for the connector.</p>
|
|
741
741
|
* @public
|
|
742
742
|
*/
|
|
743
|
-
scaleInPolicy?: ScaleInPolicy;
|
|
743
|
+
scaleInPolicy?: ScaleInPolicy | undefined;
|
|
744
744
|
/**
|
|
745
745
|
* <p>The sacle-out policy for the connector.</p>
|
|
746
746
|
* @public
|
|
747
747
|
*/
|
|
748
|
-
scaleOutPolicy?: ScaleOutPolicy;
|
|
748
|
+
scaleOutPolicy?: ScaleOutPolicy | undefined;
|
|
749
749
|
}
|
|
750
750
|
/**
|
|
751
751
|
* <p>An update to the connector's scale-in policy.</p>
|
|
@@ -843,12 +843,12 @@ export interface Capacity {
|
|
|
843
843
|
* <p>Information about the auto scaling parameters for the connector.</p>
|
|
844
844
|
* @public
|
|
845
845
|
*/
|
|
846
|
-
autoScaling?: AutoScaling;
|
|
846
|
+
autoScaling?: AutoScaling | undefined;
|
|
847
847
|
/**
|
|
848
848
|
* <p>Details about a fixed capacity allocated to a connector.</p>
|
|
849
849
|
* @public
|
|
850
850
|
*/
|
|
851
|
-
provisionedCapacity?: ProvisionedCapacity;
|
|
851
|
+
provisionedCapacity?: ProvisionedCapacity | undefined;
|
|
852
852
|
}
|
|
853
853
|
/**
|
|
854
854
|
* <p>An update to a connector's fixed capacity.</p>
|
|
@@ -877,12 +877,12 @@ export interface CapacityUpdate {
|
|
|
877
877
|
* <p>The target auto scaling setting.</p>
|
|
878
878
|
* @public
|
|
879
879
|
*/
|
|
880
|
-
autoScaling?: AutoScalingUpdate;
|
|
880
|
+
autoScaling?: AutoScalingUpdate | undefined;
|
|
881
881
|
/**
|
|
882
882
|
* <p>The target settings for provisioned capacity.</p>
|
|
883
883
|
* @public
|
|
884
884
|
*/
|
|
885
|
-
provisionedCapacity?: ProvisionedCapacityUpdate;
|
|
885
|
+
provisionedCapacity?: ProvisionedCapacityUpdate | undefined;
|
|
886
886
|
}
|
|
887
887
|
/**
|
|
888
888
|
* <p>The settings for delivering connector logs to Amazon CloudWatch Logs.</p>
|
|
@@ -898,7 +898,7 @@ export interface CloudWatchLogsLogDelivery {
|
|
|
898
898
|
* <p>The name of the CloudWatch log group that is the destination for log delivery.</p>
|
|
899
899
|
* @public
|
|
900
900
|
*/
|
|
901
|
-
logGroup?: string;
|
|
901
|
+
logGroup?: string | undefined;
|
|
902
902
|
}
|
|
903
903
|
/**
|
|
904
904
|
* <p>HTTP Status Code 409: Conflict. A resource with this name already exists. Retry your
|
|
@@ -958,7 +958,7 @@ export interface FirehoseLogDelivery {
|
|
|
958
958
|
* delivery.</p>
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
|
-
deliveryStream?: string;
|
|
961
|
+
deliveryStream?: string | undefined;
|
|
962
962
|
/**
|
|
963
963
|
* <p>Specifies whether connector logs get delivered to Amazon Kinesis Data Firehose.</p>
|
|
964
964
|
* @public
|
|
@@ -974,7 +974,7 @@ export interface S3LogDelivery {
|
|
|
974
974
|
* <p>The name of the S3 bucket that is the destination for log delivery.</p>
|
|
975
975
|
* @public
|
|
976
976
|
*/
|
|
977
|
-
bucket?: string;
|
|
977
|
+
bucket?: string | undefined;
|
|
978
978
|
/**
|
|
979
979
|
* <p>Specifies whether connector logs get sent to the specified Amazon S3 destination.</p>
|
|
980
980
|
* @public
|
|
@@ -984,7 +984,7 @@ export interface S3LogDelivery {
|
|
|
984
984
|
* <p>The S3 prefix that is the destination for log delivery.</p>
|
|
985
985
|
* @public
|
|
986
986
|
*/
|
|
987
|
-
prefix?: string;
|
|
987
|
+
prefix?: string | undefined;
|
|
988
988
|
}
|
|
989
989
|
/**
|
|
990
990
|
* <p>Workers can send worker logs to different destination types. This configuration
|
|
@@ -996,17 +996,17 @@ export interface WorkerLogDelivery {
|
|
|
996
996
|
* <p>Details about delivering logs to Amazon CloudWatch Logs.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
cloudWatchLogs?: CloudWatchLogsLogDelivery;
|
|
999
|
+
cloudWatchLogs?: CloudWatchLogsLogDelivery | undefined;
|
|
1000
1000
|
/**
|
|
1001
1001
|
* <p>Details about delivering logs to Amazon Kinesis Data Firehose.</p>
|
|
1002
1002
|
* @public
|
|
1003
1003
|
*/
|
|
1004
|
-
firehose?: FirehoseLogDelivery;
|
|
1004
|
+
firehose?: FirehoseLogDelivery | undefined;
|
|
1005
1005
|
/**
|
|
1006
1006
|
* <p>Details about delivering logs to Amazon S3.</p>
|
|
1007
1007
|
* @public
|
|
1008
1008
|
*/
|
|
1009
|
-
s3?: S3LogDelivery;
|
|
1009
|
+
s3?: S3LogDelivery | undefined;
|
|
1010
1010
|
}
|
|
1011
1011
|
/**
|
|
1012
1012
|
* <p>Details about log delivery.</p>
|
|
@@ -1056,7 +1056,7 @@ export interface CreateConnectorRequest {
|
|
|
1056
1056
|
* <p>A summary description of the connector.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
connectorDescription?: string;
|
|
1059
|
+
connectorDescription?: string | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* <p>The name of the connector.</p>
|
|
1062
1062
|
* @public
|
|
@@ -1087,7 +1087,7 @@ export interface CreateConnectorRequest {
|
|
|
1087
1087
|
* <p>Details about log delivery.</p>
|
|
1088
1088
|
* @public
|
|
1089
1089
|
*/
|
|
1090
|
-
logDelivery?: LogDelivery;
|
|
1090
|
+
logDelivery?: LogDelivery | undefined;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* <important>
|
|
1093
1093
|
* <p>Amazon MSK Connect does not currently support specifying multiple plugins as a list. To use more than one plugin for your connector, you can create a single custom plugin using a ZIP file that bundles multiple plugins together.</p>
|
|
@@ -1108,12 +1108,12 @@ export interface CreateConnectorRequest {
|
|
|
1108
1108
|
* <p>Specifies which worker configuration to use with the connector.</p>
|
|
1109
1109
|
* @public
|
|
1110
1110
|
*/
|
|
1111
|
-
workerConfiguration?: WorkerConfiguration;
|
|
1111
|
+
workerConfiguration?: WorkerConfiguration | undefined;
|
|
1112
1112
|
/**
|
|
1113
1113
|
* <p>The tags you want to attach to the connector.</p>
|
|
1114
1114
|
* @public
|
|
1115
1115
|
*/
|
|
1116
|
-
tags?: Record<string, string
|
|
1116
|
+
tags?: Record<string, string> | undefined;
|
|
1117
1117
|
}
|
|
1118
1118
|
/**
|
|
1119
1119
|
* @public
|
|
@@ -1123,17 +1123,17 @@ export interface CreateConnectorResponse {
|
|
|
1123
1123
|
* <p>The Amazon Resource Name (ARN) that Amazon assigned to the connector.</p>
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
connectorArn?: string;
|
|
1126
|
+
connectorArn?: string | undefined;
|
|
1127
1127
|
/**
|
|
1128
1128
|
* <p>The name of the connector.</p>
|
|
1129
1129
|
* @public
|
|
1130
1130
|
*/
|
|
1131
|
-
connectorName?: string;
|
|
1131
|
+
connectorName?: string | undefined;
|
|
1132
1132
|
/**
|
|
1133
1133
|
* <p>The state of the connector.</p>
|
|
1134
1134
|
* @public
|
|
1135
1135
|
*/
|
|
1136
|
-
connectorState?: ConnectorState;
|
|
1136
|
+
connectorState?: ConnectorState | undefined;
|
|
1137
1137
|
}
|
|
1138
1138
|
/**
|
|
1139
1139
|
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
@@ -1231,7 +1231,7 @@ export interface S3Location {
|
|
|
1231
1231
|
* <p>The version of an object in an S3 bucket.</p>
|
|
1232
1232
|
* @public
|
|
1233
1233
|
*/
|
|
1234
|
-
objectVersion?: string;
|
|
1234
|
+
objectVersion?: string | undefined;
|
|
1235
1235
|
}
|
|
1236
1236
|
/**
|
|
1237
1237
|
* <p>Information about the location of a custom plugin.</p>
|
|
@@ -1258,7 +1258,7 @@ export interface CreateCustomPluginRequest {
|
|
|
1258
1258
|
* <p>A summary description of the custom plugin.</p>
|
|
1259
1259
|
* @public
|
|
1260
1260
|
*/
|
|
1261
|
-
description?: string;
|
|
1261
|
+
description?: string | undefined;
|
|
1262
1262
|
/**
|
|
1263
1263
|
* <p>Information about the location of a custom plugin.</p>
|
|
1264
1264
|
* @public
|
|
@@ -1273,7 +1273,7 @@ export interface CreateCustomPluginRequest {
|
|
|
1273
1273
|
* <p>The tags you want to attach to the custom plugin.</p>
|
|
1274
1274
|
* @public
|
|
1275
1275
|
*/
|
|
1276
|
-
tags?: Record<string, string
|
|
1276
|
+
tags?: Record<string, string> | undefined;
|
|
1277
1277
|
}
|
|
1278
1278
|
/**
|
|
1279
1279
|
* @public
|
|
@@ -1283,22 +1283,22 @@ export interface CreateCustomPluginResponse {
|
|
|
1283
1283
|
* <p>The Amazon Resource Name (ARN) that Amazon assigned to the custom plugin.</p>
|
|
1284
1284
|
* @public
|
|
1285
1285
|
*/
|
|
1286
|
-
customPluginArn?: string;
|
|
1286
|
+
customPluginArn?: string | undefined;
|
|
1287
1287
|
/**
|
|
1288
1288
|
* <p>The state of the custom plugin.</p>
|
|
1289
1289
|
* @public
|
|
1290
1290
|
*/
|
|
1291
|
-
customPluginState?: CustomPluginState;
|
|
1291
|
+
customPluginState?: CustomPluginState | undefined;
|
|
1292
1292
|
/**
|
|
1293
1293
|
* <p>The name of the custom plugin.</p>
|
|
1294
1294
|
* @public
|
|
1295
1295
|
*/
|
|
1296
|
-
name?: string;
|
|
1296
|
+
name?: string | undefined;
|
|
1297
1297
|
/**
|
|
1298
1298
|
* <p>The revision of the custom plugin.</p>
|
|
1299
1299
|
* @public
|
|
1300
1300
|
*/
|
|
1301
|
-
revision?: number;
|
|
1301
|
+
revision?: number | undefined;
|
|
1302
1302
|
}
|
|
1303
1303
|
/**
|
|
1304
1304
|
* @public
|
|
@@ -1308,7 +1308,7 @@ export interface CreateWorkerConfigurationRequest {
|
|
|
1308
1308
|
* <p>A summary description of the worker configuration.</p>
|
|
1309
1309
|
* @public
|
|
1310
1310
|
*/
|
|
1311
|
-
description?: string;
|
|
1311
|
+
description?: string | undefined;
|
|
1312
1312
|
/**
|
|
1313
1313
|
* <p>The name of the worker configuration.</p>
|
|
1314
1314
|
* @public
|
|
@@ -1323,7 +1323,7 @@ export interface CreateWorkerConfigurationRequest {
|
|
|
1323
1323
|
* <p>The tags you want to attach to the worker configuration.</p>
|
|
1324
1324
|
* @public
|
|
1325
1325
|
*/
|
|
1326
|
-
tags?: Record<string, string
|
|
1326
|
+
tags?: Record<string, string> | undefined;
|
|
1327
1327
|
}
|
|
1328
1328
|
/**
|
|
1329
1329
|
* @public
|
|
@@ -1333,27 +1333,27 @@ export interface CreateWorkerConfigurationResponse {
|
|
|
1333
1333
|
* <p>The time that the worker configuration was created.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
creationTime?: Date;
|
|
1336
|
+
creationTime?: Date | undefined;
|
|
1337
1337
|
/**
|
|
1338
1338
|
* <p>The latest revision of the worker configuration.</p>
|
|
1339
1339
|
* @public
|
|
1340
1340
|
*/
|
|
1341
|
-
latestRevision?: WorkerConfigurationRevisionSummary;
|
|
1341
|
+
latestRevision?: WorkerConfigurationRevisionSummary | undefined;
|
|
1342
1342
|
/**
|
|
1343
1343
|
* <p>The name of the worker configuration.</p>
|
|
1344
1344
|
* @public
|
|
1345
1345
|
*/
|
|
1346
|
-
name?: string;
|
|
1346
|
+
name?: string | undefined;
|
|
1347
1347
|
/**
|
|
1348
1348
|
* <p>The Amazon Resource Name (ARN) that Amazon assigned to the worker configuration.</p>
|
|
1349
1349
|
* @public
|
|
1350
1350
|
*/
|
|
1351
|
-
workerConfigurationArn?: string;
|
|
1351
|
+
workerConfigurationArn?: string | undefined;
|
|
1352
1352
|
/**
|
|
1353
1353
|
* <p>The state of the worker configuration.</p>
|
|
1354
1354
|
* @public
|
|
1355
1355
|
*/
|
|
1356
|
-
workerConfigurationState?: WorkerConfigurationState;
|
|
1356
|
+
workerConfigurationState?: WorkerConfigurationState | undefined;
|
|
1357
1357
|
}
|
|
1358
1358
|
/**
|
|
1359
1359
|
* @public
|
|
@@ -1368,7 +1368,7 @@ export interface DeleteConnectorRequest {
|
|
|
1368
1368
|
* <p>The current version of the connector that you want to delete.</p>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
currentVersion?: string;
|
|
1371
|
+
currentVersion?: string | undefined;
|
|
1372
1372
|
}
|
|
1373
1373
|
/**
|
|
1374
1374
|
* @public
|
|
@@ -1378,12 +1378,12 @@ export interface DeleteConnectorResponse {
|
|
|
1378
1378
|
* <p>The Amazon Resource Name (ARN) of the connector that you requested to delete.</p>
|
|
1379
1379
|
* @public
|
|
1380
1380
|
*/
|
|
1381
|
-
connectorArn?: string;
|
|
1381
|
+
connectorArn?: string | undefined;
|
|
1382
1382
|
/**
|
|
1383
1383
|
* <p>The state of the connector that you requested to delete.</p>
|
|
1384
1384
|
* @public
|
|
1385
1385
|
*/
|
|
1386
|
-
connectorState?: ConnectorState;
|
|
1386
|
+
connectorState?: ConnectorState | undefined;
|
|
1387
1387
|
}
|
|
1388
1388
|
/**
|
|
1389
1389
|
* @public
|
|
@@ -1403,12 +1403,12 @@ export interface DeleteCustomPluginResponse {
|
|
|
1403
1403
|
* <p>The Amazon Resource Name (ARN) of the custom plugin that you requested to delete.</p>
|
|
1404
1404
|
* @public
|
|
1405
1405
|
*/
|
|
1406
|
-
customPluginArn?: string;
|
|
1406
|
+
customPluginArn?: string | undefined;
|
|
1407
1407
|
/**
|
|
1408
1408
|
* <p>The state of the custom plugin.</p>
|
|
1409
1409
|
* @public
|
|
1410
1410
|
*/
|
|
1411
|
-
customPluginState?: CustomPluginState;
|
|
1411
|
+
customPluginState?: CustomPluginState | undefined;
|
|
1412
1412
|
}
|
|
1413
1413
|
/**
|
|
1414
1414
|
* @public
|
|
@@ -1428,12 +1428,12 @@ export interface DeleteWorkerConfigurationResponse {
|
|
|
1428
1428
|
* <p>The Amazon Resource Name (ARN) of the worker configuration that you requested to delete.</p>
|
|
1429
1429
|
* @public
|
|
1430
1430
|
*/
|
|
1431
|
-
workerConfigurationArn?: string;
|
|
1431
|
+
workerConfigurationArn?: string | undefined;
|
|
1432
1432
|
/**
|
|
1433
1433
|
* <p>The state of the worker configuration.</p>
|
|
1434
1434
|
* @public
|
|
1435
1435
|
*/
|
|
1436
|
-
workerConfigurationState?: WorkerConfigurationState;
|
|
1436
|
+
workerConfigurationState?: WorkerConfigurationState | undefined;
|
|
1437
1437
|
}
|
|
1438
1438
|
/**
|
|
1439
1439
|
* @public
|
|
@@ -1454,12 +1454,12 @@ export interface StateDescription {
|
|
|
1454
1454
|
* <p>A code that describes the state of a resource.</p>
|
|
1455
1455
|
* @public
|
|
1456
1456
|
*/
|
|
1457
|
-
code?: string;
|
|
1457
|
+
code?: string | undefined;
|
|
1458
1458
|
/**
|
|
1459
1459
|
* <p>A message that describes the state of a resource.</p>
|
|
1460
1460
|
* @public
|
|
1461
1461
|
*/
|
|
1462
|
-
message?: string;
|
|
1462
|
+
message?: string | undefined;
|
|
1463
1463
|
}
|
|
1464
1464
|
/**
|
|
1465
1465
|
* @public
|
|
@@ -1470,90 +1470,90 @@ export interface DescribeConnectorResponse {
|
|
|
1470
1470
|
* provisioned.</p>
|
|
1471
1471
|
* @public
|
|
1472
1472
|
*/
|
|
1473
|
-
capacity?: CapacityDescription;
|
|
1473
|
+
capacity?: CapacityDescription | undefined;
|
|
1474
1474
|
/**
|
|
1475
1475
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
1476
1476
|
* @public
|
|
1477
1477
|
*/
|
|
1478
|
-
connectorArn?: string;
|
|
1478
|
+
connectorArn?: string | undefined;
|
|
1479
1479
|
/**
|
|
1480
1480
|
* <p>A map of keys to values that represent the configuration for the connector.</p>
|
|
1481
1481
|
* @public
|
|
1482
1482
|
*/
|
|
1483
|
-
connectorConfiguration?: Record<string, string
|
|
1483
|
+
connectorConfiguration?: Record<string, string> | undefined;
|
|
1484
1484
|
/**
|
|
1485
1485
|
* <p>A summary description of the connector.</p>
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
connectorDescription?: string;
|
|
1488
|
+
connectorDescription?: string | undefined;
|
|
1489
1489
|
/**
|
|
1490
1490
|
* <p>The name of the connector.</p>
|
|
1491
1491
|
* @public
|
|
1492
1492
|
*/
|
|
1493
|
-
connectorName?: string;
|
|
1493
|
+
connectorName?: string | undefined;
|
|
1494
1494
|
/**
|
|
1495
1495
|
* <p>The state of the connector.</p>
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
connectorState?: ConnectorState;
|
|
1498
|
+
connectorState?: ConnectorState | undefined;
|
|
1499
1499
|
/**
|
|
1500
1500
|
* <p>The time the connector was created.</p>
|
|
1501
1501
|
* @public
|
|
1502
1502
|
*/
|
|
1503
|
-
creationTime?: Date;
|
|
1503
|
+
creationTime?: Date | undefined;
|
|
1504
1504
|
/**
|
|
1505
1505
|
* <p>The current version of the connector.</p>
|
|
1506
1506
|
* @public
|
|
1507
1507
|
*/
|
|
1508
|
-
currentVersion?: string;
|
|
1508
|
+
currentVersion?: string | undefined;
|
|
1509
1509
|
/**
|
|
1510
1510
|
* <p>The Apache Kafka cluster that the connector is connected to.</p>
|
|
1511
1511
|
* @public
|
|
1512
1512
|
*/
|
|
1513
|
-
kafkaCluster?: KafkaClusterDescription;
|
|
1513
|
+
kafkaCluster?: KafkaClusterDescription | undefined;
|
|
1514
1514
|
/**
|
|
1515
1515
|
* <p>The type of client authentication used to connect to the Apache Kafka cluster. The value
|
|
1516
1516
|
* is NONE when no client authentication is used.</p>
|
|
1517
1517
|
* @public
|
|
1518
1518
|
*/
|
|
1519
|
-
kafkaClusterClientAuthentication?: KafkaClusterClientAuthenticationDescription;
|
|
1519
|
+
kafkaClusterClientAuthentication?: KafkaClusterClientAuthenticationDescription | undefined;
|
|
1520
1520
|
/**
|
|
1521
1521
|
* <p>Details of encryption in transit to the Apache Kafka cluster.</p>
|
|
1522
1522
|
* @public
|
|
1523
1523
|
*/
|
|
1524
|
-
kafkaClusterEncryptionInTransit?: KafkaClusterEncryptionInTransitDescription;
|
|
1524
|
+
kafkaClusterEncryptionInTransit?: KafkaClusterEncryptionInTransitDescription | undefined;
|
|
1525
1525
|
/**
|
|
1526
1526
|
* <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka
|
|
1527
1527
|
* cluster's version and the plugins.</p>
|
|
1528
1528
|
* @public
|
|
1529
1529
|
*/
|
|
1530
|
-
kafkaConnectVersion?: string;
|
|
1530
|
+
kafkaConnectVersion?: string | undefined;
|
|
1531
1531
|
/**
|
|
1532
1532
|
* <p>Details about delivering logs to Amazon CloudWatch Logs.</p>
|
|
1533
1533
|
* @public
|
|
1534
1534
|
*/
|
|
1535
|
-
logDelivery?: LogDeliveryDescription;
|
|
1535
|
+
logDelivery?: LogDeliveryDescription | undefined;
|
|
1536
1536
|
/**
|
|
1537
1537
|
* <p>Specifies which plugins were used for this connector.</p>
|
|
1538
1538
|
* @public
|
|
1539
1539
|
*/
|
|
1540
|
-
plugins?: PluginDescription[];
|
|
1540
|
+
plugins?: PluginDescription[] | undefined;
|
|
1541
1541
|
/**
|
|
1542
1542
|
* <p>The Amazon Resource Name (ARN) of the IAM role used by the connector to access Amazon
|
|
1543
1543
|
* Web Services resources.</p>
|
|
1544
1544
|
* @public
|
|
1545
1545
|
*/
|
|
1546
|
-
serviceExecutionRoleArn?: string;
|
|
1546
|
+
serviceExecutionRoleArn?: string | undefined;
|
|
1547
1547
|
/**
|
|
1548
1548
|
* <p>Specifies which worker configuration was used for the connector.</p>
|
|
1549
1549
|
* @public
|
|
1550
1550
|
*/
|
|
1551
|
-
workerConfiguration?: WorkerConfigurationDescription;
|
|
1551
|
+
workerConfiguration?: WorkerConfigurationDescription | undefined;
|
|
1552
1552
|
/**
|
|
1553
1553
|
* <p>Details about the state of a connector.</p>
|
|
1554
1554
|
* @public
|
|
1555
1555
|
*/
|
|
1556
|
-
stateDescription?: StateDescription;
|
|
1556
|
+
stateDescription?: StateDescription | undefined;
|
|
1557
1557
|
}
|
|
1558
1558
|
/**
|
|
1559
1559
|
* @public
|
|
@@ -1573,38 +1573,38 @@ export interface DescribeCustomPluginResponse {
|
|
|
1573
1573
|
* <p>The time that the custom plugin was created.</p>
|
|
1574
1574
|
* @public
|
|
1575
1575
|
*/
|
|
1576
|
-
creationTime?: Date;
|
|
1576
|
+
creationTime?: Date | undefined;
|
|
1577
1577
|
/**
|
|
1578
1578
|
* <p>The Amazon Resource Name (ARN) of the custom plugin.</p>
|
|
1579
1579
|
* @public
|
|
1580
1580
|
*/
|
|
1581
|
-
customPluginArn?: string;
|
|
1581
|
+
customPluginArn?: string | undefined;
|
|
1582
1582
|
/**
|
|
1583
1583
|
* <p>The state of the custom plugin.</p>
|
|
1584
1584
|
* @public
|
|
1585
1585
|
*/
|
|
1586
|
-
customPluginState?: CustomPluginState;
|
|
1586
|
+
customPluginState?: CustomPluginState | undefined;
|
|
1587
1587
|
/**
|
|
1588
1588
|
* <p>The description of the custom plugin.</p>
|
|
1589
1589
|
* @public
|
|
1590
1590
|
*/
|
|
1591
|
-
description?: string;
|
|
1591
|
+
description?: string | undefined;
|
|
1592
1592
|
/**
|
|
1593
1593
|
* <p>The latest successfully created revision of the custom plugin. If there are no
|
|
1594
1594
|
* successfully created revisions, this field will be absent.</p>
|
|
1595
1595
|
* @public
|
|
1596
1596
|
*/
|
|
1597
|
-
latestRevision?: CustomPluginRevisionSummary;
|
|
1597
|
+
latestRevision?: CustomPluginRevisionSummary | undefined;
|
|
1598
1598
|
/**
|
|
1599
1599
|
* <p>The name of the custom plugin.</p>
|
|
1600
1600
|
* @public
|
|
1601
1601
|
*/
|
|
1602
|
-
name?: string;
|
|
1602
|
+
name?: string | undefined;
|
|
1603
1603
|
/**
|
|
1604
1604
|
* <p>Details about the state of a custom plugin.</p>
|
|
1605
1605
|
* @public
|
|
1606
1606
|
*/
|
|
1607
|
-
stateDescription?: StateDescription;
|
|
1607
|
+
stateDescription?: StateDescription | undefined;
|
|
1608
1608
|
}
|
|
1609
1609
|
/**
|
|
1610
1610
|
* @public
|
|
@@ -1626,22 +1626,22 @@ export interface WorkerConfigurationRevisionDescription {
|
|
|
1626
1626
|
* <p>The time that the worker configuration was created.</p>
|
|
1627
1627
|
* @public
|
|
1628
1628
|
*/
|
|
1629
|
-
creationTime?: Date;
|
|
1629
|
+
creationTime?: Date | undefined;
|
|
1630
1630
|
/**
|
|
1631
1631
|
* <p>The description of the worker configuration revision.</p>
|
|
1632
1632
|
* @public
|
|
1633
1633
|
*/
|
|
1634
|
-
description?: string;
|
|
1634
|
+
description?: string | undefined;
|
|
1635
1635
|
/**
|
|
1636
1636
|
* <p>Base64 encoded contents of the connect-distributed.properties file.</p>
|
|
1637
1637
|
* @public
|
|
1638
1638
|
*/
|
|
1639
|
-
propertiesFileContent?: string;
|
|
1639
|
+
propertiesFileContent?: string | undefined;
|
|
1640
1640
|
/**
|
|
1641
1641
|
* <p>The description of a revision of the worker configuration.</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
revision?: number;
|
|
1644
|
+
revision?: number | undefined;
|
|
1645
1645
|
}
|
|
1646
1646
|
/**
|
|
1647
1647
|
* @public
|
|
@@ -1651,32 +1651,32 @@ export interface DescribeWorkerConfigurationResponse {
|
|
|
1651
1651
|
* <p>The time that the worker configuration was created.</p>
|
|
1652
1652
|
* @public
|
|
1653
1653
|
*/
|
|
1654
|
-
creationTime?: Date;
|
|
1654
|
+
creationTime?: Date | undefined;
|
|
1655
1655
|
/**
|
|
1656
1656
|
* <p>The description of the worker configuration.</p>
|
|
1657
1657
|
* @public
|
|
1658
1658
|
*/
|
|
1659
|
-
description?: string;
|
|
1659
|
+
description?: string | undefined;
|
|
1660
1660
|
/**
|
|
1661
1661
|
* <p>The latest revision of the custom configuration.</p>
|
|
1662
1662
|
* @public
|
|
1663
1663
|
*/
|
|
1664
|
-
latestRevision?: WorkerConfigurationRevisionDescription;
|
|
1664
|
+
latestRevision?: WorkerConfigurationRevisionDescription | undefined;
|
|
1665
1665
|
/**
|
|
1666
1666
|
* <p>The name of the worker configuration.</p>
|
|
1667
1667
|
* @public
|
|
1668
1668
|
*/
|
|
1669
|
-
name?: string;
|
|
1669
|
+
name?: string | undefined;
|
|
1670
1670
|
/**
|
|
1671
1671
|
* <p>The Amazon Resource Name (ARN) of the custom configuration.</p>
|
|
1672
1672
|
* @public
|
|
1673
1673
|
*/
|
|
1674
|
-
workerConfigurationArn?: string;
|
|
1674
|
+
workerConfigurationArn?: string | undefined;
|
|
1675
1675
|
/**
|
|
1676
1676
|
* <p>The state of the worker configuration.</p>
|
|
1677
1677
|
* @public
|
|
1678
1678
|
*/
|
|
1679
|
-
workerConfigurationState?: WorkerConfigurationState;
|
|
1679
|
+
workerConfigurationState?: WorkerConfigurationState | undefined;
|
|
1680
1680
|
}
|
|
1681
1681
|
/**
|
|
1682
1682
|
* @public
|
|
@@ -1686,19 +1686,19 @@ export interface ListConnectorsRequest {
|
|
|
1686
1686
|
* <p>The name prefix that you want to use to search for and list connectors.</p>
|
|
1687
1687
|
* @public
|
|
1688
1688
|
*/
|
|
1689
|
-
connectorNamePrefix?: string;
|
|
1689
|
+
connectorNamePrefix?: string | undefined;
|
|
1690
1690
|
/**
|
|
1691
1691
|
* <p>The maximum number of connectors to list in one response.</p>
|
|
1692
1692
|
* @public
|
|
1693
1693
|
*/
|
|
1694
|
-
maxResults?: number;
|
|
1694
|
+
maxResults?: number | undefined;
|
|
1695
1695
|
/**
|
|
1696
1696
|
* <p>If the response of a ListConnectors operation is truncated, it will include a NextToken.
|
|
1697
1697
|
* Send this NextToken in a subsequent request to continue listing from where the previous
|
|
1698
1698
|
* operation left off.</p>
|
|
1699
1699
|
* @public
|
|
1700
1700
|
*/
|
|
1701
|
-
nextToken?: string;
|
|
1701
|
+
nextToken?: string | undefined;
|
|
1702
1702
|
}
|
|
1703
1703
|
/**
|
|
1704
1704
|
* @public
|
|
@@ -1708,14 +1708,14 @@ export interface ListConnectorsResponse {
|
|
|
1708
1708
|
* <p>An array of connector descriptions.</p>
|
|
1709
1709
|
* @public
|
|
1710
1710
|
*/
|
|
1711
|
-
connectors?: ConnectorSummary[];
|
|
1711
|
+
connectors?: ConnectorSummary[] | undefined;
|
|
1712
1712
|
/**
|
|
1713
1713
|
* <p>If the response of a ListConnectors operation is truncated, it will include a NextToken.
|
|
1714
1714
|
* Send this NextToken in a subsequent request to continue listing from where it left
|
|
1715
1715
|
* off.</p>
|
|
1716
1716
|
* @public
|
|
1717
1717
|
*/
|
|
1718
|
-
nextToken?: string;
|
|
1718
|
+
nextToken?: string | undefined;
|
|
1719
1719
|
}
|
|
1720
1720
|
/**
|
|
1721
1721
|
* @public
|
|
@@ -1725,19 +1725,19 @@ export interface ListCustomPluginsRequest {
|
|
|
1725
1725
|
* <p>The maximum number of custom plugins to list in one response.</p>
|
|
1726
1726
|
* @public
|
|
1727
1727
|
*/
|
|
1728
|
-
maxResults?: number;
|
|
1728
|
+
maxResults?: number | undefined;
|
|
1729
1729
|
/**
|
|
1730
1730
|
* <p>If the response of a ListCustomPlugins operation is truncated, it will include a
|
|
1731
1731
|
* NextToken. Send this NextToken in a subsequent request to continue listing from where the
|
|
1732
1732
|
* previous operation left off.</p>
|
|
1733
1733
|
* @public
|
|
1734
1734
|
*/
|
|
1735
|
-
nextToken?: string;
|
|
1735
|
+
nextToken?: string | undefined;
|
|
1736
1736
|
/**
|
|
1737
1737
|
* <p>Lists custom plugin names that start with the specified text string.</p>
|
|
1738
1738
|
* @public
|
|
1739
1739
|
*/
|
|
1740
|
-
namePrefix?: string;
|
|
1740
|
+
namePrefix?: string | undefined;
|
|
1741
1741
|
}
|
|
1742
1742
|
/**
|
|
1743
1743
|
* @public
|
|
@@ -1747,14 +1747,14 @@ export interface ListCustomPluginsResponse {
|
|
|
1747
1747
|
* <p>An array of custom plugin descriptions.</p>
|
|
1748
1748
|
* @public
|
|
1749
1749
|
*/
|
|
1750
|
-
customPlugins?: CustomPluginSummary[];
|
|
1750
|
+
customPlugins?: CustomPluginSummary[] | undefined;
|
|
1751
1751
|
/**
|
|
1752
1752
|
* <p>If the response of a ListCustomPlugins operation is truncated, it will include a
|
|
1753
1753
|
* NextToken. Send this NextToken in a subsequent request to continue listing from where the
|
|
1754
1754
|
* previous operation left off.</p>
|
|
1755
1755
|
* @public
|
|
1756
1756
|
*/
|
|
1757
|
-
nextToken?: string;
|
|
1757
|
+
nextToken?: string | undefined;
|
|
1758
1758
|
}
|
|
1759
1759
|
/**
|
|
1760
1760
|
* @public
|
|
@@ -1774,7 +1774,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1774
1774
|
* <p>Lists the tags attached to the specified resource in the corresponding request.</p>
|
|
1775
1775
|
* @public
|
|
1776
1776
|
*/
|
|
1777
|
-
tags?: Record<string, string
|
|
1777
|
+
tags?: Record<string, string> | undefined;
|
|
1778
1778
|
}
|
|
1779
1779
|
/**
|
|
1780
1780
|
* @public
|
|
@@ -1784,19 +1784,19 @@ export interface ListWorkerConfigurationsRequest {
|
|
|
1784
1784
|
* <p>The maximum number of worker configurations to list in one response.</p>
|
|
1785
1785
|
* @public
|
|
1786
1786
|
*/
|
|
1787
|
-
maxResults?: number;
|
|
1787
|
+
maxResults?: number | undefined;
|
|
1788
1788
|
/**
|
|
1789
1789
|
* <p>If the response of a ListWorkerConfigurations operation is truncated, it will include a
|
|
1790
1790
|
* NextToken. Send this NextToken in a subsequent request to continue listing from where the
|
|
1791
1791
|
* previous operation left off.</p>
|
|
1792
1792
|
* @public
|
|
1793
1793
|
*/
|
|
1794
|
-
nextToken?: string;
|
|
1794
|
+
nextToken?: string | undefined;
|
|
1795
1795
|
/**
|
|
1796
1796
|
* <p>Lists worker configuration names that start with the specified text string.</p>
|
|
1797
1797
|
* @public
|
|
1798
1798
|
*/
|
|
1799
|
-
namePrefix?: string;
|
|
1799
|
+
namePrefix?: string | undefined;
|
|
1800
1800
|
}
|
|
1801
1801
|
/**
|
|
1802
1802
|
* @public
|
|
@@ -1808,12 +1808,12 @@ export interface ListWorkerConfigurationsResponse {
|
|
|
1808
1808
|
* previous operation left off.</p>
|
|
1809
1809
|
* @public
|
|
1810
1810
|
*/
|
|
1811
|
-
nextToken?: string;
|
|
1811
|
+
nextToken?: string | undefined;
|
|
1812
1812
|
/**
|
|
1813
1813
|
* <p>An array of worker configuration descriptions.</p>
|
|
1814
1814
|
* @public
|
|
1815
1815
|
*/
|
|
1816
|
-
workerConfigurations?: WorkerConfigurationSummary[];
|
|
1816
|
+
workerConfigurations?: WorkerConfigurationSummary[] | undefined;
|
|
1817
1817
|
}
|
|
1818
1818
|
/**
|
|
1819
1819
|
* @public
|
|
@@ -1883,12 +1883,12 @@ export interface UpdateConnectorResponse {
|
|
|
1883
1883
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
1884
1884
|
* @public
|
|
1885
1885
|
*/
|
|
1886
|
-
connectorArn?: string;
|
|
1886
|
+
connectorArn?: string | undefined;
|
|
1887
1887
|
/**
|
|
1888
1888
|
* <p>The state of the connector.</p>
|
|
1889
1889
|
* @public
|
|
1890
1890
|
*/
|
|
1891
|
-
connectorState?: ConnectorState;
|
|
1891
|
+
connectorState?: ConnectorState | undefined;
|
|
1892
1892
|
}
|
|
1893
1893
|
/**
|
|
1894
1894
|
* @internal
|