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