@aws-sdk/client-kafkaconnect 3.686.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
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { KafkaConnectServiceException as __BaseException } from "./KafkaConnectServiceException";
|
|
3
3
|
export interface ScaleInPolicyDescription {
|
|
4
|
-
cpuUtilizationPercentage?: number;
|
|
4
|
+
cpuUtilizationPercentage?: number | undefined;
|
|
5
5
|
}
|
|
6
6
|
export interface ScaleOutPolicyDescription {
|
|
7
|
-
cpuUtilizationPercentage?: number;
|
|
7
|
+
cpuUtilizationPercentage?: number | undefined;
|
|
8
8
|
}
|
|
9
9
|
export interface AutoScalingDescription {
|
|
10
|
-
maxWorkerCount?: number;
|
|
11
|
-
mcuCount?: number;
|
|
12
|
-
minWorkerCount?: number;
|
|
13
|
-
scaleInPolicy?: ScaleInPolicyDescription;
|
|
14
|
-
scaleOutPolicy?: ScaleOutPolicyDescription;
|
|
10
|
+
maxWorkerCount?: number | undefined;
|
|
11
|
+
mcuCount?: number | undefined;
|
|
12
|
+
minWorkerCount?: number | undefined;
|
|
13
|
+
scaleInPolicy?: ScaleInPolicyDescription | undefined;
|
|
14
|
+
scaleOutPolicy?: ScaleOutPolicyDescription | undefined;
|
|
15
15
|
}
|
|
16
16
|
export interface ProvisionedCapacityDescription {
|
|
17
|
-
mcuCount?: number;
|
|
18
|
-
workerCount?: number;
|
|
17
|
+
mcuCount?: number | undefined;
|
|
18
|
+
workerCount?: number | undefined;
|
|
19
19
|
}
|
|
20
20
|
export interface CapacityDescription {
|
|
21
|
-
autoScaling?: AutoScalingDescription;
|
|
22
|
-
provisionedCapacity?: ProvisionedCapacityDescription;
|
|
21
|
+
autoScaling?: AutoScalingDescription | undefined;
|
|
22
|
+
provisionedCapacity?: ProvisionedCapacityDescription | undefined;
|
|
23
23
|
}
|
|
24
24
|
export declare const ConnectorState: {
|
|
25
25
|
readonly CREATING: "CREATING";
|
|
@@ -31,15 +31,15 @@ export declare const ConnectorState: {
|
|
|
31
31
|
export type ConnectorState =
|
|
32
32
|
(typeof ConnectorState)[keyof typeof ConnectorState];
|
|
33
33
|
export interface VpcDescription {
|
|
34
|
-
securityGroups?: string[];
|
|
35
|
-
subnets?: string[];
|
|
34
|
+
securityGroups?: string[] | undefined;
|
|
35
|
+
subnets?: string[] | undefined;
|
|
36
36
|
}
|
|
37
37
|
export interface ApacheKafkaClusterDescription {
|
|
38
|
-
bootstrapServers?: string;
|
|
39
|
-
vpc?: VpcDescription;
|
|
38
|
+
bootstrapServers?: string | undefined;
|
|
39
|
+
vpc?: VpcDescription | undefined;
|
|
40
40
|
}
|
|
41
41
|
export interface KafkaClusterDescription {
|
|
42
|
-
apacheKafkaCluster?: ApacheKafkaClusterDescription;
|
|
42
|
+
apacheKafkaCluster?: ApacheKafkaClusterDescription | undefined;
|
|
43
43
|
}
|
|
44
44
|
export declare const KafkaClusterClientAuthenticationType: {
|
|
45
45
|
readonly IAM: "IAM";
|
|
@@ -48,7 +48,7 @@ export declare const KafkaClusterClientAuthenticationType: {
|
|
|
48
48
|
export type KafkaClusterClientAuthenticationType =
|
|
49
49
|
(typeof KafkaClusterClientAuthenticationType)[keyof typeof KafkaClusterClientAuthenticationType];
|
|
50
50
|
export interface KafkaClusterClientAuthenticationDescription {
|
|
51
|
-
authenticationType?: KafkaClusterClientAuthenticationType;
|
|
51
|
+
authenticationType?: KafkaClusterClientAuthenticationType | undefined;
|
|
52
52
|
}
|
|
53
53
|
export declare const KafkaClusterEncryptionInTransitType: {
|
|
54
54
|
readonly PLAINTEXT: "PLAINTEXT";
|
|
@@ -57,56 +57,60 @@ export declare const KafkaClusterEncryptionInTransitType: {
|
|
|
57
57
|
export type KafkaClusterEncryptionInTransitType =
|
|
58
58
|
(typeof KafkaClusterEncryptionInTransitType)[keyof typeof KafkaClusterEncryptionInTransitType];
|
|
59
59
|
export interface KafkaClusterEncryptionInTransitDescription {
|
|
60
|
-
encryptionType?: KafkaClusterEncryptionInTransitType;
|
|
60
|
+
encryptionType?: KafkaClusterEncryptionInTransitType | undefined;
|
|
61
61
|
}
|
|
62
62
|
export interface CloudWatchLogsLogDeliveryDescription {
|
|
63
|
-
enabled?: boolean;
|
|
64
|
-
logGroup?: string;
|
|
63
|
+
enabled?: boolean | undefined;
|
|
64
|
+
logGroup?: string | undefined;
|
|
65
65
|
}
|
|
66
66
|
export interface FirehoseLogDeliveryDescription {
|
|
67
|
-
deliveryStream?: string;
|
|
68
|
-
enabled?: boolean;
|
|
67
|
+
deliveryStream?: string | undefined;
|
|
68
|
+
enabled?: boolean | undefined;
|
|
69
69
|
}
|
|
70
70
|
export interface S3LogDeliveryDescription {
|
|
71
|
-
bucket?: string;
|
|
72
|
-
enabled?: boolean;
|
|
73
|
-
prefix?: string;
|
|
71
|
+
bucket?: string | undefined;
|
|
72
|
+
enabled?: boolean | undefined;
|
|
73
|
+
prefix?: string | undefined;
|
|
74
74
|
}
|
|
75
75
|
export interface WorkerLogDeliveryDescription {
|
|
76
|
-
cloudWatchLogs?: CloudWatchLogsLogDeliveryDescription;
|
|
77
|
-
firehose?: FirehoseLogDeliveryDescription;
|
|
78
|
-
s3?: S3LogDeliveryDescription;
|
|
76
|
+
cloudWatchLogs?: CloudWatchLogsLogDeliveryDescription | undefined;
|
|
77
|
+
firehose?: FirehoseLogDeliveryDescription | undefined;
|
|
78
|
+
s3?: S3LogDeliveryDescription | undefined;
|
|
79
79
|
}
|
|
80
80
|
export interface LogDeliveryDescription {
|
|
81
|
-
workerLogDelivery?: WorkerLogDeliveryDescription;
|
|
81
|
+
workerLogDelivery?: WorkerLogDeliveryDescription | undefined;
|
|
82
82
|
}
|
|
83
83
|
export interface CustomPluginDescription {
|
|
84
|
-
customPluginArn?: string;
|
|
85
|
-
revision?: number;
|
|
84
|
+
customPluginArn?: string | undefined;
|
|
85
|
+
revision?: number | undefined;
|
|
86
86
|
}
|
|
87
87
|
export interface PluginDescription {
|
|
88
|
-
customPlugin?: CustomPluginDescription;
|
|
88
|
+
customPlugin?: CustomPluginDescription | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface WorkerConfigurationDescription {
|
|
91
|
-
revision?: number;
|
|
92
|
-
workerConfigurationArn?: string;
|
|
91
|
+
revision?: number | undefined;
|
|
92
|
+
workerConfigurationArn?: string | undefined;
|
|
93
93
|
}
|
|
94
94
|
export interface ConnectorSummary {
|
|
95
|
-
capacity?: CapacityDescription;
|
|
96
|
-
connectorArn?: string;
|
|
97
|
-
connectorDescription?: string;
|
|
98
|
-
connectorName?: string;
|
|
99
|
-
connectorState?: ConnectorState;
|
|
100
|
-
creationTime?: Date;
|
|
101
|
-
currentVersion?: string;
|
|
102
|
-
kafkaCluster?: KafkaClusterDescription;
|
|
103
|
-
kafkaClusterClientAuthentication?:
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
95
|
+
capacity?: CapacityDescription | undefined;
|
|
96
|
+
connectorArn?: string | undefined;
|
|
97
|
+
connectorDescription?: string | undefined;
|
|
98
|
+
connectorName?: string | undefined;
|
|
99
|
+
connectorState?: ConnectorState | undefined;
|
|
100
|
+
creationTime?: Date | undefined;
|
|
101
|
+
currentVersion?: string | undefined;
|
|
102
|
+
kafkaCluster?: KafkaClusterDescription | undefined;
|
|
103
|
+
kafkaClusterClientAuthentication?:
|
|
104
|
+
| KafkaClusterClientAuthenticationDescription
|
|
105
|
+
| undefined;
|
|
106
|
+
kafkaClusterEncryptionInTransit?:
|
|
107
|
+
| KafkaClusterEncryptionInTransitDescription
|
|
108
|
+
| undefined;
|
|
109
|
+
kafkaConnectVersion?: string | undefined;
|
|
110
|
+
logDelivery?: LogDeliveryDescription | undefined;
|
|
111
|
+
plugins?: PluginDescription[] | undefined;
|
|
112
|
+
serviceExecutionRoleArn?: string | undefined;
|
|
113
|
+
workerConfiguration?: WorkerConfigurationDescription | undefined;
|
|
110
114
|
}
|
|
111
115
|
export declare const CustomPluginState: {
|
|
112
116
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -125,32 +129,32 @@ export declare const CustomPluginContentType: {
|
|
|
125
129
|
export type CustomPluginContentType =
|
|
126
130
|
(typeof CustomPluginContentType)[keyof typeof CustomPluginContentType];
|
|
127
131
|
export interface CustomPluginFileDescription {
|
|
128
|
-
fileMd5?: string;
|
|
129
|
-
fileSize?: number;
|
|
132
|
+
fileMd5?: string | undefined;
|
|
133
|
+
fileSize?: number | undefined;
|
|
130
134
|
}
|
|
131
135
|
export interface S3LocationDescription {
|
|
132
|
-
bucketArn?: string;
|
|
133
|
-
fileKey?: string;
|
|
134
|
-
objectVersion?: string;
|
|
136
|
+
bucketArn?: string | undefined;
|
|
137
|
+
fileKey?: string | undefined;
|
|
138
|
+
objectVersion?: string | undefined;
|
|
135
139
|
}
|
|
136
140
|
export interface CustomPluginLocationDescription {
|
|
137
|
-
s3Location?: S3LocationDescription;
|
|
141
|
+
s3Location?: S3LocationDescription | undefined;
|
|
138
142
|
}
|
|
139
143
|
export interface CustomPluginRevisionSummary {
|
|
140
|
-
contentType?: CustomPluginContentType;
|
|
141
|
-
creationTime?: Date;
|
|
142
|
-
description?: string;
|
|
143
|
-
fileDescription?: CustomPluginFileDescription;
|
|
144
|
-
location?: CustomPluginLocationDescription;
|
|
145
|
-
revision?: number;
|
|
144
|
+
contentType?: CustomPluginContentType | undefined;
|
|
145
|
+
creationTime?: Date | undefined;
|
|
146
|
+
description?: string | undefined;
|
|
147
|
+
fileDescription?: CustomPluginFileDescription | undefined;
|
|
148
|
+
location?: CustomPluginLocationDescription | undefined;
|
|
149
|
+
revision?: number | undefined;
|
|
146
150
|
}
|
|
147
151
|
export interface CustomPluginSummary {
|
|
148
|
-
creationTime?: Date;
|
|
149
|
-
customPluginArn?: string;
|
|
150
|
-
customPluginState?: CustomPluginState;
|
|
151
|
-
description?: string;
|
|
152
|
-
latestRevision?: CustomPluginRevisionSummary;
|
|
153
|
-
name?: string;
|
|
152
|
+
creationTime?: Date | undefined;
|
|
153
|
+
customPluginArn?: string | undefined;
|
|
154
|
+
customPluginState?: CustomPluginState | undefined;
|
|
155
|
+
description?: string | undefined;
|
|
156
|
+
latestRevision?: CustomPluginRevisionSummary | undefined;
|
|
157
|
+
name?: string | undefined;
|
|
154
158
|
}
|
|
155
159
|
export interface CustomPlugin {
|
|
156
160
|
customPluginArn: string | undefined;
|
|
@@ -160,9 +164,9 @@ export interface Plugin {
|
|
|
160
164
|
customPlugin: CustomPlugin | undefined;
|
|
161
165
|
}
|
|
162
166
|
export interface WorkerConfigurationRevisionSummary {
|
|
163
|
-
creationTime?: Date;
|
|
164
|
-
description?: string;
|
|
165
|
-
revision?: number;
|
|
167
|
+
creationTime?: Date | undefined;
|
|
168
|
+
description?: string | undefined;
|
|
169
|
+
revision?: number | undefined;
|
|
166
170
|
}
|
|
167
171
|
export declare const WorkerConfigurationState: {
|
|
168
172
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -171,15 +175,15 @@ export declare const WorkerConfigurationState: {
|
|
|
171
175
|
export type WorkerConfigurationState =
|
|
172
176
|
(typeof WorkerConfigurationState)[keyof typeof WorkerConfigurationState];
|
|
173
177
|
export interface WorkerConfigurationSummary {
|
|
174
|
-
creationTime?: Date;
|
|
175
|
-
description?: string;
|
|
176
|
-
latestRevision?: WorkerConfigurationRevisionSummary;
|
|
177
|
-
name?: string;
|
|
178
|
-
workerConfigurationArn?: string;
|
|
179
|
-
workerConfigurationState?: WorkerConfigurationState;
|
|
178
|
+
creationTime?: Date | undefined;
|
|
179
|
+
description?: string | undefined;
|
|
180
|
+
latestRevision?: WorkerConfigurationRevisionSummary | undefined;
|
|
181
|
+
name?: string | undefined;
|
|
182
|
+
workerConfigurationArn?: string | undefined;
|
|
183
|
+
workerConfigurationState?: WorkerConfigurationState | undefined;
|
|
180
184
|
}
|
|
181
185
|
export interface Vpc {
|
|
182
|
-
securityGroups?: string[];
|
|
186
|
+
securityGroups?: string[] | undefined;
|
|
183
187
|
subnets: string[] | undefined;
|
|
184
188
|
}
|
|
185
189
|
export interface ApacheKafkaCluster {
|
|
@@ -196,8 +200,8 @@ export interface AutoScaling {
|
|
|
196
200
|
maxWorkerCount: number | undefined;
|
|
197
201
|
mcuCount: number | undefined;
|
|
198
202
|
minWorkerCount: number | undefined;
|
|
199
|
-
scaleInPolicy?: ScaleInPolicy;
|
|
200
|
-
scaleOutPolicy?: ScaleOutPolicy;
|
|
203
|
+
scaleInPolicy?: ScaleInPolicy | undefined;
|
|
204
|
+
scaleOutPolicy?: ScaleOutPolicy | undefined;
|
|
201
205
|
}
|
|
202
206
|
export interface ScaleInPolicyUpdate {
|
|
203
207
|
cpuUtilizationPercentage: number | undefined;
|
|
@@ -224,20 +228,20 @@ export interface ProvisionedCapacity {
|
|
|
224
228
|
workerCount: number | undefined;
|
|
225
229
|
}
|
|
226
230
|
export interface Capacity {
|
|
227
|
-
autoScaling?: AutoScaling;
|
|
228
|
-
provisionedCapacity?: ProvisionedCapacity;
|
|
231
|
+
autoScaling?: AutoScaling | undefined;
|
|
232
|
+
provisionedCapacity?: ProvisionedCapacity | undefined;
|
|
229
233
|
}
|
|
230
234
|
export interface ProvisionedCapacityUpdate {
|
|
231
235
|
mcuCount: number | undefined;
|
|
232
236
|
workerCount: number | undefined;
|
|
233
237
|
}
|
|
234
238
|
export interface CapacityUpdate {
|
|
235
|
-
autoScaling?: AutoScalingUpdate;
|
|
236
|
-
provisionedCapacity?: ProvisionedCapacityUpdate;
|
|
239
|
+
autoScaling?: AutoScalingUpdate | undefined;
|
|
240
|
+
provisionedCapacity?: ProvisionedCapacityUpdate | undefined;
|
|
237
241
|
}
|
|
238
242
|
export interface CloudWatchLogsLogDelivery {
|
|
239
243
|
enabled: boolean | undefined;
|
|
240
|
-
logGroup?: string;
|
|
244
|
+
logGroup?: string | undefined;
|
|
241
245
|
}
|
|
242
246
|
export declare class ConflictException extends __BaseException {
|
|
243
247
|
readonly name: "ConflictException";
|
|
@@ -254,18 +258,18 @@ export interface KafkaClusterEncryptionInTransit {
|
|
|
254
258
|
encryptionType: KafkaClusterEncryptionInTransitType | undefined;
|
|
255
259
|
}
|
|
256
260
|
export interface FirehoseLogDelivery {
|
|
257
|
-
deliveryStream?: string;
|
|
261
|
+
deliveryStream?: string | undefined;
|
|
258
262
|
enabled: boolean | undefined;
|
|
259
263
|
}
|
|
260
264
|
export interface S3LogDelivery {
|
|
261
|
-
bucket?: string;
|
|
265
|
+
bucket?: string | undefined;
|
|
262
266
|
enabled: boolean | undefined;
|
|
263
|
-
prefix?: string;
|
|
267
|
+
prefix?: string | undefined;
|
|
264
268
|
}
|
|
265
269
|
export interface WorkerLogDelivery {
|
|
266
|
-
cloudWatchLogs?: CloudWatchLogsLogDelivery;
|
|
267
|
-
firehose?: FirehoseLogDelivery;
|
|
268
|
-
s3?: S3LogDelivery;
|
|
270
|
+
cloudWatchLogs?: CloudWatchLogsLogDelivery | undefined;
|
|
271
|
+
firehose?: FirehoseLogDelivery | undefined;
|
|
272
|
+
s3?: S3LogDelivery | undefined;
|
|
269
273
|
}
|
|
270
274
|
export interface LogDelivery {
|
|
271
275
|
workerLogDelivery: WorkerLogDelivery | undefined;
|
|
@@ -277,7 +281,7 @@ export interface WorkerConfiguration {
|
|
|
277
281
|
export interface CreateConnectorRequest {
|
|
278
282
|
capacity: Capacity | undefined;
|
|
279
283
|
connectorConfiguration: Record<string, string> | undefined;
|
|
280
|
-
connectorDescription?: string;
|
|
284
|
+
connectorDescription?: string | undefined;
|
|
281
285
|
connectorName: string | undefined;
|
|
282
286
|
kafkaCluster: KafkaCluster | undefined;
|
|
283
287
|
kafkaClusterClientAuthentication:
|
|
@@ -285,16 +289,16 @@ export interface CreateConnectorRequest {
|
|
|
285
289
|
| undefined;
|
|
286
290
|
kafkaClusterEncryptionInTransit: KafkaClusterEncryptionInTransit | undefined;
|
|
287
291
|
kafkaConnectVersion: string | undefined;
|
|
288
|
-
logDelivery?: LogDelivery;
|
|
292
|
+
logDelivery?: LogDelivery | undefined;
|
|
289
293
|
plugins: Plugin[] | undefined;
|
|
290
294
|
serviceExecutionRoleArn: string | undefined;
|
|
291
|
-
workerConfiguration?: WorkerConfiguration;
|
|
292
|
-
tags?: Record<string, string
|
|
295
|
+
workerConfiguration?: WorkerConfiguration | undefined;
|
|
296
|
+
tags?: Record<string, string> | undefined;
|
|
293
297
|
}
|
|
294
298
|
export interface CreateConnectorResponse {
|
|
295
|
-
connectorArn?: string;
|
|
296
|
-
connectorName?: string;
|
|
297
|
-
connectorState?: ConnectorState;
|
|
299
|
+
connectorArn?: string | undefined;
|
|
300
|
+
connectorName?: string | undefined;
|
|
301
|
+
connectorState?: ConnectorState | undefined;
|
|
298
302
|
}
|
|
299
303
|
export declare class ForbiddenException extends __BaseException {
|
|
300
304
|
readonly name: "ForbiddenException";
|
|
@@ -337,146 +341,150 @@ export declare class UnauthorizedException extends __BaseException {
|
|
|
337
341
|
export interface S3Location {
|
|
338
342
|
bucketArn: string | undefined;
|
|
339
343
|
fileKey: string | undefined;
|
|
340
|
-
objectVersion?: string;
|
|
344
|
+
objectVersion?: string | undefined;
|
|
341
345
|
}
|
|
342
346
|
export interface CustomPluginLocation {
|
|
343
347
|
s3Location: S3Location | undefined;
|
|
344
348
|
}
|
|
345
349
|
export interface CreateCustomPluginRequest {
|
|
346
350
|
contentType: CustomPluginContentType | undefined;
|
|
347
|
-
description?: string;
|
|
351
|
+
description?: string | undefined;
|
|
348
352
|
location: CustomPluginLocation | undefined;
|
|
349
353
|
name: string | undefined;
|
|
350
|
-
tags?: Record<string, string
|
|
354
|
+
tags?: Record<string, string> | undefined;
|
|
351
355
|
}
|
|
352
356
|
export interface CreateCustomPluginResponse {
|
|
353
|
-
customPluginArn?: string;
|
|
354
|
-
customPluginState?: CustomPluginState;
|
|
355
|
-
name?: string;
|
|
356
|
-
revision?: number;
|
|
357
|
+
customPluginArn?: string | undefined;
|
|
358
|
+
customPluginState?: CustomPluginState | undefined;
|
|
359
|
+
name?: string | undefined;
|
|
360
|
+
revision?: number | undefined;
|
|
357
361
|
}
|
|
358
362
|
export interface CreateWorkerConfigurationRequest {
|
|
359
|
-
description?: string;
|
|
363
|
+
description?: string | undefined;
|
|
360
364
|
name: string | undefined;
|
|
361
365
|
propertiesFileContent: string | undefined;
|
|
362
|
-
tags?: Record<string, string
|
|
366
|
+
tags?: Record<string, string> | undefined;
|
|
363
367
|
}
|
|
364
368
|
export interface CreateWorkerConfigurationResponse {
|
|
365
|
-
creationTime?: Date;
|
|
366
|
-
latestRevision?: WorkerConfigurationRevisionSummary;
|
|
367
|
-
name?: string;
|
|
368
|
-
workerConfigurationArn?: string;
|
|
369
|
-
workerConfigurationState?: WorkerConfigurationState;
|
|
369
|
+
creationTime?: Date | undefined;
|
|
370
|
+
latestRevision?: WorkerConfigurationRevisionSummary | undefined;
|
|
371
|
+
name?: string | undefined;
|
|
372
|
+
workerConfigurationArn?: string | undefined;
|
|
373
|
+
workerConfigurationState?: WorkerConfigurationState | undefined;
|
|
370
374
|
}
|
|
371
375
|
export interface DeleteConnectorRequest {
|
|
372
376
|
connectorArn: string | undefined;
|
|
373
|
-
currentVersion?: string;
|
|
377
|
+
currentVersion?: string | undefined;
|
|
374
378
|
}
|
|
375
379
|
export interface DeleteConnectorResponse {
|
|
376
|
-
connectorArn?: string;
|
|
377
|
-
connectorState?: ConnectorState;
|
|
380
|
+
connectorArn?: string | undefined;
|
|
381
|
+
connectorState?: ConnectorState | undefined;
|
|
378
382
|
}
|
|
379
383
|
export interface DeleteCustomPluginRequest {
|
|
380
384
|
customPluginArn: string | undefined;
|
|
381
385
|
}
|
|
382
386
|
export interface DeleteCustomPluginResponse {
|
|
383
|
-
customPluginArn?: string;
|
|
384
|
-
customPluginState?: CustomPluginState;
|
|
387
|
+
customPluginArn?: string | undefined;
|
|
388
|
+
customPluginState?: CustomPluginState | undefined;
|
|
385
389
|
}
|
|
386
390
|
export interface DeleteWorkerConfigurationRequest {
|
|
387
391
|
workerConfigurationArn: string | undefined;
|
|
388
392
|
}
|
|
389
393
|
export interface DeleteWorkerConfigurationResponse {
|
|
390
|
-
workerConfigurationArn?: string;
|
|
391
|
-
workerConfigurationState?: WorkerConfigurationState;
|
|
394
|
+
workerConfigurationArn?: string | undefined;
|
|
395
|
+
workerConfigurationState?: WorkerConfigurationState | undefined;
|
|
392
396
|
}
|
|
393
397
|
export interface DescribeConnectorRequest {
|
|
394
398
|
connectorArn: string | undefined;
|
|
395
399
|
}
|
|
396
400
|
export interface StateDescription {
|
|
397
|
-
code?: string;
|
|
398
|
-
message?: string;
|
|
401
|
+
code?: string | undefined;
|
|
402
|
+
message?: string | undefined;
|
|
399
403
|
}
|
|
400
404
|
export interface DescribeConnectorResponse {
|
|
401
|
-
capacity?: CapacityDescription;
|
|
402
|
-
connectorArn?: string;
|
|
403
|
-
connectorConfiguration?: Record<string, string
|
|
404
|
-
connectorDescription?: string;
|
|
405
|
-
connectorName?: string;
|
|
406
|
-
connectorState?: ConnectorState;
|
|
407
|
-
creationTime?: Date;
|
|
408
|
-
currentVersion?: string;
|
|
409
|
-
kafkaCluster?: KafkaClusterDescription;
|
|
410
|
-
kafkaClusterClientAuthentication?:
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
405
|
+
capacity?: CapacityDescription | undefined;
|
|
406
|
+
connectorArn?: string | undefined;
|
|
407
|
+
connectorConfiguration?: Record<string, string> | undefined;
|
|
408
|
+
connectorDescription?: string | undefined;
|
|
409
|
+
connectorName?: string | undefined;
|
|
410
|
+
connectorState?: ConnectorState | undefined;
|
|
411
|
+
creationTime?: Date | undefined;
|
|
412
|
+
currentVersion?: string | undefined;
|
|
413
|
+
kafkaCluster?: KafkaClusterDescription | undefined;
|
|
414
|
+
kafkaClusterClientAuthentication?:
|
|
415
|
+
| KafkaClusterClientAuthenticationDescription
|
|
416
|
+
| undefined;
|
|
417
|
+
kafkaClusterEncryptionInTransit?:
|
|
418
|
+
| KafkaClusterEncryptionInTransitDescription
|
|
419
|
+
| undefined;
|
|
420
|
+
kafkaConnectVersion?: string | undefined;
|
|
421
|
+
logDelivery?: LogDeliveryDescription | undefined;
|
|
422
|
+
plugins?: PluginDescription[] | undefined;
|
|
423
|
+
serviceExecutionRoleArn?: string | undefined;
|
|
424
|
+
workerConfiguration?: WorkerConfigurationDescription | undefined;
|
|
425
|
+
stateDescription?: StateDescription | undefined;
|
|
418
426
|
}
|
|
419
427
|
export interface DescribeCustomPluginRequest {
|
|
420
428
|
customPluginArn: string | undefined;
|
|
421
429
|
}
|
|
422
430
|
export interface DescribeCustomPluginResponse {
|
|
423
|
-
creationTime?: Date;
|
|
424
|
-
customPluginArn?: string;
|
|
425
|
-
customPluginState?: CustomPluginState;
|
|
426
|
-
description?: string;
|
|
427
|
-
latestRevision?: CustomPluginRevisionSummary;
|
|
428
|
-
name?: string;
|
|
429
|
-
stateDescription?: StateDescription;
|
|
431
|
+
creationTime?: Date | undefined;
|
|
432
|
+
customPluginArn?: string | undefined;
|
|
433
|
+
customPluginState?: CustomPluginState | undefined;
|
|
434
|
+
description?: string | undefined;
|
|
435
|
+
latestRevision?: CustomPluginRevisionSummary | undefined;
|
|
436
|
+
name?: string | undefined;
|
|
437
|
+
stateDescription?: StateDescription | undefined;
|
|
430
438
|
}
|
|
431
439
|
export interface DescribeWorkerConfigurationRequest {
|
|
432
440
|
workerConfigurationArn: string | undefined;
|
|
433
441
|
}
|
|
434
442
|
export interface WorkerConfigurationRevisionDescription {
|
|
435
|
-
creationTime?: Date;
|
|
436
|
-
description?: string;
|
|
437
|
-
propertiesFileContent?: string;
|
|
438
|
-
revision?: number;
|
|
443
|
+
creationTime?: Date | undefined;
|
|
444
|
+
description?: string | undefined;
|
|
445
|
+
propertiesFileContent?: string | undefined;
|
|
446
|
+
revision?: number | undefined;
|
|
439
447
|
}
|
|
440
448
|
export interface DescribeWorkerConfigurationResponse {
|
|
441
|
-
creationTime?: Date;
|
|
442
|
-
description?: string;
|
|
443
|
-
latestRevision?: WorkerConfigurationRevisionDescription;
|
|
444
|
-
name?: string;
|
|
445
|
-
workerConfigurationArn?: string;
|
|
446
|
-
workerConfigurationState?: WorkerConfigurationState;
|
|
449
|
+
creationTime?: Date | undefined;
|
|
450
|
+
description?: string | undefined;
|
|
451
|
+
latestRevision?: WorkerConfigurationRevisionDescription | undefined;
|
|
452
|
+
name?: string | undefined;
|
|
453
|
+
workerConfigurationArn?: string | undefined;
|
|
454
|
+
workerConfigurationState?: WorkerConfigurationState | undefined;
|
|
447
455
|
}
|
|
448
456
|
export interface ListConnectorsRequest {
|
|
449
|
-
connectorNamePrefix?: string;
|
|
450
|
-
maxResults?: number;
|
|
451
|
-
nextToken?: string;
|
|
457
|
+
connectorNamePrefix?: string | undefined;
|
|
458
|
+
maxResults?: number | undefined;
|
|
459
|
+
nextToken?: string | undefined;
|
|
452
460
|
}
|
|
453
461
|
export interface ListConnectorsResponse {
|
|
454
|
-
connectors?: ConnectorSummary[];
|
|
455
|
-
nextToken?: string;
|
|
462
|
+
connectors?: ConnectorSummary[] | undefined;
|
|
463
|
+
nextToken?: string | undefined;
|
|
456
464
|
}
|
|
457
465
|
export interface ListCustomPluginsRequest {
|
|
458
|
-
maxResults?: number;
|
|
459
|
-
nextToken?: string;
|
|
460
|
-
namePrefix?: string;
|
|
466
|
+
maxResults?: number | undefined;
|
|
467
|
+
nextToken?: string | undefined;
|
|
468
|
+
namePrefix?: string | undefined;
|
|
461
469
|
}
|
|
462
470
|
export interface ListCustomPluginsResponse {
|
|
463
|
-
customPlugins?: CustomPluginSummary[];
|
|
464
|
-
nextToken?: string;
|
|
471
|
+
customPlugins?: CustomPluginSummary[] | undefined;
|
|
472
|
+
nextToken?: string | undefined;
|
|
465
473
|
}
|
|
466
474
|
export interface ListTagsForResourceRequest {
|
|
467
475
|
resourceArn: string | undefined;
|
|
468
476
|
}
|
|
469
477
|
export interface ListTagsForResourceResponse {
|
|
470
|
-
tags?: Record<string, string
|
|
478
|
+
tags?: Record<string, string> | undefined;
|
|
471
479
|
}
|
|
472
480
|
export interface ListWorkerConfigurationsRequest {
|
|
473
|
-
maxResults?: number;
|
|
474
|
-
nextToken?: string;
|
|
475
|
-
namePrefix?: string;
|
|
481
|
+
maxResults?: number | undefined;
|
|
482
|
+
nextToken?: string | undefined;
|
|
483
|
+
namePrefix?: string | undefined;
|
|
476
484
|
}
|
|
477
485
|
export interface ListWorkerConfigurationsResponse {
|
|
478
|
-
nextToken?: string;
|
|
479
|
-
workerConfigurations?: WorkerConfigurationSummary[];
|
|
486
|
+
nextToken?: string | undefined;
|
|
487
|
+
workerConfigurations?: WorkerConfigurationSummary[] | undefined;
|
|
480
488
|
}
|
|
481
489
|
export interface TagResourceRequest {
|
|
482
490
|
resourceArn: string | undefined;
|
|
@@ -494,8 +502,8 @@ export interface UpdateConnectorRequest {
|
|
|
494
502
|
currentVersion: string | undefined;
|
|
495
503
|
}
|
|
496
504
|
export interface UpdateConnectorResponse {
|
|
497
|
-
connectorArn?: string;
|
|
498
|
-
connectorState?: ConnectorState;
|
|
505
|
+
connectorArn?: string | undefined;
|
|
506
|
+
connectorState?: ConnectorState | undefined;
|
|
499
507
|
}
|
|
500
508
|
export declare const CreateConnectorRequestFilterSensitiveLog: (
|
|
501
509
|
obj: CreateConnectorRequest
|
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.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-kafkaconnect",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|