@aws-sdk/client-kafkaconnect 3.295.0 → 3.297.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.
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { KafkaConnectServiceException as __BaseException } from "./KafkaConnectServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>The description of the scale-in policy for the connector.</p>
5
6
  */
6
7
  export interface ScaleInPolicyDescription {
@@ -11,6 +12,7 @@ export interface ScaleInPolicyDescription {
11
12
  cpuUtilizationPercentage?: number;
12
13
  }
13
14
  /**
15
+ * @public
14
16
  * <p>The description of the scale-out policy for the connector.</p>
15
17
  */
16
18
  export interface ScaleOutPolicyDescription {
@@ -21,6 +23,7 @@ export interface ScaleOutPolicyDescription {
21
23
  cpuUtilizationPercentage?: number;
22
24
  }
23
25
  /**
26
+ * @public
24
27
  * <p>Information about the auto scaling parameters for the connector.</p>
25
28
  */
26
29
  export interface AutoScalingDescription {
@@ -47,6 +50,7 @@ export interface AutoScalingDescription {
47
50
  scaleOutPolicy?: ScaleOutPolicyDescription;
48
51
  }
49
52
  /**
53
+ * @public
50
54
  * <p>The description of a connector's provisioned capacity.</p>
51
55
  */
52
56
  export interface ProvisionedCapacityDescription {
@@ -61,6 +65,7 @@ export interface ProvisionedCapacityDescription {
61
65
  workerCount?: number;
62
66
  }
63
67
  /**
68
+ * @public
64
69
  * <p>A description of the connector's capacity.</p>
65
70
  */
66
71
  export interface CapacityDescription {
@@ -73,6 +78,9 @@ export interface CapacityDescription {
73
78
  */
74
79
  provisionedCapacity?: ProvisionedCapacityDescription;
75
80
  }
81
+ /**
82
+ * @public
83
+ */
76
84
  export declare enum ConnectorState {
77
85
  CREATING = "CREATING",
78
86
  DELETING = "DELETING",
@@ -81,6 +89,7 @@ export declare enum ConnectorState {
81
89
  UPDATING = "UPDATING"
82
90
  }
83
91
  /**
92
+ * @public
84
93
  * <p>The description of the VPC in which the connector resides.</p>
85
94
  */
86
95
  export interface VpcDescription {
@@ -94,6 +103,7 @@ export interface VpcDescription {
94
103
  subnets?: string[];
95
104
  }
96
105
  /**
106
+ * @public
97
107
  * <p>The description of the Apache Kafka cluster to which the connector is connected.</p>
98
108
  */
99
109
  export interface ApacheKafkaClusterDescription {
@@ -108,6 +118,7 @@ export interface ApacheKafkaClusterDescription {
108
118
  vpc?: VpcDescription;
109
119
  }
110
120
  /**
121
+ * @public
111
122
  * <p>Details of how to connect to the Apache Kafka cluster.</p>
112
123
  */
113
124
  export interface KafkaClusterDescription {
@@ -116,11 +127,15 @@ export interface KafkaClusterDescription {
116
127
  */
117
128
  apacheKafkaCluster?: ApacheKafkaClusterDescription;
118
129
  }
130
+ /**
131
+ * @public
132
+ */
119
133
  export declare enum KafkaClusterClientAuthenticationType {
120
134
  IAM = "IAM",
121
135
  NONE = "NONE"
122
136
  }
123
137
  /**
138
+ * @public
124
139
  * <p>The client authentication information used in order to authenticate with the Apache
125
140
  * Kafka cluster.</p>
126
141
  */
@@ -131,11 +146,15 @@ export interface KafkaClusterClientAuthenticationDescription {
131
146
  */
132
147
  authenticationType?: KafkaClusterClientAuthenticationType | string;
133
148
  }
149
+ /**
150
+ * @public
151
+ */
134
152
  export declare enum KafkaClusterEncryptionInTransitType {
135
153
  PLAINTEXT = "PLAINTEXT",
136
154
  TLS = "TLS"
137
155
  }
138
156
  /**
157
+ * @public
139
158
  * <p>The description of the encryption in transit to the Apache Kafka cluster.</p>
140
159
  */
141
160
  export interface KafkaClusterEncryptionInTransitDescription {
@@ -145,6 +164,7 @@ export interface KafkaClusterEncryptionInTransitDescription {
145
164
  encryptionType?: KafkaClusterEncryptionInTransitType | string;
146
165
  }
147
166
  /**
167
+ * @public
148
168
  * <p>A description of the log delivery settings.</p>
149
169
  */
150
170
  export interface CloudWatchLogsLogDeliveryDescription {
@@ -158,6 +178,7 @@ export interface CloudWatchLogsLogDeliveryDescription {
158
178
  logGroup?: string;
159
179
  }
160
180
  /**
181
+ * @public
161
182
  * <p>A description of the settings for delivering logs to Amazon Kinesis Data
162
183
  * Firehose.</p>
163
184
  */
@@ -173,6 +194,7 @@ export interface FirehoseLogDeliveryDescription {
173
194
  enabled?: boolean;
174
195
  }
175
196
  /**
197
+ * @public
176
198
  * <p>The description of the details about delivering logs to Amazon S3.</p>
177
199
  */
178
200
  export interface S3LogDeliveryDescription {
@@ -190,6 +212,7 @@ export interface S3LogDeliveryDescription {
190
212
  prefix?: string;
191
213
  }
192
214
  /**
215
+ * @public
193
216
  * <p>Workers can send worker logs to different destination types. This configuration
194
217
  * specifies the details of these destinations.</p>
195
218
  */
@@ -208,6 +231,7 @@ export interface WorkerLogDeliveryDescription {
208
231
  s3?: S3LogDeliveryDescription;
209
232
  }
210
233
  /**
234
+ * @public
211
235
  * <p>The description of the log delivery settings.</p>
212
236
  */
213
237
  export interface LogDeliveryDescription {
@@ -218,6 +242,7 @@ export interface LogDeliveryDescription {
218
242
  workerLogDelivery?: WorkerLogDeliveryDescription;
219
243
  }
220
244
  /**
245
+ * @public
221
246
  * <p>Details about a custom plugin.</p>
222
247
  */
223
248
  export interface CustomPluginDescription {
@@ -231,6 +256,7 @@ export interface CustomPluginDescription {
231
256
  revision?: number;
232
257
  }
233
258
  /**
259
+ * @public
234
260
  * <p>The description of the plugin.</p>
235
261
  */
236
262
  export interface PluginDescription {
@@ -240,6 +266,7 @@ export interface PluginDescription {
240
266
  customPlugin?: CustomPluginDescription;
241
267
  }
242
268
  /**
269
+ * @public
243
270
  * <p>The description of the worker configuration.</p>
244
271
  */
245
272
  export interface WorkerConfigurationDescription {
@@ -253,6 +280,7 @@ export interface WorkerConfigurationDescription {
253
280
  workerConfigurationArn?: string;
254
281
  }
255
282
  /**
283
+ * @public
256
284
  * <p>Summary of a connector.</p>
257
285
  */
258
286
  export interface ConnectorSummary {
@@ -320,6 +348,9 @@ export interface ConnectorSummary {
320
348
  */
321
349
  workerConfiguration?: WorkerConfigurationDescription;
322
350
  }
351
+ /**
352
+ * @public
353
+ */
323
354
  export declare enum CustomPluginState {
324
355
  ACTIVE = "ACTIVE",
325
356
  CREATE_FAILED = "CREATE_FAILED",
@@ -328,11 +359,15 @@ export declare enum CustomPluginState {
328
359
  UPDATE_FAILED = "UPDATE_FAILED",
329
360
  UPDATING = "UPDATING"
330
361
  }
362
+ /**
363
+ * @public
364
+ */
331
365
  export declare enum CustomPluginContentType {
332
366
  JAR = "JAR",
333
367
  ZIP = "ZIP"
334
368
  }
335
369
  /**
370
+ * @public
336
371
  * <p>Details about a custom plugin file.</p>
337
372
  */
338
373
  export interface CustomPluginFileDescription {
@@ -347,6 +382,7 @@ export interface CustomPluginFileDescription {
347
382
  fileSize?: number;
348
383
  }
349
384
  /**
385
+ * @public
350
386
  * <p>The description of the location of an object in Amazon S3.</p>
351
387
  */
352
388
  export interface S3LocationDescription {
@@ -364,6 +400,7 @@ export interface S3LocationDescription {
364
400
  objectVersion?: string;
365
401
  }
366
402
  /**
403
+ * @public
367
404
  * <p>Information about the location of a custom plugin.</p>
368
405
  */
369
406
  export interface CustomPluginLocationDescription {
@@ -374,6 +411,7 @@ export interface CustomPluginLocationDescription {
374
411
  s3Location?: S3LocationDescription;
375
412
  }
376
413
  /**
414
+ * @public
377
415
  * <p>Details about the revision of a custom plugin.</p>
378
416
  */
379
417
  export interface CustomPluginRevisionSummary {
@@ -403,6 +441,7 @@ export interface CustomPluginRevisionSummary {
403
441
  revision?: number;
404
442
  }
405
443
  /**
444
+ * @public
406
445
  * <p>A summary of the custom plugin.</p>
407
446
  */
408
447
  export interface CustomPluginSummary {
@@ -432,6 +471,7 @@ export interface CustomPluginSummary {
432
471
  name?: string;
433
472
  }
434
473
  /**
474
+ * @public
435
475
  * <p>A plugin is an AWS resource that contains the code that defines a connector's
436
476
  * logic.</p>
437
477
  */
@@ -446,6 +486,7 @@ export interface CustomPlugin {
446
486
  revision: number | undefined;
447
487
  }
448
488
  /**
489
+ * @public
449
490
  * <p>A plugin is an AWS resource that contains the code that defines your connector logic.
450
491
  * </p>
451
492
  */
@@ -456,6 +497,7 @@ export interface Plugin {
456
497
  customPlugin: CustomPlugin | undefined;
457
498
  }
458
499
  /**
500
+ * @public
459
501
  * <p>The summary of a worker configuration revision.</p>
460
502
  */
461
503
  export interface WorkerConfigurationRevisionSummary {
@@ -473,6 +515,7 @@ export interface WorkerConfigurationRevisionSummary {
473
515
  revision?: number;
474
516
  }
475
517
  /**
518
+ * @public
476
519
  * <p>The summary of a worker configuration.</p>
477
520
  */
478
521
  export interface WorkerConfigurationSummary {
@@ -498,6 +541,7 @@ export interface WorkerConfigurationSummary {
498
541
  workerConfigurationArn?: string;
499
542
  }
500
543
  /**
544
+ * @public
501
545
  * <p>Information about the VPC in which the connector resides.</p>
502
546
  */
503
547
  export interface Vpc {
@@ -511,6 +555,7 @@ export interface Vpc {
511
555
  subnets: string[] | undefined;
512
556
  }
513
557
  /**
558
+ * @public
514
559
  * <p>The details of the Apache Kafka cluster to which the connector is connected.</p>
515
560
  */
516
561
  export interface ApacheKafkaCluster {
@@ -525,6 +570,7 @@ export interface ApacheKafkaCluster {
525
570
  vpc: Vpc | undefined;
526
571
  }
527
572
  /**
573
+ * @public
528
574
  * <p>The scale-in policy for the connector.</p>
529
575
  */
530
576
  export interface ScaleInPolicy {
@@ -535,6 +581,7 @@ export interface ScaleInPolicy {
535
581
  cpuUtilizationPercentage: number | undefined;
536
582
  }
537
583
  /**
584
+ * @public
538
585
  * <p>The scale-out policy for the connector.</p>
539
586
  */
540
587
  export interface ScaleOutPolicy {
@@ -545,6 +592,7 @@ export interface ScaleOutPolicy {
545
592
  cpuUtilizationPercentage: number | undefined;
546
593
  }
547
594
  /**
595
+ * @public
548
596
  * <p>Specifies how the connector scales.</p>
549
597
  */
550
598
  export interface AutoScaling {
@@ -571,6 +619,7 @@ export interface AutoScaling {
571
619
  scaleOutPolicy?: ScaleOutPolicy;
572
620
  }
573
621
  /**
622
+ * @public
574
623
  * <p>An update to the connector's scale-in policy.</p>
575
624
  */
576
625
  export interface ScaleInPolicyUpdate {
@@ -581,6 +630,7 @@ export interface ScaleInPolicyUpdate {
581
630
  cpuUtilizationPercentage: number | undefined;
582
631
  }
583
632
  /**
633
+ * @public
584
634
  * <p>An update to the connector's scale-out policy.</p>
585
635
  */
586
636
  export interface ScaleOutPolicyUpdate {
@@ -591,6 +641,7 @@ export interface ScaleOutPolicyUpdate {
591
641
  cpuUtilizationPercentage: number | undefined;
592
642
  }
593
643
  /**
644
+ * @public
594
645
  * <p>The updates to the auto scaling parameters for the connector.</p>
595
646
  */
596
647
  export interface AutoScalingUpdate {
@@ -617,6 +668,7 @@ export interface AutoScalingUpdate {
617
668
  scaleOutPolicy: ScaleOutPolicyUpdate | undefined;
618
669
  }
619
670
  /**
671
+ * @public
620
672
  * <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
621
673
  * retry it.</p>
622
674
  */
@@ -629,6 +681,7 @@ export declare class BadRequestException extends __BaseException {
629
681
  constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
630
682
  }
631
683
  /**
684
+ * @public
632
685
  * <p>Details about a connector's provisioned capacity.</p>
633
686
  */
634
687
  export interface ProvisionedCapacity {
@@ -643,6 +696,7 @@ export interface ProvisionedCapacity {
643
696
  workerCount: number | undefined;
644
697
  }
645
698
  /**
699
+ * @public
646
700
  * <p>Information about the capacity of the connector, whether it is auto scaled or
647
701
  * provisioned.</p>
648
702
  */
@@ -657,6 +711,7 @@ export interface Capacity {
657
711
  provisionedCapacity?: ProvisionedCapacity;
658
712
  }
659
713
  /**
714
+ * @public
660
715
  * <p>An update to a connector's fixed capacity.</p>
661
716
  */
662
717
  export interface ProvisionedCapacityUpdate {
@@ -671,6 +726,7 @@ export interface ProvisionedCapacityUpdate {
671
726
  workerCount: number | undefined;
672
727
  }
673
728
  /**
729
+ * @public
674
730
  * <p>The target capacity for the connector. The capacity can be auto scaled or
675
731
  * provisioned.</p>
676
732
  */
@@ -685,6 +741,7 @@ export interface CapacityUpdate {
685
741
  provisionedCapacity?: ProvisionedCapacityUpdate;
686
742
  }
687
743
  /**
744
+ * @public
688
745
  * <p>The settings for delivering connector logs to Amazon CloudWatch Logs.</p>
689
746
  */
690
747
  export interface CloudWatchLogsLogDelivery {
@@ -698,6 +755,7 @@ export interface CloudWatchLogsLogDelivery {
698
755
  logGroup?: string;
699
756
  }
700
757
  /**
758
+ * @public
701
759
  * <p>HTTP Status Code 409: Conflict. A resource with this name already exists. Retry your
702
760
  * request with another name.</p>
703
761
  */
@@ -710,6 +768,7 @@ export declare class ConflictException extends __BaseException {
710
768
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
711
769
  }
712
770
  /**
771
+ * @public
713
772
  * <p>The details of the Apache Kafka cluster to which the connector is connected.</p>
714
773
  */
715
774
  export interface KafkaCluster {
@@ -719,6 +778,7 @@ export interface KafkaCluster {
719
778
  apacheKafkaCluster: ApacheKafkaCluster | undefined;
720
779
  }
721
780
  /**
781
+ * @public
722
782
  * <p>The client authentication information used in order to authenticate with the Apache
723
783
  * Kafka cluster.</p>
724
784
  */
@@ -730,6 +790,7 @@ export interface KafkaClusterClientAuthentication {
730
790
  authenticationType: KafkaClusterClientAuthenticationType | string | undefined;
731
791
  }
732
792
  /**
793
+ * @public
733
794
  * <p>Details of encryption in transit to the Apache Kafka cluster.</p>
734
795
  */
735
796
  export interface KafkaClusterEncryptionInTransit {
@@ -739,6 +800,7 @@ export interface KafkaClusterEncryptionInTransit {
739
800
  encryptionType: KafkaClusterEncryptionInTransitType | string | undefined;
740
801
  }
741
802
  /**
803
+ * @public
742
804
  * <p>The settings for delivering logs to Amazon Kinesis Data Firehose.</p>
743
805
  */
744
806
  export interface FirehoseLogDelivery {
@@ -753,6 +815,7 @@ export interface FirehoseLogDelivery {
753
815
  enabled: boolean | undefined;
754
816
  }
755
817
  /**
818
+ * @public
756
819
  * <p>Details about delivering logs to Amazon S3.</p>
757
820
  */
758
821
  export interface S3LogDelivery {
@@ -770,6 +833,7 @@ export interface S3LogDelivery {
770
833
  prefix?: string;
771
834
  }
772
835
  /**
836
+ * @public
773
837
  * <p>Workers can send worker logs to different destination types. This configuration
774
838
  * specifies the details of these destinations.</p>
775
839
  */
@@ -788,6 +852,7 @@ export interface WorkerLogDelivery {
788
852
  s3?: S3LogDelivery;
789
853
  }
790
854
  /**
855
+ * @public
791
856
  * <p>Details about log delivery.</p>
792
857
  */
793
858
  export interface LogDelivery {
@@ -798,6 +863,7 @@ export interface LogDelivery {
798
863
  workerLogDelivery: WorkerLogDelivery | undefined;
799
864
  }
800
865
  /**
866
+ * @public
801
867
  * <p>The configuration of the workers, which are the processes that run the connector
802
868
  * logic.</p>
803
869
  */
@@ -811,6 +877,9 @@ export interface WorkerConfiguration {
811
877
  */
812
878
  workerConfigurationArn: string | undefined;
813
879
  }
880
+ /**
881
+ * @public
882
+ */
814
883
  export interface CreateConnectorRequest {
815
884
  /**
816
885
  * <p>Information about the capacity allocated to the connector. Exactly one of the two
@@ -866,6 +935,9 @@ export interface CreateConnectorRequest {
866
935
  */
867
936
  workerConfiguration?: WorkerConfiguration;
868
937
  }
938
+ /**
939
+ * @public
940
+ */
869
941
  export interface CreateConnectorResponse {
870
942
  /**
871
943
  * <p>The Amazon Resource Name (ARN) that Amazon assigned to the connector.</p>
@@ -881,6 +953,7 @@ export interface CreateConnectorResponse {
881
953
  connectorState?: ConnectorState | string;
882
954
  }
883
955
  /**
956
+ * @public
884
957
  * <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
885
958
  * request.</p>
886
959
  */
@@ -893,6 +966,7 @@ export declare class ForbiddenException extends __BaseException {
893
966
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
894
967
  }
895
968
  /**
969
+ * @public
896
970
  * <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
897
971
  * resolve the issue.</p>
898
972
  */
@@ -905,6 +979,7 @@ export declare class InternalServerErrorException extends __BaseException {
905
979
  constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
906
980
  }
907
981
  /**
982
+ * @public
908
983
  * <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
909
984
  * and then retry it.</p>
910
985
  */
@@ -917,6 +992,7 @@ export declare class NotFoundException extends __BaseException {
917
992
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
918
993
  }
919
994
  /**
995
+ * @public
920
996
  * <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
921
997
  * resolve the issue.</p>
922
998
  */
@@ -929,6 +1005,7 @@ export declare class ServiceUnavailableException extends __BaseException {
929
1005
  constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
930
1006
  }
931
1007
  /**
1008
+ * @public
932
1009
  * <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
933
1010
  */
934
1011
  export declare class TooManyRequestsException extends __BaseException {
@@ -940,6 +1017,7 @@ export declare class TooManyRequestsException extends __BaseException {
940
1017
  constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
941
1018
  }
942
1019
  /**
1020
+ * @public
943
1021
  * <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
944
1022
  * validated.</p>
945
1023
  */
@@ -952,6 +1030,7 @@ export declare class UnauthorizedException extends __BaseException {
952
1030
  constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
953
1031
  }
954
1032
  /**
1033
+ * @public
955
1034
  * <p>The location of an object in Amazon S3.</p>
956
1035
  */
957
1036
  export interface S3Location {
@@ -969,6 +1048,7 @@ export interface S3Location {
969
1048
  objectVersion?: string;
970
1049
  }
971
1050
  /**
1051
+ * @public
972
1052
  * <p>Information about the location of a custom plugin.</p>
973
1053
  */
974
1054
  export interface CustomPluginLocation {
@@ -978,6 +1058,9 @@ export interface CustomPluginLocation {
978
1058
  */
979
1059
  s3Location: S3Location | undefined;
980
1060
  }
1061
+ /**
1062
+ * @public
1063
+ */
981
1064
  export interface CreateCustomPluginRequest {
982
1065
  /**
983
1066
  * <p>The type of the plugin file.</p>
@@ -996,6 +1079,9 @@ export interface CreateCustomPluginRequest {
996
1079
  */
997
1080
  name: string | undefined;
998
1081
  }
1082
+ /**
1083
+ * @public
1084
+ */
999
1085
  export interface CreateCustomPluginResponse {
1000
1086
  /**
1001
1087
  * <p>The Amazon Resource Name (ARN) that Amazon assigned to the custom plugin.</p>
@@ -1014,6 +1100,9 @@ export interface CreateCustomPluginResponse {
1014
1100
  */
1015
1101
  revision?: number;
1016
1102
  }
1103
+ /**
1104
+ * @public
1105
+ */
1017
1106
  export interface CreateWorkerConfigurationRequest {
1018
1107
  /**
1019
1108
  * <p>A summary description of the worker configuration.</p>
@@ -1028,6 +1117,9 @@ export interface CreateWorkerConfigurationRequest {
1028
1117
  */
1029
1118
  propertiesFileContent: string | undefined;
1030
1119
  }
1120
+ /**
1121
+ * @public
1122
+ */
1031
1123
  export interface CreateWorkerConfigurationResponse {
1032
1124
  /**
1033
1125
  * <p>The time that the worker configuration was created.</p>
@@ -1046,6 +1138,9 @@ export interface CreateWorkerConfigurationResponse {
1046
1138
  */
1047
1139
  workerConfigurationArn?: string;
1048
1140
  }
1141
+ /**
1142
+ * @public
1143
+ */
1049
1144
  export interface DeleteConnectorRequest {
1050
1145
  /**
1051
1146
  * <p>The Amazon Resource Name (ARN) of the connector that you want to delete.</p>
@@ -1056,6 +1151,9 @@ export interface DeleteConnectorRequest {
1056
1151
  */
1057
1152
  currentVersion?: string;
1058
1153
  }
1154
+ /**
1155
+ * @public
1156
+ */
1059
1157
  export interface DeleteConnectorResponse {
1060
1158
  /**
1061
1159
  * <p>The Amazon Resource Name (ARN) of the connector that you requested to delete.</p>
@@ -1066,12 +1164,18 @@ export interface DeleteConnectorResponse {
1066
1164
  */
1067
1165
  connectorState?: ConnectorState | string;
1068
1166
  }
1167
+ /**
1168
+ * @public
1169
+ */
1069
1170
  export interface DeleteCustomPluginRequest {
1070
1171
  /**
1071
1172
  * <p>The Amazon Resource Name (ARN) of the custom plugin that you want to delete.</p>
1072
1173
  */
1073
1174
  customPluginArn: string | undefined;
1074
1175
  }
1176
+ /**
1177
+ * @public
1178
+ */
1075
1179
  export interface DeleteCustomPluginResponse {
1076
1180
  /**
1077
1181
  * <p>The Amazon Resource Name (ARN) of the custom plugin that you requested to delete.</p>
@@ -1082,6 +1186,9 @@ export interface DeleteCustomPluginResponse {
1082
1186
  */
1083
1187
  customPluginState?: CustomPluginState | string;
1084
1188
  }
1189
+ /**
1190
+ * @public
1191
+ */
1085
1192
  export interface DescribeConnectorRequest {
1086
1193
  /**
1087
1194
  * <p>The Amazon Resource Name (ARN) of the connector that you want to describe.</p>
@@ -1089,6 +1196,7 @@ export interface DescribeConnectorRequest {
1089
1196
  connectorArn: string | undefined;
1090
1197
  }
1091
1198
  /**
1199
+ * @public
1092
1200
  * <p>Details about the state of a resource.</p>
1093
1201
  */
1094
1202
  export interface StateDescription {
@@ -1101,6 +1209,9 @@ export interface StateDescription {
1101
1209
  */
1102
1210
  message?: string;
1103
1211
  }
1212
+ /**
1213
+ * @public
1214
+ */
1104
1215
  export interface DescribeConnectorResponse {
1105
1216
  /**
1106
1217
  * <p>Information about the capacity of the connector, whether it is auto scaled or
@@ -1175,12 +1286,18 @@ export interface DescribeConnectorResponse {
1175
1286
  */
1176
1287
  stateDescription?: StateDescription;
1177
1288
  }
1289
+ /**
1290
+ * @public
1291
+ */
1178
1292
  export interface DescribeCustomPluginRequest {
1179
1293
  /**
1180
1294
  * <p>Returns information about a custom plugin.</p>
1181
1295
  */
1182
1296
  customPluginArn: string | undefined;
1183
1297
  }
1298
+ /**
1299
+ * @public
1300
+ */
1184
1301
  export interface DescribeCustomPluginResponse {
1185
1302
  /**
1186
1303
  * <p>The time that the custom plugin was created.</p>
@@ -1212,6 +1329,9 @@ export interface DescribeCustomPluginResponse {
1212
1329
  */
1213
1330
  stateDescription?: StateDescription;
1214
1331
  }
1332
+ /**
1333
+ * @public
1334
+ */
1215
1335
  export interface DescribeWorkerConfigurationRequest {
1216
1336
  /**
1217
1337
  * <p>The Amazon Resource Name (ARN) of the worker configuration that you want to get
@@ -1220,6 +1340,7 @@ export interface DescribeWorkerConfigurationRequest {
1220
1340
  workerConfigurationArn: string | undefined;
1221
1341
  }
1222
1342
  /**
1343
+ * @public
1223
1344
  * <p>The description of the worker configuration revision.</p>
1224
1345
  */
1225
1346
  export interface WorkerConfigurationRevisionDescription {
@@ -1240,6 +1361,9 @@ export interface WorkerConfigurationRevisionDescription {
1240
1361
  */
1241
1362
  revision?: number;
1242
1363
  }
1364
+ /**
1365
+ * @public
1366
+ */
1243
1367
  export interface DescribeWorkerConfigurationResponse {
1244
1368
  /**
1245
1369
  * <p>The time that the worker configuration was created.</p>
@@ -1262,6 +1386,9 @@ export interface DescribeWorkerConfigurationResponse {
1262
1386
  */
1263
1387
  workerConfigurationArn?: string;
1264
1388
  }
1389
+ /**
1390
+ * @public
1391
+ */
1265
1392
  export interface ListConnectorsRequest {
1266
1393
  /**
1267
1394
  * <p>The name prefix that you want to use to search for and list connectors.</p>
@@ -1278,6 +1405,9 @@ export interface ListConnectorsRequest {
1278
1405
  */
1279
1406
  nextToken?: string;
1280
1407
  }
1408
+ /**
1409
+ * @public
1410
+ */
1281
1411
  export interface ListConnectorsResponse {
1282
1412
  /**
1283
1413
  * <p>An array of connector descriptions.</p>
@@ -1290,6 +1420,9 @@ export interface ListConnectorsResponse {
1290
1420
  */
1291
1421
  nextToken?: string;
1292
1422
  }
1423
+ /**
1424
+ * @public
1425
+ */
1293
1426
  export interface ListCustomPluginsRequest {
1294
1427
  /**
1295
1428
  * <p>The maximum number of custom plugins to list in one response.</p>
@@ -1302,6 +1435,9 @@ export interface ListCustomPluginsRequest {
1302
1435
  */
1303
1436
  nextToken?: string;
1304
1437
  }
1438
+ /**
1439
+ * @public
1440
+ */
1305
1441
  export interface ListCustomPluginsResponse {
1306
1442
  /**
1307
1443
  * <p>An array of custom plugin descriptions.</p>
@@ -1314,6 +1450,9 @@ export interface ListCustomPluginsResponse {
1314
1450
  */
1315
1451
  nextToken?: string;
1316
1452
  }
1453
+ /**
1454
+ * @public
1455
+ */
1317
1456
  export interface ListWorkerConfigurationsRequest {
1318
1457
  /**
1319
1458
  * <p>The maximum number of worker configurations to list in one response.</p>
@@ -1326,6 +1465,9 @@ export interface ListWorkerConfigurationsRequest {
1326
1465
  */
1327
1466
  nextToken?: string;
1328
1467
  }
1468
+ /**
1469
+ * @public
1470
+ */
1329
1471
  export interface ListWorkerConfigurationsResponse {
1330
1472
  /**
1331
1473
  * <p>If the response of a ListWorkerConfigurations operation is truncated, it will include a
@@ -1338,6 +1480,9 @@ export interface ListWorkerConfigurationsResponse {
1338
1480
  */
1339
1481
  workerConfigurations?: WorkerConfigurationSummary[];
1340
1482
  }
1483
+ /**
1484
+ * @public
1485
+ */
1341
1486
  export interface UpdateConnectorRequest {
1342
1487
  /**
1343
1488
  * <p>The target capacity.</p>
@@ -1352,6 +1497,9 @@ export interface UpdateConnectorRequest {
1352
1497
  */
1353
1498
  currentVersion: string | undefined;
1354
1499
  }
1500
+ /**
1501
+ * @public
1502
+ */
1355
1503
  export interface UpdateConnectorResponse {
1356
1504
  /**
1357
1505
  * <p>The Amazon Resource Name (ARN) of the connector.</p>