@aws-sdk/client-kafkaconnect 3.131.0 → 3.137.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/CHANGELOG.md +11 -0
- package/dist-cjs/commands/CreateConnectorCommand.js +2 -2
- package/dist-cjs/commands/CreateCustomPluginCommand.js +2 -2
- package/dist-cjs/commands/CreateWorkerConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DeleteConnectorCommand.js +2 -2
- package/dist-cjs/commands/DeleteCustomPluginCommand.js +2 -2
- package/dist-cjs/commands/DescribeConnectorCommand.js +2 -2
- package/dist-cjs/commands/DescribeCustomPluginCommand.js +2 -2
- package/dist-cjs/commands/DescribeWorkerConfigurationCommand.js +2 -2
- package/dist-cjs/commands/ListConnectorsCommand.js +2 -2
- package/dist-cjs/commands/ListCustomPluginsCommand.js +2 -2
- package/dist-cjs/commands/ListWorkerConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/UpdateConnectorCommand.js +2 -2
- package/dist-cjs/models/models_0.js +317 -471
- package/dist-es/commands/CreateConnectorCommand.js +3 -3
- package/dist-es/commands/CreateCustomPluginCommand.js +3 -3
- package/dist-es/commands/CreateWorkerConfigurationCommand.js +3 -3
- package/dist-es/commands/DeleteConnectorCommand.js +3 -3
- package/dist-es/commands/DeleteCustomPluginCommand.js +3 -3
- package/dist-es/commands/DescribeConnectorCommand.js +3 -3
- package/dist-es/commands/DescribeCustomPluginCommand.js +3 -3
- package/dist-es/commands/DescribeWorkerConfigurationCommand.js +3 -3
- package/dist-es/commands/ListConnectorsCommand.js +3 -3
- package/dist-es/commands/ListCustomPluginsCommand.js +3 -3
- package/dist-es/commands/ListWorkerConfigurationsCommand.js +3 -3
- package/dist-es/commands/UpdateConnectorCommand.js +3 -3
- package/dist-es/models/models_0.js +79 -310
- package/dist-types/models/models_0.d.ts +308 -462
- package/dist-types/ts3.4/models/models_0.d.ts +154 -308
- package/package.json +6 -6
|
@@ -10,12 +10,6 @@ export interface ScaleInPolicyDescription {
|
|
|
10
10
|
*/
|
|
11
11
|
cpuUtilizationPercentage?: number;
|
|
12
12
|
}
|
|
13
|
-
export declare namespace ScaleInPolicyDescription {
|
|
14
|
-
/**
|
|
15
|
-
* @internal
|
|
16
|
-
*/
|
|
17
|
-
const filterSensitiveLog: (obj: ScaleInPolicyDescription) => any;
|
|
18
|
-
}
|
|
19
13
|
/**
|
|
20
14
|
* <p>The description of the scale-out policy for the connector.</p>
|
|
21
15
|
*/
|
|
@@ -26,12 +20,6 @@ export interface ScaleOutPolicyDescription {
|
|
|
26
20
|
*/
|
|
27
21
|
cpuUtilizationPercentage?: number;
|
|
28
22
|
}
|
|
29
|
-
export declare namespace ScaleOutPolicyDescription {
|
|
30
|
-
/**
|
|
31
|
-
* @internal
|
|
32
|
-
*/
|
|
33
|
-
const filterSensitiveLog: (obj: ScaleOutPolicyDescription) => any;
|
|
34
|
-
}
|
|
35
23
|
/**
|
|
36
24
|
* <p>Information about the auto scaling parameters for the connector.</p>
|
|
37
25
|
*/
|
|
@@ -58,12 +46,6 @@ export interface AutoScalingDescription {
|
|
|
58
46
|
*/
|
|
59
47
|
scaleOutPolicy?: ScaleOutPolicyDescription;
|
|
60
48
|
}
|
|
61
|
-
export declare namespace AutoScalingDescription {
|
|
62
|
-
/**
|
|
63
|
-
* @internal
|
|
64
|
-
*/
|
|
65
|
-
const filterSensitiveLog: (obj: AutoScalingDescription) => any;
|
|
66
|
-
}
|
|
67
49
|
/**
|
|
68
50
|
* <p>The description of a connector's provisioned capacity.</p>
|
|
69
51
|
*/
|
|
@@ -78,12 +60,6 @@ export interface ProvisionedCapacityDescription {
|
|
|
78
60
|
*/
|
|
79
61
|
workerCount?: number;
|
|
80
62
|
}
|
|
81
|
-
export declare namespace ProvisionedCapacityDescription {
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
const filterSensitiveLog: (obj: ProvisionedCapacityDescription) => any;
|
|
86
|
-
}
|
|
87
63
|
/**
|
|
88
64
|
* <p>A description of the connector's capacity.</p>
|
|
89
65
|
*/
|
|
@@ -97,12 +73,6 @@ export interface CapacityDescription {
|
|
|
97
73
|
*/
|
|
98
74
|
provisionedCapacity?: ProvisionedCapacityDescription;
|
|
99
75
|
}
|
|
100
|
-
export declare namespace CapacityDescription {
|
|
101
|
-
/**
|
|
102
|
-
* @internal
|
|
103
|
-
*/
|
|
104
|
-
const filterSensitiveLog: (obj: CapacityDescription) => any;
|
|
105
|
-
}
|
|
106
76
|
export declare enum ConnectorState {
|
|
107
77
|
CREATING = "CREATING",
|
|
108
78
|
DELETING = "DELETING",
|
|
@@ -123,12 +93,6 @@ export interface VpcDescription {
|
|
|
123
93
|
*/
|
|
124
94
|
subnets?: string[];
|
|
125
95
|
}
|
|
126
|
-
export declare namespace VpcDescription {
|
|
127
|
-
/**
|
|
128
|
-
* @internal
|
|
129
|
-
*/
|
|
130
|
-
const filterSensitiveLog: (obj: VpcDescription) => any;
|
|
131
|
-
}
|
|
132
96
|
/**
|
|
133
97
|
* <p>The description of the Apache Kafka cluster to which the connector is connected.</p>
|
|
134
98
|
*/
|
|
@@ -143,12 +107,6 @@ export interface ApacheKafkaClusterDescription {
|
|
|
143
107
|
*/
|
|
144
108
|
vpc?: VpcDescription;
|
|
145
109
|
}
|
|
146
|
-
export declare namespace ApacheKafkaClusterDescription {
|
|
147
|
-
/**
|
|
148
|
-
* @internal
|
|
149
|
-
*/
|
|
150
|
-
const filterSensitiveLog: (obj: ApacheKafkaClusterDescription) => any;
|
|
151
|
-
}
|
|
152
110
|
/**
|
|
153
111
|
* <p>Details of how to connect to the Apache Kafka cluster.</p>
|
|
154
112
|
*/
|
|
@@ -158,12 +116,6 @@ export interface KafkaClusterDescription {
|
|
|
158
116
|
*/
|
|
159
117
|
apacheKafkaCluster?: ApacheKafkaClusterDescription;
|
|
160
118
|
}
|
|
161
|
-
export declare namespace KafkaClusterDescription {
|
|
162
|
-
/**
|
|
163
|
-
* @internal
|
|
164
|
-
*/
|
|
165
|
-
const filterSensitiveLog: (obj: KafkaClusterDescription) => any;
|
|
166
|
-
}
|
|
167
119
|
export declare enum KafkaClusterClientAuthenticationType {
|
|
168
120
|
IAM = "IAM",
|
|
169
121
|
NONE = "NONE"
|
|
@@ -179,12 +131,6 @@ export interface KafkaClusterClientAuthenticationDescription {
|
|
|
179
131
|
*/
|
|
180
132
|
authenticationType?: KafkaClusterClientAuthenticationType | string;
|
|
181
133
|
}
|
|
182
|
-
export declare namespace KafkaClusterClientAuthenticationDescription {
|
|
183
|
-
/**
|
|
184
|
-
* @internal
|
|
185
|
-
*/
|
|
186
|
-
const filterSensitiveLog: (obj: KafkaClusterClientAuthenticationDescription) => any;
|
|
187
|
-
}
|
|
188
134
|
export declare enum KafkaClusterEncryptionInTransitType {
|
|
189
135
|
PLAINTEXT = "PLAINTEXT",
|
|
190
136
|
TLS = "TLS"
|
|
@@ -198,12 +144,6 @@ export interface KafkaClusterEncryptionInTransitDescription {
|
|
|
198
144
|
*/
|
|
199
145
|
encryptionType?: KafkaClusterEncryptionInTransitType | string;
|
|
200
146
|
}
|
|
201
|
-
export declare namespace KafkaClusterEncryptionInTransitDescription {
|
|
202
|
-
/**
|
|
203
|
-
* @internal
|
|
204
|
-
*/
|
|
205
|
-
const filterSensitiveLog: (obj: KafkaClusterEncryptionInTransitDescription) => any;
|
|
206
|
-
}
|
|
207
147
|
/**
|
|
208
148
|
* <p>A description of the log delivery settings.</p>
|
|
209
149
|
*/
|
|
@@ -217,12 +157,6 @@ export interface CloudWatchLogsLogDeliveryDescription {
|
|
|
217
157
|
*/
|
|
218
158
|
logGroup?: string;
|
|
219
159
|
}
|
|
220
|
-
export declare namespace CloudWatchLogsLogDeliveryDescription {
|
|
221
|
-
/**
|
|
222
|
-
* @internal
|
|
223
|
-
*/
|
|
224
|
-
const filterSensitiveLog: (obj: CloudWatchLogsLogDeliveryDescription) => any;
|
|
225
|
-
}
|
|
226
160
|
/**
|
|
227
161
|
* <p>A description of the settings for delivering logs to Amazon Kinesis Data
|
|
228
162
|
* Firehose.</p>
|
|
@@ -238,12 +172,6 @@ export interface FirehoseLogDeliveryDescription {
|
|
|
238
172
|
*/
|
|
239
173
|
enabled?: boolean;
|
|
240
174
|
}
|
|
241
|
-
export declare namespace FirehoseLogDeliveryDescription {
|
|
242
|
-
/**
|
|
243
|
-
* @internal
|
|
244
|
-
*/
|
|
245
|
-
const filterSensitiveLog: (obj: FirehoseLogDeliveryDescription) => any;
|
|
246
|
-
}
|
|
247
175
|
/**
|
|
248
176
|
* <p>The description of the details about delivering logs to Amazon S3.</p>
|
|
249
177
|
*/
|
|
@@ -261,12 +189,6 @@ export interface S3LogDeliveryDescription {
|
|
|
261
189
|
*/
|
|
262
190
|
prefix?: string;
|
|
263
191
|
}
|
|
264
|
-
export declare namespace S3LogDeliveryDescription {
|
|
265
|
-
/**
|
|
266
|
-
* @internal
|
|
267
|
-
*/
|
|
268
|
-
const filterSensitiveLog: (obj: S3LogDeliveryDescription) => any;
|
|
269
|
-
}
|
|
270
192
|
/**
|
|
271
193
|
* <p>Workers can send worker logs to different destination types. This configuration
|
|
272
194
|
* specifies the details of these destinations.</p>
|
|
@@ -285,12 +207,6 @@ export interface WorkerLogDeliveryDescription {
|
|
|
285
207
|
*/
|
|
286
208
|
s3?: S3LogDeliveryDescription;
|
|
287
209
|
}
|
|
288
|
-
export declare namespace WorkerLogDeliveryDescription {
|
|
289
|
-
/**
|
|
290
|
-
* @internal
|
|
291
|
-
*/
|
|
292
|
-
const filterSensitiveLog: (obj: WorkerLogDeliveryDescription) => any;
|
|
293
|
-
}
|
|
294
210
|
/**
|
|
295
211
|
* <p>The description of the log delivery settings.</p>
|
|
296
212
|
*/
|
|
@@ -301,12 +217,6 @@ export interface LogDeliveryDescription {
|
|
|
301
217
|
*/
|
|
302
218
|
workerLogDelivery?: WorkerLogDeliveryDescription;
|
|
303
219
|
}
|
|
304
|
-
export declare namespace LogDeliveryDescription {
|
|
305
|
-
/**
|
|
306
|
-
* @internal
|
|
307
|
-
*/
|
|
308
|
-
const filterSensitiveLog: (obj: LogDeliveryDescription) => any;
|
|
309
|
-
}
|
|
310
220
|
/**
|
|
311
221
|
* <p>Details about a custom plugin.</p>
|
|
312
222
|
*/
|
|
@@ -320,12 +230,6 @@ export interface CustomPluginDescription {
|
|
|
320
230
|
*/
|
|
321
231
|
revision?: number;
|
|
322
232
|
}
|
|
323
|
-
export declare namespace CustomPluginDescription {
|
|
324
|
-
/**
|
|
325
|
-
* @internal
|
|
326
|
-
*/
|
|
327
|
-
const filterSensitiveLog: (obj: CustomPluginDescription) => any;
|
|
328
|
-
}
|
|
329
233
|
/**
|
|
330
234
|
* <p>The description of the plugin.</p>
|
|
331
235
|
*/
|
|
@@ -335,12 +239,6 @@ export interface PluginDescription {
|
|
|
335
239
|
*/
|
|
336
240
|
customPlugin?: CustomPluginDescription;
|
|
337
241
|
}
|
|
338
|
-
export declare namespace PluginDescription {
|
|
339
|
-
/**
|
|
340
|
-
* @internal
|
|
341
|
-
*/
|
|
342
|
-
const filterSensitiveLog: (obj: PluginDescription) => any;
|
|
343
|
-
}
|
|
344
242
|
/**
|
|
345
243
|
* <p>The description of the worker configuration.</p>
|
|
346
244
|
*/
|
|
@@ -354,12 +252,6 @@ export interface WorkerConfigurationDescription {
|
|
|
354
252
|
*/
|
|
355
253
|
workerConfigurationArn?: string;
|
|
356
254
|
}
|
|
357
|
-
export declare namespace WorkerConfigurationDescription {
|
|
358
|
-
/**
|
|
359
|
-
* @internal
|
|
360
|
-
*/
|
|
361
|
-
const filterSensitiveLog: (obj: WorkerConfigurationDescription) => any;
|
|
362
|
-
}
|
|
363
255
|
/**
|
|
364
256
|
* <p>Summary of a connector.</p>
|
|
365
257
|
*/
|
|
@@ -428,12 +320,6 @@ export interface ConnectorSummary {
|
|
|
428
320
|
*/
|
|
429
321
|
workerConfiguration?: WorkerConfigurationDescription;
|
|
430
322
|
}
|
|
431
|
-
export declare namespace ConnectorSummary {
|
|
432
|
-
/**
|
|
433
|
-
* @internal
|
|
434
|
-
*/
|
|
435
|
-
const filterSensitiveLog: (obj: ConnectorSummary) => any;
|
|
436
|
-
}
|
|
437
323
|
export declare enum CustomPluginState {
|
|
438
324
|
ACTIVE = "ACTIVE",
|
|
439
325
|
CREATE_FAILED = "CREATE_FAILED",
|
|
@@ -460,12 +346,6 @@ export interface CustomPluginFileDescription {
|
|
|
460
346
|
*/
|
|
461
347
|
fileSize?: number;
|
|
462
348
|
}
|
|
463
|
-
export declare namespace CustomPluginFileDescription {
|
|
464
|
-
/**
|
|
465
|
-
* @internal
|
|
466
|
-
*/
|
|
467
|
-
const filterSensitiveLog: (obj: CustomPluginFileDescription) => any;
|
|
468
|
-
}
|
|
469
349
|
/**
|
|
470
350
|
* <p>The description of the location of an object in Amazon S3.</p>
|
|
471
351
|
*/
|
|
@@ -483,12 +363,6 @@ export interface S3LocationDescription {
|
|
|
483
363
|
*/
|
|
484
364
|
objectVersion?: string;
|
|
485
365
|
}
|
|
486
|
-
export declare namespace S3LocationDescription {
|
|
487
|
-
/**
|
|
488
|
-
* @internal
|
|
489
|
-
*/
|
|
490
|
-
const filterSensitiveLog: (obj: S3LocationDescription) => any;
|
|
491
|
-
}
|
|
492
366
|
/**
|
|
493
367
|
* <p>Information about the location of a custom plugin.</p>
|
|
494
368
|
*/
|
|
@@ -499,12 +373,6 @@ export interface CustomPluginLocationDescription {
|
|
|
499
373
|
*/
|
|
500
374
|
s3Location?: S3LocationDescription;
|
|
501
375
|
}
|
|
502
|
-
export declare namespace CustomPluginLocationDescription {
|
|
503
|
-
/**
|
|
504
|
-
* @internal
|
|
505
|
-
*/
|
|
506
|
-
const filterSensitiveLog: (obj: CustomPluginLocationDescription) => any;
|
|
507
|
-
}
|
|
508
376
|
/**
|
|
509
377
|
* <p>Details about the revision of a custom plugin.</p>
|
|
510
378
|
*/
|
|
@@ -534,12 +402,6 @@ export interface CustomPluginRevisionSummary {
|
|
|
534
402
|
*/
|
|
535
403
|
revision?: number;
|
|
536
404
|
}
|
|
537
|
-
export declare namespace CustomPluginRevisionSummary {
|
|
538
|
-
/**
|
|
539
|
-
* @internal
|
|
540
|
-
*/
|
|
541
|
-
const filterSensitiveLog: (obj: CustomPluginRevisionSummary) => any;
|
|
542
|
-
}
|
|
543
405
|
/**
|
|
544
406
|
* <p>A summary of the custom plugin.</p>
|
|
545
407
|
*/
|
|
@@ -569,12 +431,6 @@ export interface CustomPluginSummary {
|
|
|
569
431
|
*/
|
|
570
432
|
name?: string;
|
|
571
433
|
}
|
|
572
|
-
export declare namespace CustomPluginSummary {
|
|
573
|
-
/**
|
|
574
|
-
* @internal
|
|
575
|
-
*/
|
|
576
|
-
const filterSensitiveLog: (obj: CustomPluginSummary) => any;
|
|
577
|
-
}
|
|
578
434
|
/**
|
|
579
435
|
* <p>A plugin is an AWS resource that contains the code that defines a connector's
|
|
580
436
|
* logic.</p>
|
|
@@ -589,12 +445,6 @@ export interface CustomPlugin {
|
|
|
589
445
|
*/
|
|
590
446
|
revision: number | undefined;
|
|
591
447
|
}
|
|
592
|
-
export declare namespace CustomPlugin {
|
|
593
|
-
/**
|
|
594
|
-
* @internal
|
|
595
|
-
*/
|
|
596
|
-
const filterSensitiveLog: (obj: CustomPlugin) => any;
|
|
597
|
-
}
|
|
598
448
|
/**
|
|
599
449
|
* <p>A plugin is an AWS resource that contains the code that defines your connector logic.
|
|
600
450
|
* </p>
|
|
@@ -605,12 +455,6 @@ export interface Plugin {
|
|
|
605
455
|
*/
|
|
606
456
|
customPlugin: CustomPlugin | undefined;
|
|
607
457
|
}
|
|
608
|
-
export declare namespace Plugin {
|
|
609
|
-
/**
|
|
610
|
-
* @internal
|
|
611
|
-
*/
|
|
612
|
-
const filterSensitiveLog: (obj: Plugin) => any;
|
|
613
|
-
}
|
|
614
458
|
/**
|
|
615
459
|
* <p>The summary of a worker configuration revision.</p>
|
|
616
460
|
*/
|
|
@@ -628,12 +472,6 @@ export interface WorkerConfigurationRevisionSummary {
|
|
|
628
472
|
*/
|
|
629
473
|
revision?: number;
|
|
630
474
|
}
|
|
631
|
-
export declare namespace WorkerConfigurationRevisionSummary {
|
|
632
|
-
/**
|
|
633
|
-
* @internal
|
|
634
|
-
*/
|
|
635
|
-
const filterSensitiveLog: (obj: WorkerConfigurationRevisionSummary) => any;
|
|
636
|
-
}
|
|
637
475
|
/**
|
|
638
476
|
* <p>The summary of a worker configuration.</p>
|
|
639
477
|
*/
|
|
@@ -659,12 +497,6 @@ export interface WorkerConfigurationSummary {
|
|
|
659
497
|
*/
|
|
660
498
|
workerConfigurationArn?: string;
|
|
661
499
|
}
|
|
662
|
-
export declare namespace WorkerConfigurationSummary {
|
|
663
|
-
/**
|
|
664
|
-
* @internal
|
|
665
|
-
*/
|
|
666
|
-
const filterSensitiveLog: (obj: WorkerConfigurationSummary) => any;
|
|
667
|
-
}
|
|
668
500
|
/**
|
|
669
501
|
* <p>Information about the VPC in which the connector resides.</p>
|
|
670
502
|
*/
|
|
@@ -678,12 +510,6 @@ export interface Vpc {
|
|
|
678
510
|
*/
|
|
679
511
|
subnets: string[] | undefined;
|
|
680
512
|
}
|
|
681
|
-
export declare namespace Vpc {
|
|
682
|
-
/**
|
|
683
|
-
* @internal
|
|
684
|
-
*/
|
|
685
|
-
const filterSensitiveLog: (obj: Vpc) => any;
|
|
686
|
-
}
|
|
687
513
|
/**
|
|
688
514
|
* <p>The details of the Apache Kafka cluster to which the connector is connected.</p>
|
|
689
515
|
*/
|
|
@@ -698,12 +524,6 @@ export interface ApacheKafkaCluster {
|
|
|
698
524
|
*/
|
|
699
525
|
vpc: Vpc | undefined;
|
|
700
526
|
}
|
|
701
|
-
export declare namespace ApacheKafkaCluster {
|
|
702
|
-
/**
|
|
703
|
-
* @internal
|
|
704
|
-
*/
|
|
705
|
-
const filterSensitiveLog: (obj: ApacheKafkaCluster) => any;
|
|
706
|
-
}
|
|
707
527
|
/**
|
|
708
528
|
* <p>The scale-in policy for the connector.</p>
|
|
709
529
|
*/
|
|
@@ -714,12 +534,6 @@ export interface ScaleInPolicy {
|
|
|
714
534
|
*/
|
|
715
535
|
cpuUtilizationPercentage: number | undefined;
|
|
716
536
|
}
|
|
717
|
-
export declare namespace ScaleInPolicy {
|
|
718
|
-
/**
|
|
719
|
-
* @internal
|
|
720
|
-
*/
|
|
721
|
-
const filterSensitiveLog: (obj: ScaleInPolicy) => any;
|
|
722
|
-
}
|
|
723
537
|
/**
|
|
724
538
|
* <p>The scale-out policy for the connector.</p>
|
|
725
539
|
*/
|
|
@@ -730,12 +544,6 @@ export interface ScaleOutPolicy {
|
|
|
730
544
|
*/
|
|
731
545
|
cpuUtilizationPercentage: number | undefined;
|
|
732
546
|
}
|
|
733
|
-
export declare namespace ScaleOutPolicy {
|
|
734
|
-
/**
|
|
735
|
-
* @internal
|
|
736
|
-
*/
|
|
737
|
-
const filterSensitiveLog: (obj: ScaleOutPolicy) => any;
|
|
738
|
-
}
|
|
739
547
|
/**
|
|
740
548
|
* <p>Specifies how the connector scales.</p>
|
|
741
549
|
*/
|
|
@@ -762,12 +570,6 @@ export interface AutoScaling {
|
|
|
762
570
|
*/
|
|
763
571
|
scaleOutPolicy?: ScaleOutPolicy;
|
|
764
572
|
}
|
|
765
|
-
export declare namespace AutoScaling {
|
|
766
|
-
/**
|
|
767
|
-
* @internal
|
|
768
|
-
*/
|
|
769
|
-
const filterSensitiveLog: (obj: AutoScaling) => any;
|
|
770
|
-
}
|
|
771
573
|
/**
|
|
772
574
|
* <p>An update to the connector's scale-in policy.</p>
|
|
773
575
|
*/
|
|
@@ -778,12 +580,6 @@ export interface ScaleInPolicyUpdate {
|
|
|
778
580
|
*/
|
|
779
581
|
cpuUtilizationPercentage: number | undefined;
|
|
780
582
|
}
|
|
781
|
-
export declare namespace ScaleInPolicyUpdate {
|
|
782
|
-
/**
|
|
783
|
-
* @internal
|
|
784
|
-
*/
|
|
785
|
-
const filterSensitiveLog: (obj: ScaleInPolicyUpdate) => any;
|
|
786
|
-
}
|
|
787
583
|
/**
|
|
788
584
|
* <p>An update to the connector's scale-out policy.</p>
|
|
789
585
|
*/
|
|
@@ -794,12 +590,6 @@ export interface ScaleOutPolicyUpdate {
|
|
|
794
590
|
*/
|
|
795
591
|
cpuUtilizationPercentage: number | undefined;
|
|
796
592
|
}
|
|
797
|
-
export declare namespace ScaleOutPolicyUpdate {
|
|
798
|
-
/**
|
|
799
|
-
* @internal
|
|
800
|
-
*/
|
|
801
|
-
const filterSensitiveLog: (obj: ScaleOutPolicyUpdate) => any;
|
|
802
|
-
}
|
|
803
593
|
/**
|
|
804
594
|
* <p>The updates to the auto scaling parameters for the connector.</p>
|
|
805
595
|
*/
|
|
@@ -826,12 +616,6 @@ export interface AutoScalingUpdate {
|
|
|
826
616
|
*/
|
|
827
617
|
scaleOutPolicy: ScaleOutPolicyUpdate | undefined;
|
|
828
618
|
}
|
|
829
|
-
export declare namespace AutoScalingUpdate {
|
|
830
|
-
/**
|
|
831
|
-
* @internal
|
|
832
|
-
*/
|
|
833
|
-
const filterSensitiveLog: (obj: AutoScalingUpdate) => any;
|
|
834
|
-
}
|
|
835
619
|
/**
|
|
836
620
|
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
837
621
|
* retry it.</p>
|
|
@@ -858,12 +642,6 @@ export interface ProvisionedCapacity {
|
|
|
858
642
|
*/
|
|
859
643
|
workerCount: number | undefined;
|
|
860
644
|
}
|
|
861
|
-
export declare namespace ProvisionedCapacity {
|
|
862
|
-
/**
|
|
863
|
-
* @internal
|
|
864
|
-
*/
|
|
865
|
-
const filterSensitiveLog: (obj: ProvisionedCapacity) => any;
|
|
866
|
-
}
|
|
867
645
|
/**
|
|
868
646
|
* <p>Information about the capacity of the connector, whether it is auto scaled or
|
|
869
647
|
* provisioned.</p>
|
|
@@ -878,12 +656,6 @@ export interface Capacity {
|
|
|
878
656
|
*/
|
|
879
657
|
provisionedCapacity?: ProvisionedCapacity;
|
|
880
658
|
}
|
|
881
|
-
export declare namespace Capacity {
|
|
882
|
-
/**
|
|
883
|
-
* @internal
|
|
884
|
-
*/
|
|
885
|
-
const filterSensitiveLog: (obj: Capacity) => any;
|
|
886
|
-
}
|
|
887
659
|
/**
|
|
888
660
|
* <p>An update to a connector's fixed capacity.</p>
|
|
889
661
|
*/
|
|
@@ -898,12 +670,6 @@ export interface ProvisionedCapacityUpdate {
|
|
|
898
670
|
*/
|
|
899
671
|
workerCount: number | undefined;
|
|
900
672
|
}
|
|
901
|
-
export declare namespace ProvisionedCapacityUpdate {
|
|
902
|
-
/**
|
|
903
|
-
* @internal
|
|
904
|
-
*/
|
|
905
|
-
const filterSensitiveLog: (obj: ProvisionedCapacityUpdate) => any;
|
|
906
|
-
}
|
|
907
673
|
/**
|
|
908
674
|
* <p>The target capacity for the connector. The capacity can be auto scaled or
|
|
909
675
|
* provisioned.</p>
|
|
@@ -918,12 +684,6 @@ export interface CapacityUpdate {
|
|
|
918
684
|
*/
|
|
919
685
|
provisionedCapacity?: ProvisionedCapacityUpdate;
|
|
920
686
|
}
|
|
921
|
-
export declare namespace CapacityUpdate {
|
|
922
|
-
/**
|
|
923
|
-
* @internal
|
|
924
|
-
*/
|
|
925
|
-
const filterSensitiveLog: (obj: CapacityUpdate) => any;
|
|
926
|
-
}
|
|
927
687
|
/**
|
|
928
688
|
* <p>The settings for delivering connector logs to Amazon CloudWatch Logs.</p>
|
|
929
689
|
*/
|
|
@@ -937,12 +697,6 @@ export interface CloudWatchLogsLogDelivery {
|
|
|
937
697
|
*/
|
|
938
698
|
logGroup?: string;
|
|
939
699
|
}
|
|
940
|
-
export declare namespace CloudWatchLogsLogDelivery {
|
|
941
|
-
/**
|
|
942
|
-
* @internal
|
|
943
|
-
*/
|
|
944
|
-
const filterSensitiveLog: (obj: CloudWatchLogsLogDelivery) => any;
|
|
945
|
-
}
|
|
946
700
|
/**
|
|
947
701
|
* <p>HTTP Status Code 409: Conflict. A resource with this name already exists. Retry your
|
|
948
702
|
* request with another name.</p>
|
|
@@ -964,12 +718,6 @@ export interface KafkaCluster {
|
|
|
964
718
|
*/
|
|
965
719
|
apacheKafkaCluster: ApacheKafkaCluster | undefined;
|
|
966
720
|
}
|
|
967
|
-
export declare namespace KafkaCluster {
|
|
968
|
-
/**
|
|
969
|
-
* @internal
|
|
970
|
-
*/
|
|
971
|
-
const filterSensitiveLog: (obj: KafkaCluster) => any;
|
|
972
|
-
}
|
|
973
721
|
/**
|
|
974
722
|
* <p>The client authentication information used in order to authenticate with the Apache
|
|
975
723
|
* Kafka cluster.</p>
|
|
@@ -981,12 +729,6 @@ export interface KafkaClusterClientAuthentication {
|
|
|
981
729
|
*/
|
|
982
730
|
authenticationType: KafkaClusterClientAuthenticationType | string | undefined;
|
|
983
731
|
}
|
|
984
|
-
export declare namespace KafkaClusterClientAuthentication {
|
|
985
|
-
/**
|
|
986
|
-
* @internal
|
|
987
|
-
*/
|
|
988
|
-
const filterSensitiveLog: (obj: KafkaClusterClientAuthentication) => any;
|
|
989
|
-
}
|
|
990
732
|
/**
|
|
991
733
|
* <p>Details of encryption in transit to the Apache Kafka cluster.</p>
|
|
992
734
|
*/
|
|
@@ -996,12 +738,6 @@ export interface KafkaClusterEncryptionInTransit {
|
|
|
996
738
|
*/
|
|
997
739
|
encryptionType: KafkaClusterEncryptionInTransitType | string | undefined;
|
|
998
740
|
}
|
|
999
|
-
export declare namespace KafkaClusterEncryptionInTransit {
|
|
1000
|
-
/**
|
|
1001
|
-
* @internal
|
|
1002
|
-
*/
|
|
1003
|
-
const filterSensitiveLog: (obj: KafkaClusterEncryptionInTransit) => any;
|
|
1004
|
-
}
|
|
1005
741
|
/**
|
|
1006
742
|
* <p>The settings for delivering logs to Amazon Kinesis Data Firehose.</p>
|
|
1007
743
|
*/
|
|
@@ -1016,12 +752,6 @@ export interface FirehoseLogDelivery {
|
|
|
1016
752
|
*/
|
|
1017
753
|
enabled: boolean | undefined;
|
|
1018
754
|
}
|
|
1019
|
-
export declare namespace FirehoseLogDelivery {
|
|
1020
|
-
/**
|
|
1021
|
-
* @internal
|
|
1022
|
-
*/
|
|
1023
|
-
const filterSensitiveLog: (obj: FirehoseLogDelivery) => any;
|
|
1024
|
-
}
|
|
1025
755
|
/**
|
|
1026
756
|
* <p>Details about delivering logs to Amazon S3.</p>
|
|
1027
757
|
*/
|
|
@@ -1039,12 +769,6 @@ export interface S3LogDelivery {
|
|
|
1039
769
|
*/
|
|
1040
770
|
prefix?: string;
|
|
1041
771
|
}
|
|
1042
|
-
export declare namespace S3LogDelivery {
|
|
1043
|
-
/**
|
|
1044
|
-
* @internal
|
|
1045
|
-
*/
|
|
1046
|
-
const filterSensitiveLog: (obj: S3LogDelivery) => any;
|
|
1047
|
-
}
|
|
1048
772
|
/**
|
|
1049
773
|
* <p>Workers can send worker logs to different destination types. This configuration
|
|
1050
774
|
* specifies the details of these destinations.</p>
|
|
@@ -1063,12 +787,6 @@ export interface WorkerLogDelivery {
|
|
|
1063
787
|
*/
|
|
1064
788
|
s3?: S3LogDelivery;
|
|
1065
789
|
}
|
|
1066
|
-
export declare namespace WorkerLogDelivery {
|
|
1067
|
-
/**
|
|
1068
|
-
* @internal
|
|
1069
|
-
*/
|
|
1070
|
-
const filterSensitiveLog: (obj: WorkerLogDelivery) => any;
|
|
1071
|
-
}
|
|
1072
790
|
/**
|
|
1073
791
|
* <p>Details about log delivery.</p>
|
|
1074
792
|
*/
|
|
@@ -1079,12 +797,6 @@ export interface LogDelivery {
|
|
|
1079
797
|
*/
|
|
1080
798
|
workerLogDelivery: WorkerLogDelivery | undefined;
|
|
1081
799
|
}
|
|
1082
|
-
export declare namespace LogDelivery {
|
|
1083
|
-
/**
|
|
1084
|
-
* @internal
|
|
1085
|
-
*/
|
|
1086
|
-
const filterSensitiveLog: (obj: LogDelivery) => any;
|
|
1087
|
-
}
|
|
1088
800
|
/**
|
|
1089
801
|
* <p>The configuration of the workers, which are the processes that run the connector
|
|
1090
802
|
* logic.</p>
|
|
@@ -1099,12 +811,6 @@ export interface WorkerConfiguration {
|
|
|
1099
811
|
*/
|
|
1100
812
|
workerConfigurationArn: string | undefined;
|
|
1101
813
|
}
|
|
1102
|
-
export declare namespace WorkerConfiguration {
|
|
1103
|
-
/**
|
|
1104
|
-
* @internal
|
|
1105
|
-
*/
|
|
1106
|
-
const filterSensitiveLog: (obj: WorkerConfiguration) => any;
|
|
1107
|
-
}
|
|
1108
814
|
export interface CreateConnectorRequest {
|
|
1109
815
|
/**
|
|
1110
816
|
* <p>Information about the capacity allocated to the connector. Exactly one of the two
|
|
@@ -1160,12 +866,6 @@ export interface CreateConnectorRequest {
|
|
|
1160
866
|
*/
|
|
1161
867
|
workerConfiguration?: WorkerConfiguration;
|
|
1162
868
|
}
|
|
1163
|
-
export declare namespace CreateConnectorRequest {
|
|
1164
|
-
/**
|
|
1165
|
-
* @internal
|
|
1166
|
-
*/
|
|
1167
|
-
const filterSensitiveLog: (obj: CreateConnectorRequest) => any;
|
|
1168
|
-
}
|
|
1169
869
|
export interface CreateConnectorResponse {
|
|
1170
870
|
/**
|
|
1171
871
|
* <p>The Amazon Resource Name (ARN) that Amazon assigned to the connector.</p>
|
|
@@ -1180,12 +880,6 @@ export interface CreateConnectorResponse {
|
|
|
1180
880
|
*/
|
|
1181
881
|
connectorState?: ConnectorState | string;
|
|
1182
882
|
}
|
|
1183
|
-
export declare namespace CreateConnectorResponse {
|
|
1184
|
-
/**
|
|
1185
|
-
* @internal
|
|
1186
|
-
*/
|
|
1187
|
-
const filterSensitiveLog: (obj: CreateConnectorResponse) => any;
|
|
1188
|
-
}
|
|
1189
883
|
/**
|
|
1190
884
|
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
1191
885
|
* request.</p>
|
|
@@ -1274,12 +968,6 @@ export interface S3Location {
|
|
|
1274
968
|
*/
|
|
1275
969
|
objectVersion?: string;
|
|
1276
970
|
}
|
|
1277
|
-
export declare namespace S3Location {
|
|
1278
|
-
/**
|
|
1279
|
-
* @internal
|
|
1280
|
-
*/
|
|
1281
|
-
const filterSensitiveLog: (obj: S3Location) => any;
|
|
1282
|
-
}
|
|
1283
971
|
/**
|
|
1284
972
|
* <p>Information about the location of a custom plugin.</p>
|
|
1285
973
|
*/
|
|
@@ -1290,12 +978,6 @@ export interface CustomPluginLocation {
|
|
|
1290
978
|
*/
|
|
1291
979
|
s3Location: S3Location | undefined;
|
|
1292
980
|
}
|
|
1293
|
-
export declare namespace CustomPluginLocation {
|
|
1294
|
-
/**
|
|
1295
|
-
* @internal
|
|
1296
|
-
*/
|
|
1297
|
-
const filterSensitiveLog: (obj: CustomPluginLocation) => any;
|
|
1298
|
-
}
|
|
1299
981
|
export interface CreateCustomPluginRequest {
|
|
1300
982
|
/**
|
|
1301
983
|
* <p>The type of the plugin file.</p>
|
|
@@ -1314,12 +996,6 @@ export interface CreateCustomPluginRequest {
|
|
|
1314
996
|
*/
|
|
1315
997
|
name: string | undefined;
|
|
1316
998
|
}
|
|
1317
|
-
export declare namespace CreateCustomPluginRequest {
|
|
1318
|
-
/**
|
|
1319
|
-
* @internal
|
|
1320
|
-
*/
|
|
1321
|
-
const filterSensitiveLog: (obj: CreateCustomPluginRequest) => any;
|
|
1322
|
-
}
|
|
1323
999
|
export interface CreateCustomPluginResponse {
|
|
1324
1000
|
/**
|
|
1325
1001
|
* <p>The Amazon Resource Name (ARN) that Amazon assigned to the custom plugin.</p>
|
|
@@ -1338,12 +1014,6 @@ export interface CreateCustomPluginResponse {
|
|
|
1338
1014
|
*/
|
|
1339
1015
|
revision?: number;
|
|
1340
1016
|
}
|
|
1341
|
-
export declare namespace CreateCustomPluginResponse {
|
|
1342
|
-
/**
|
|
1343
|
-
* @internal
|
|
1344
|
-
*/
|
|
1345
|
-
const filterSensitiveLog: (obj: CreateCustomPluginResponse) => any;
|
|
1346
|
-
}
|
|
1347
1017
|
export interface CreateWorkerConfigurationRequest {
|
|
1348
1018
|
/**
|
|
1349
1019
|
* <p>A summary description of the worker configuration.</p>
|
|
@@ -1358,12 +1028,6 @@ export interface CreateWorkerConfigurationRequest {
|
|
|
1358
1028
|
*/
|
|
1359
1029
|
propertiesFileContent: string | undefined;
|
|
1360
1030
|
}
|
|
1361
|
-
export declare namespace CreateWorkerConfigurationRequest {
|
|
1362
|
-
/**
|
|
1363
|
-
* @internal
|
|
1364
|
-
*/
|
|
1365
|
-
const filterSensitiveLog: (obj: CreateWorkerConfigurationRequest) => any;
|
|
1366
|
-
}
|
|
1367
1031
|
export interface CreateWorkerConfigurationResponse {
|
|
1368
1032
|
/**
|
|
1369
1033
|
* <p>The time that the worker configuration was created.</p>
|
|
@@ -1382,12 +1046,6 @@ export interface CreateWorkerConfigurationResponse {
|
|
|
1382
1046
|
*/
|
|
1383
1047
|
workerConfigurationArn?: string;
|
|
1384
1048
|
}
|
|
1385
|
-
export declare namespace CreateWorkerConfigurationResponse {
|
|
1386
|
-
/**
|
|
1387
|
-
* @internal
|
|
1388
|
-
*/
|
|
1389
|
-
const filterSensitiveLog: (obj: CreateWorkerConfigurationResponse) => any;
|
|
1390
|
-
}
|
|
1391
1049
|
export interface DeleteConnectorRequest {
|
|
1392
1050
|
/**
|
|
1393
1051
|
* <p>The Amazon Resource Name (ARN) of the connector that you want to delete.</p>
|
|
@@ -1398,12 +1056,6 @@ export interface DeleteConnectorRequest {
|
|
|
1398
1056
|
*/
|
|
1399
1057
|
currentVersion?: string;
|
|
1400
1058
|
}
|
|
1401
|
-
export declare namespace DeleteConnectorRequest {
|
|
1402
|
-
/**
|
|
1403
|
-
* @internal
|
|
1404
|
-
*/
|
|
1405
|
-
const filterSensitiveLog: (obj: DeleteConnectorRequest) => any;
|
|
1406
|
-
}
|
|
1407
1059
|
export interface DeleteConnectorResponse {
|
|
1408
1060
|
/**
|
|
1409
1061
|
* <p>The Amazon Resource Name (ARN) of the connector that you requested to delete.</p>
|
|
@@ -1414,24 +1066,12 @@ export interface DeleteConnectorResponse {
|
|
|
1414
1066
|
*/
|
|
1415
1067
|
connectorState?: ConnectorState | string;
|
|
1416
1068
|
}
|
|
1417
|
-
export declare namespace DeleteConnectorResponse {
|
|
1418
|
-
/**
|
|
1419
|
-
* @internal
|
|
1420
|
-
*/
|
|
1421
|
-
const filterSensitiveLog: (obj: DeleteConnectorResponse) => any;
|
|
1422
|
-
}
|
|
1423
1069
|
export interface DeleteCustomPluginRequest {
|
|
1424
1070
|
/**
|
|
1425
1071
|
* <p>The Amazon Resource Name (ARN) of the custom plugin that you want to delete.</p>
|
|
1426
1072
|
*/
|
|
1427
1073
|
customPluginArn: string | undefined;
|
|
1428
1074
|
}
|
|
1429
|
-
export declare namespace DeleteCustomPluginRequest {
|
|
1430
|
-
/**
|
|
1431
|
-
* @internal
|
|
1432
|
-
*/
|
|
1433
|
-
const filterSensitiveLog: (obj: DeleteCustomPluginRequest) => any;
|
|
1434
|
-
}
|
|
1435
1075
|
export interface DeleteCustomPluginResponse {
|
|
1436
1076
|
/**
|
|
1437
1077
|
* <p>The Amazon Resource Name (ARN) of the custom plugin that you requested to delete.</p>
|
|
@@ -1442,24 +1082,12 @@ export interface DeleteCustomPluginResponse {
|
|
|
1442
1082
|
*/
|
|
1443
1083
|
customPluginState?: CustomPluginState | string;
|
|
1444
1084
|
}
|
|
1445
|
-
export declare namespace DeleteCustomPluginResponse {
|
|
1446
|
-
/**
|
|
1447
|
-
* @internal
|
|
1448
|
-
*/
|
|
1449
|
-
const filterSensitiveLog: (obj: DeleteCustomPluginResponse) => any;
|
|
1450
|
-
}
|
|
1451
1085
|
export interface DescribeConnectorRequest {
|
|
1452
1086
|
/**
|
|
1453
1087
|
* <p>The Amazon Resource Name (ARN) of the connector that you want to describe.</p>
|
|
1454
1088
|
*/
|
|
1455
1089
|
connectorArn: string | undefined;
|
|
1456
1090
|
}
|
|
1457
|
-
export declare namespace DescribeConnectorRequest {
|
|
1458
|
-
/**
|
|
1459
|
-
* @internal
|
|
1460
|
-
*/
|
|
1461
|
-
const filterSensitiveLog: (obj: DescribeConnectorRequest) => any;
|
|
1462
|
-
}
|
|
1463
1091
|
/**
|
|
1464
1092
|
* <p>Details about the state of a resource.</p>
|
|
1465
1093
|
*/
|
|
@@ -1473,12 +1101,6 @@ export interface StateDescription {
|
|
|
1473
1101
|
*/
|
|
1474
1102
|
message?: string;
|
|
1475
1103
|
}
|
|
1476
|
-
export declare namespace StateDescription {
|
|
1477
|
-
/**
|
|
1478
|
-
* @internal
|
|
1479
|
-
*/
|
|
1480
|
-
const filterSensitiveLog: (obj: StateDescription) => any;
|
|
1481
|
-
}
|
|
1482
1104
|
export interface DescribeConnectorResponse {
|
|
1483
1105
|
/**
|
|
1484
1106
|
* <p>Information about the capacity of the connector, whether it is auto scaled or
|
|
@@ -1553,24 +1175,12 @@ export interface DescribeConnectorResponse {
|
|
|
1553
1175
|
*/
|
|
1554
1176
|
stateDescription?: StateDescription;
|
|
1555
1177
|
}
|
|
1556
|
-
export declare namespace DescribeConnectorResponse {
|
|
1557
|
-
/**
|
|
1558
|
-
* @internal
|
|
1559
|
-
*/
|
|
1560
|
-
const filterSensitiveLog: (obj: DescribeConnectorResponse) => any;
|
|
1561
|
-
}
|
|
1562
1178
|
export interface DescribeCustomPluginRequest {
|
|
1563
1179
|
/**
|
|
1564
1180
|
* <p>Returns information about a custom plugin.</p>
|
|
1565
1181
|
*/
|
|
1566
1182
|
customPluginArn: string | undefined;
|
|
1567
1183
|
}
|
|
1568
|
-
export declare namespace DescribeCustomPluginRequest {
|
|
1569
|
-
/**
|
|
1570
|
-
* @internal
|
|
1571
|
-
*/
|
|
1572
|
-
const filterSensitiveLog: (obj: DescribeCustomPluginRequest) => any;
|
|
1573
|
-
}
|
|
1574
1184
|
export interface DescribeCustomPluginResponse {
|
|
1575
1185
|
/**
|
|
1576
1186
|
* <p>The time that the custom plugin was created.</p>
|
|
@@ -1602,12 +1212,6 @@ export interface DescribeCustomPluginResponse {
|
|
|
1602
1212
|
*/
|
|
1603
1213
|
stateDescription?: StateDescription;
|
|
1604
1214
|
}
|
|
1605
|
-
export declare namespace DescribeCustomPluginResponse {
|
|
1606
|
-
/**
|
|
1607
|
-
* @internal
|
|
1608
|
-
*/
|
|
1609
|
-
const filterSensitiveLog: (obj: DescribeCustomPluginResponse) => any;
|
|
1610
|
-
}
|
|
1611
1215
|
export interface DescribeWorkerConfigurationRequest {
|
|
1612
1216
|
/**
|
|
1613
1217
|
* <p>The Amazon Resource Name (ARN) of the worker configuration that you want to get
|
|
@@ -1615,12 +1219,6 @@ export interface DescribeWorkerConfigurationRequest {
|
|
|
1615
1219
|
*/
|
|
1616
1220
|
workerConfigurationArn: string | undefined;
|
|
1617
1221
|
}
|
|
1618
|
-
export declare namespace DescribeWorkerConfigurationRequest {
|
|
1619
|
-
/**
|
|
1620
|
-
* @internal
|
|
1621
|
-
*/
|
|
1622
|
-
const filterSensitiveLog: (obj: DescribeWorkerConfigurationRequest) => any;
|
|
1623
|
-
}
|
|
1624
1222
|
/**
|
|
1625
1223
|
* <p>The description of the worker configuration revision.</p>
|
|
1626
1224
|
*/
|
|
@@ -1642,12 +1240,6 @@ export interface WorkerConfigurationRevisionDescription {
|
|
|
1642
1240
|
*/
|
|
1643
1241
|
revision?: number;
|
|
1644
1242
|
}
|
|
1645
|
-
export declare namespace WorkerConfigurationRevisionDescription {
|
|
1646
|
-
/**
|
|
1647
|
-
* @internal
|
|
1648
|
-
*/
|
|
1649
|
-
const filterSensitiveLog: (obj: WorkerConfigurationRevisionDescription) => any;
|
|
1650
|
-
}
|
|
1651
1243
|
export interface DescribeWorkerConfigurationResponse {
|
|
1652
1244
|
/**
|
|
1653
1245
|
* <p>The time that the worker configuration was created.</p>
|
|
@@ -1670,12 +1262,6 @@ export interface DescribeWorkerConfigurationResponse {
|
|
|
1670
1262
|
*/
|
|
1671
1263
|
workerConfigurationArn?: string;
|
|
1672
1264
|
}
|
|
1673
|
-
export declare namespace DescribeWorkerConfigurationResponse {
|
|
1674
|
-
/**
|
|
1675
|
-
* @internal
|
|
1676
|
-
*/
|
|
1677
|
-
const filterSensitiveLog: (obj: DescribeWorkerConfigurationResponse) => any;
|
|
1678
|
-
}
|
|
1679
1265
|
export interface ListConnectorsRequest {
|
|
1680
1266
|
/**
|
|
1681
1267
|
* <p>The name prefix that you want to use to search for and list connectors.</p>
|
|
@@ -1692,12 +1278,6 @@ export interface ListConnectorsRequest {
|
|
|
1692
1278
|
*/
|
|
1693
1279
|
nextToken?: string;
|
|
1694
1280
|
}
|
|
1695
|
-
export declare namespace ListConnectorsRequest {
|
|
1696
|
-
/**
|
|
1697
|
-
* @internal
|
|
1698
|
-
*/
|
|
1699
|
-
const filterSensitiveLog: (obj: ListConnectorsRequest) => any;
|
|
1700
|
-
}
|
|
1701
1281
|
export interface ListConnectorsResponse {
|
|
1702
1282
|
/**
|
|
1703
1283
|
* <p>An array of connector descriptions.</p>
|
|
@@ -1710,12 +1290,6 @@ export interface ListConnectorsResponse {
|
|
|
1710
1290
|
*/
|
|
1711
1291
|
nextToken?: string;
|
|
1712
1292
|
}
|
|
1713
|
-
export declare namespace ListConnectorsResponse {
|
|
1714
|
-
/**
|
|
1715
|
-
* @internal
|
|
1716
|
-
*/
|
|
1717
|
-
const filterSensitiveLog: (obj: ListConnectorsResponse) => any;
|
|
1718
|
-
}
|
|
1719
1293
|
export interface ListCustomPluginsRequest {
|
|
1720
1294
|
/**
|
|
1721
1295
|
* <p>The maximum number of custom plugins to list in one response.</p>
|
|
@@ -1728,12 +1302,6 @@ export interface ListCustomPluginsRequest {
|
|
|
1728
1302
|
*/
|
|
1729
1303
|
nextToken?: string;
|
|
1730
1304
|
}
|
|
1731
|
-
export declare namespace ListCustomPluginsRequest {
|
|
1732
|
-
/**
|
|
1733
|
-
* @internal
|
|
1734
|
-
*/
|
|
1735
|
-
const filterSensitiveLog: (obj: ListCustomPluginsRequest) => any;
|
|
1736
|
-
}
|
|
1737
1305
|
export interface ListCustomPluginsResponse {
|
|
1738
1306
|
/**
|
|
1739
1307
|
* <p>An array of custom plugin descriptions.</p>
|
|
@@ -1746,12 +1314,6 @@ export interface ListCustomPluginsResponse {
|
|
|
1746
1314
|
*/
|
|
1747
1315
|
nextToken?: string;
|
|
1748
1316
|
}
|
|
1749
|
-
export declare namespace ListCustomPluginsResponse {
|
|
1750
|
-
/**
|
|
1751
|
-
* @internal
|
|
1752
|
-
*/
|
|
1753
|
-
const filterSensitiveLog: (obj: ListCustomPluginsResponse) => any;
|
|
1754
|
-
}
|
|
1755
1317
|
export interface ListWorkerConfigurationsRequest {
|
|
1756
1318
|
/**
|
|
1757
1319
|
* <p>The maximum number of worker configurations to list in one response.</p>
|
|
@@ -1764,12 +1326,6 @@ export interface ListWorkerConfigurationsRequest {
|
|
|
1764
1326
|
*/
|
|
1765
1327
|
nextToken?: string;
|
|
1766
1328
|
}
|
|
1767
|
-
export declare namespace ListWorkerConfigurationsRequest {
|
|
1768
|
-
/**
|
|
1769
|
-
* @internal
|
|
1770
|
-
*/
|
|
1771
|
-
const filterSensitiveLog: (obj: ListWorkerConfigurationsRequest) => any;
|
|
1772
|
-
}
|
|
1773
1329
|
export interface ListWorkerConfigurationsResponse {
|
|
1774
1330
|
/**
|
|
1775
1331
|
* <p>If the response of a ListWorkerConfigurations operation is truncated, it will include a
|
|
@@ -1782,12 +1338,6 @@ export interface ListWorkerConfigurationsResponse {
|
|
|
1782
1338
|
*/
|
|
1783
1339
|
workerConfigurations?: WorkerConfigurationSummary[];
|
|
1784
1340
|
}
|
|
1785
|
-
export declare namespace ListWorkerConfigurationsResponse {
|
|
1786
|
-
/**
|
|
1787
|
-
* @internal
|
|
1788
|
-
*/
|
|
1789
|
-
const filterSensitiveLog: (obj: ListWorkerConfigurationsResponse) => any;
|
|
1790
|
-
}
|
|
1791
1341
|
export interface UpdateConnectorRequest {
|
|
1792
1342
|
/**
|
|
1793
1343
|
* <p>The target capacity.</p>
|
|
@@ -1802,12 +1352,6 @@ export interface UpdateConnectorRequest {
|
|
|
1802
1352
|
*/
|
|
1803
1353
|
currentVersion: string | undefined;
|
|
1804
1354
|
}
|
|
1805
|
-
export declare namespace UpdateConnectorRequest {
|
|
1806
|
-
/**
|
|
1807
|
-
* @internal
|
|
1808
|
-
*/
|
|
1809
|
-
const filterSensitiveLog: (obj: UpdateConnectorRequest) => any;
|
|
1810
|
-
}
|
|
1811
1355
|
export interface UpdateConnectorResponse {
|
|
1812
1356
|
/**
|
|
1813
1357
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
@@ -1818,9 +1362,311 @@ export interface UpdateConnectorResponse {
|
|
|
1818
1362
|
*/
|
|
1819
1363
|
connectorState?: ConnectorState | string;
|
|
1820
1364
|
}
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1365
|
+
/**
|
|
1366
|
+
* @internal
|
|
1367
|
+
*/
|
|
1368
|
+
export declare const ScaleInPolicyDescriptionFilterSensitiveLog: (obj: ScaleInPolicyDescription) => any;
|
|
1369
|
+
/**
|
|
1370
|
+
* @internal
|
|
1371
|
+
*/
|
|
1372
|
+
export declare const ScaleOutPolicyDescriptionFilterSensitiveLog: (obj: ScaleOutPolicyDescription) => any;
|
|
1373
|
+
/**
|
|
1374
|
+
* @internal
|
|
1375
|
+
*/
|
|
1376
|
+
export declare const AutoScalingDescriptionFilterSensitiveLog: (obj: AutoScalingDescription) => any;
|
|
1377
|
+
/**
|
|
1378
|
+
* @internal
|
|
1379
|
+
*/
|
|
1380
|
+
export declare const ProvisionedCapacityDescriptionFilterSensitiveLog: (obj: ProvisionedCapacityDescription) => any;
|
|
1381
|
+
/**
|
|
1382
|
+
* @internal
|
|
1383
|
+
*/
|
|
1384
|
+
export declare const CapacityDescriptionFilterSensitiveLog: (obj: CapacityDescription) => any;
|
|
1385
|
+
/**
|
|
1386
|
+
* @internal
|
|
1387
|
+
*/
|
|
1388
|
+
export declare const VpcDescriptionFilterSensitiveLog: (obj: VpcDescription) => any;
|
|
1389
|
+
/**
|
|
1390
|
+
* @internal
|
|
1391
|
+
*/
|
|
1392
|
+
export declare const ApacheKafkaClusterDescriptionFilterSensitiveLog: (obj: ApacheKafkaClusterDescription) => any;
|
|
1393
|
+
/**
|
|
1394
|
+
* @internal
|
|
1395
|
+
*/
|
|
1396
|
+
export declare const KafkaClusterDescriptionFilterSensitiveLog: (obj: KafkaClusterDescription) => any;
|
|
1397
|
+
/**
|
|
1398
|
+
* @internal
|
|
1399
|
+
*/
|
|
1400
|
+
export declare const KafkaClusterClientAuthenticationDescriptionFilterSensitiveLog: (obj: KafkaClusterClientAuthenticationDescription) => any;
|
|
1401
|
+
/**
|
|
1402
|
+
* @internal
|
|
1403
|
+
*/
|
|
1404
|
+
export declare const KafkaClusterEncryptionInTransitDescriptionFilterSensitiveLog: (obj: KafkaClusterEncryptionInTransitDescription) => any;
|
|
1405
|
+
/**
|
|
1406
|
+
* @internal
|
|
1407
|
+
*/
|
|
1408
|
+
export declare const CloudWatchLogsLogDeliveryDescriptionFilterSensitiveLog: (obj: CloudWatchLogsLogDeliveryDescription) => any;
|
|
1409
|
+
/**
|
|
1410
|
+
* @internal
|
|
1411
|
+
*/
|
|
1412
|
+
export declare const FirehoseLogDeliveryDescriptionFilterSensitiveLog: (obj: FirehoseLogDeliveryDescription) => any;
|
|
1413
|
+
/**
|
|
1414
|
+
* @internal
|
|
1415
|
+
*/
|
|
1416
|
+
export declare const S3LogDeliveryDescriptionFilterSensitiveLog: (obj: S3LogDeliveryDescription) => any;
|
|
1417
|
+
/**
|
|
1418
|
+
* @internal
|
|
1419
|
+
*/
|
|
1420
|
+
export declare const WorkerLogDeliveryDescriptionFilterSensitiveLog: (obj: WorkerLogDeliveryDescription) => any;
|
|
1421
|
+
/**
|
|
1422
|
+
* @internal
|
|
1423
|
+
*/
|
|
1424
|
+
export declare const LogDeliveryDescriptionFilterSensitiveLog: (obj: LogDeliveryDescription) => any;
|
|
1425
|
+
/**
|
|
1426
|
+
* @internal
|
|
1427
|
+
*/
|
|
1428
|
+
export declare const CustomPluginDescriptionFilterSensitiveLog: (obj: CustomPluginDescription) => any;
|
|
1429
|
+
/**
|
|
1430
|
+
* @internal
|
|
1431
|
+
*/
|
|
1432
|
+
export declare const PluginDescriptionFilterSensitiveLog: (obj: PluginDescription) => any;
|
|
1433
|
+
/**
|
|
1434
|
+
* @internal
|
|
1435
|
+
*/
|
|
1436
|
+
export declare const WorkerConfigurationDescriptionFilterSensitiveLog: (obj: WorkerConfigurationDescription) => any;
|
|
1437
|
+
/**
|
|
1438
|
+
* @internal
|
|
1439
|
+
*/
|
|
1440
|
+
export declare const ConnectorSummaryFilterSensitiveLog: (obj: ConnectorSummary) => any;
|
|
1441
|
+
/**
|
|
1442
|
+
* @internal
|
|
1443
|
+
*/
|
|
1444
|
+
export declare const CustomPluginFileDescriptionFilterSensitiveLog: (obj: CustomPluginFileDescription) => any;
|
|
1445
|
+
/**
|
|
1446
|
+
* @internal
|
|
1447
|
+
*/
|
|
1448
|
+
export declare const S3LocationDescriptionFilterSensitiveLog: (obj: S3LocationDescription) => any;
|
|
1449
|
+
/**
|
|
1450
|
+
* @internal
|
|
1451
|
+
*/
|
|
1452
|
+
export declare const CustomPluginLocationDescriptionFilterSensitiveLog: (obj: CustomPluginLocationDescription) => any;
|
|
1453
|
+
/**
|
|
1454
|
+
* @internal
|
|
1455
|
+
*/
|
|
1456
|
+
export declare const CustomPluginRevisionSummaryFilterSensitiveLog: (obj: CustomPluginRevisionSummary) => any;
|
|
1457
|
+
/**
|
|
1458
|
+
* @internal
|
|
1459
|
+
*/
|
|
1460
|
+
export declare const CustomPluginSummaryFilterSensitiveLog: (obj: CustomPluginSummary) => any;
|
|
1461
|
+
/**
|
|
1462
|
+
* @internal
|
|
1463
|
+
*/
|
|
1464
|
+
export declare const CustomPluginFilterSensitiveLog: (obj: CustomPlugin) => any;
|
|
1465
|
+
/**
|
|
1466
|
+
* @internal
|
|
1467
|
+
*/
|
|
1468
|
+
export declare const PluginFilterSensitiveLog: (obj: Plugin) => any;
|
|
1469
|
+
/**
|
|
1470
|
+
* @internal
|
|
1471
|
+
*/
|
|
1472
|
+
export declare const WorkerConfigurationRevisionSummaryFilterSensitiveLog: (obj: WorkerConfigurationRevisionSummary) => any;
|
|
1473
|
+
/**
|
|
1474
|
+
* @internal
|
|
1475
|
+
*/
|
|
1476
|
+
export declare const WorkerConfigurationSummaryFilterSensitiveLog: (obj: WorkerConfigurationSummary) => any;
|
|
1477
|
+
/**
|
|
1478
|
+
* @internal
|
|
1479
|
+
*/
|
|
1480
|
+
export declare const VpcFilterSensitiveLog: (obj: Vpc) => any;
|
|
1481
|
+
/**
|
|
1482
|
+
* @internal
|
|
1483
|
+
*/
|
|
1484
|
+
export declare const ApacheKafkaClusterFilterSensitiveLog: (obj: ApacheKafkaCluster) => any;
|
|
1485
|
+
/**
|
|
1486
|
+
* @internal
|
|
1487
|
+
*/
|
|
1488
|
+
export declare const ScaleInPolicyFilterSensitiveLog: (obj: ScaleInPolicy) => any;
|
|
1489
|
+
/**
|
|
1490
|
+
* @internal
|
|
1491
|
+
*/
|
|
1492
|
+
export declare const ScaleOutPolicyFilterSensitiveLog: (obj: ScaleOutPolicy) => any;
|
|
1493
|
+
/**
|
|
1494
|
+
* @internal
|
|
1495
|
+
*/
|
|
1496
|
+
export declare const AutoScalingFilterSensitiveLog: (obj: AutoScaling) => any;
|
|
1497
|
+
/**
|
|
1498
|
+
* @internal
|
|
1499
|
+
*/
|
|
1500
|
+
export declare const ScaleInPolicyUpdateFilterSensitiveLog: (obj: ScaleInPolicyUpdate) => any;
|
|
1501
|
+
/**
|
|
1502
|
+
* @internal
|
|
1503
|
+
*/
|
|
1504
|
+
export declare const ScaleOutPolicyUpdateFilterSensitiveLog: (obj: ScaleOutPolicyUpdate) => any;
|
|
1505
|
+
/**
|
|
1506
|
+
* @internal
|
|
1507
|
+
*/
|
|
1508
|
+
export declare const AutoScalingUpdateFilterSensitiveLog: (obj: AutoScalingUpdate) => any;
|
|
1509
|
+
/**
|
|
1510
|
+
* @internal
|
|
1511
|
+
*/
|
|
1512
|
+
export declare const ProvisionedCapacityFilterSensitiveLog: (obj: ProvisionedCapacity) => any;
|
|
1513
|
+
/**
|
|
1514
|
+
* @internal
|
|
1515
|
+
*/
|
|
1516
|
+
export declare const CapacityFilterSensitiveLog: (obj: Capacity) => any;
|
|
1517
|
+
/**
|
|
1518
|
+
* @internal
|
|
1519
|
+
*/
|
|
1520
|
+
export declare const ProvisionedCapacityUpdateFilterSensitiveLog: (obj: ProvisionedCapacityUpdate) => any;
|
|
1521
|
+
/**
|
|
1522
|
+
* @internal
|
|
1523
|
+
*/
|
|
1524
|
+
export declare const CapacityUpdateFilterSensitiveLog: (obj: CapacityUpdate) => any;
|
|
1525
|
+
/**
|
|
1526
|
+
* @internal
|
|
1527
|
+
*/
|
|
1528
|
+
export declare const CloudWatchLogsLogDeliveryFilterSensitiveLog: (obj: CloudWatchLogsLogDelivery) => any;
|
|
1529
|
+
/**
|
|
1530
|
+
* @internal
|
|
1531
|
+
*/
|
|
1532
|
+
export declare const KafkaClusterFilterSensitiveLog: (obj: KafkaCluster) => any;
|
|
1533
|
+
/**
|
|
1534
|
+
* @internal
|
|
1535
|
+
*/
|
|
1536
|
+
export declare const KafkaClusterClientAuthenticationFilterSensitiveLog: (obj: KafkaClusterClientAuthentication) => any;
|
|
1537
|
+
/**
|
|
1538
|
+
* @internal
|
|
1539
|
+
*/
|
|
1540
|
+
export declare const KafkaClusterEncryptionInTransitFilterSensitiveLog: (obj: KafkaClusterEncryptionInTransit) => any;
|
|
1541
|
+
/**
|
|
1542
|
+
* @internal
|
|
1543
|
+
*/
|
|
1544
|
+
export declare const FirehoseLogDeliveryFilterSensitiveLog: (obj: FirehoseLogDelivery) => any;
|
|
1545
|
+
/**
|
|
1546
|
+
* @internal
|
|
1547
|
+
*/
|
|
1548
|
+
export declare const S3LogDeliveryFilterSensitiveLog: (obj: S3LogDelivery) => any;
|
|
1549
|
+
/**
|
|
1550
|
+
* @internal
|
|
1551
|
+
*/
|
|
1552
|
+
export declare const WorkerLogDeliveryFilterSensitiveLog: (obj: WorkerLogDelivery) => any;
|
|
1553
|
+
/**
|
|
1554
|
+
* @internal
|
|
1555
|
+
*/
|
|
1556
|
+
export declare const LogDeliveryFilterSensitiveLog: (obj: LogDelivery) => any;
|
|
1557
|
+
/**
|
|
1558
|
+
* @internal
|
|
1559
|
+
*/
|
|
1560
|
+
export declare const WorkerConfigurationFilterSensitiveLog: (obj: WorkerConfiguration) => any;
|
|
1561
|
+
/**
|
|
1562
|
+
* @internal
|
|
1563
|
+
*/
|
|
1564
|
+
export declare const CreateConnectorRequestFilterSensitiveLog: (obj: CreateConnectorRequest) => any;
|
|
1565
|
+
/**
|
|
1566
|
+
* @internal
|
|
1567
|
+
*/
|
|
1568
|
+
export declare const CreateConnectorResponseFilterSensitiveLog: (obj: CreateConnectorResponse) => any;
|
|
1569
|
+
/**
|
|
1570
|
+
* @internal
|
|
1571
|
+
*/
|
|
1572
|
+
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
1573
|
+
/**
|
|
1574
|
+
* @internal
|
|
1575
|
+
*/
|
|
1576
|
+
export declare const CustomPluginLocationFilterSensitiveLog: (obj: CustomPluginLocation) => any;
|
|
1577
|
+
/**
|
|
1578
|
+
* @internal
|
|
1579
|
+
*/
|
|
1580
|
+
export declare const CreateCustomPluginRequestFilterSensitiveLog: (obj: CreateCustomPluginRequest) => any;
|
|
1581
|
+
/**
|
|
1582
|
+
* @internal
|
|
1583
|
+
*/
|
|
1584
|
+
export declare const CreateCustomPluginResponseFilterSensitiveLog: (obj: CreateCustomPluginResponse) => any;
|
|
1585
|
+
/**
|
|
1586
|
+
* @internal
|
|
1587
|
+
*/
|
|
1588
|
+
export declare const CreateWorkerConfigurationRequestFilterSensitiveLog: (obj: CreateWorkerConfigurationRequest) => any;
|
|
1589
|
+
/**
|
|
1590
|
+
* @internal
|
|
1591
|
+
*/
|
|
1592
|
+
export declare const CreateWorkerConfigurationResponseFilterSensitiveLog: (obj: CreateWorkerConfigurationResponse) => any;
|
|
1593
|
+
/**
|
|
1594
|
+
* @internal
|
|
1595
|
+
*/
|
|
1596
|
+
export declare const DeleteConnectorRequestFilterSensitiveLog: (obj: DeleteConnectorRequest) => any;
|
|
1597
|
+
/**
|
|
1598
|
+
* @internal
|
|
1599
|
+
*/
|
|
1600
|
+
export declare const DeleteConnectorResponseFilterSensitiveLog: (obj: DeleteConnectorResponse) => any;
|
|
1601
|
+
/**
|
|
1602
|
+
* @internal
|
|
1603
|
+
*/
|
|
1604
|
+
export declare const DeleteCustomPluginRequestFilterSensitiveLog: (obj: DeleteCustomPluginRequest) => any;
|
|
1605
|
+
/**
|
|
1606
|
+
* @internal
|
|
1607
|
+
*/
|
|
1608
|
+
export declare const DeleteCustomPluginResponseFilterSensitiveLog: (obj: DeleteCustomPluginResponse) => any;
|
|
1609
|
+
/**
|
|
1610
|
+
* @internal
|
|
1611
|
+
*/
|
|
1612
|
+
export declare const DescribeConnectorRequestFilterSensitiveLog: (obj: DescribeConnectorRequest) => any;
|
|
1613
|
+
/**
|
|
1614
|
+
* @internal
|
|
1615
|
+
*/
|
|
1616
|
+
export declare const StateDescriptionFilterSensitiveLog: (obj: StateDescription) => any;
|
|
1617
|
+
/**
|
|
1618
|
+
* @internal
|
|
1619
|
+
*/
|
|
1620
|
+
export declare const DescribeConnectorResponseFilterSensitiveLog: (obj: DescribeConnectorResponse) => any;
|
|
1621
|
+
/**
|
|
1622
|
+
* @internal
|
|
1623
|
+
*/
|
|
1624
|
+
export declare const DescribeCustomPluginRequestFilterSensitiveLog: (obj: DescribeCustomPluginRequest) => any;
|
|
1625
|
+
/**
|
|
1626
|
+
* @internal
|
|
1627
|
+
*/
|
|
1628
|
+
export declare const DescribeCustomPluginResponseFilterSensitiveLog: (obj: DescribeCustomPluginResponse) => any;
|
|
1629
|
+
/**
|
|
1630
|
+
* @internal
|
|
1631
|
+
*/
|
|
1632
|
+
export declare const DescribeWorkerConfigurationRequestFilterSensitiveLog: (obj: DescribeWorkerConfigurationRequest) => any;
|
|
1633
|
+
/**
|
|
1634
|
+
* @internal
|
|
1635
|
+
*/
|
|
1636
|
+
export declare const WorkerConfigurationRevisionDescriptionFilterSensitiveLog: (obj: WorkerConfigurationRevisionDescription) => any;
|
|
1637
|
+
/**
|
|
1638
|
+
* @internal
|
|
1639
|
+
*/
|
|
1640
|
+
export declare const DescribeWorkerConfigurationResponseFilterSensitiveLog: (obj: DescribeWorkerConfigurationResponse) => any;
|
|
1641
|
+
/**
|
|
1642
|
+
* @internal
|
|
1643
|
+
*/
|
|
1644
|
+
export declare const ListConnectorsRequestFilterSensitiveLog: (obj: ListConnectorsRequest) => any;
|
|
1645
|
+
/**
|
|
1646
|
+
* @internal
|
|
1647
|
+
*/
|
|
1648
|
+
export declare const ListConnectorsResponseFilterSensitiveLog: (obj: ListConnectorsResponse) => any;
|
|
1649
|
+
/**
|
|
1650
|
+
* @internal
|
|
1651
|
+
*/
|
|
1652
|
+
export declare const ListCustomPluginsRequestFilterSensitiveLog: (obj: ListCustomPluginsRequest) => any;
|
|
1653
|
+
/**
|
|
1654
|
+
* @internal
|
|
1655
|
+
*/
|
|
1656
|
+
export declare const ListCustomPluginsResponseFilterSensitiveLog: (obj: ListCustomPluginsResponse) => any;
|
|
1657
|
+
/**
|
|
1658
|
+
* @internal
|
|
1659
|
+
*/
|
|
1660
|
+
export declare const ListWorkerConfigurationsRequestFilterSensitiveLog: (obj: ListWorkerConfigurationsRequest) => any;
|
|
1661
|
+
/**
|
|
1662
|
+
* @internal
|
|
1663
|
+
*/
|
|
1664
|
+
export declare const ListWorkerConfigurationsResponseFilterSensitiveLog: (obj: ListWorkerConfigurationsResponse) => any;
|
|
1665
|
+
/**
|
|
1666
|
+
* @internal
|
|
1667
|
+
*/
|
|
1668
|
+
export declare const UpdateConnectorRequestFilterSensitiveLog: (obj: UpdateConnectorRequest) => any;
|
|
1669
|
+
/**
|
|
1670
|
+
* @internal
|
|
1671
|
+
*/
|
|
1672
|
+
export declare const UpdateConnectorResponseFilterSensitiveLog: (obj: UpdateConnectorResponse) => any;
|