@aws-sdk/client-kafkaconnect 3.952.0 → 3.954.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.
Files changed (62) hide show
  1. package/dist-cjs/index.js +408 -273
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateConnectorCommand.js +2 -2
  4. package/dist-es/commands/CreateCustomPluginCommand.js +2 -2
  5. package/dist-es/commands/CreateWorkerConfigurationCommand.js +2 -2
  6. package/dist-es/commands/DeleteConnectorCommand.js +2 -2
  7. package/dist-es/commands/DeleteCustomPluginCommand.js +2 -2
  8. package/dist-es/commands/DeleteWorkerConfigurationCommand.js +2 -2
  9. package/dist-es/commands/DescribeConnectorCommand.js +2 -2
  10. package/dist-es/commands/DescribeConnectorOperationCommand.js +2 -2
  11. package/dist-es/commands/DescribeCustomPluginCommand.js +2 -2
  12. package/dist-es/commands/DescribeWorkerConfigurationCommand.js +2 -2
  13. package/dist-es/commands/ListConnectorOperationsCommand.js +2 -2
  14. package/dist-es/commands/ListConnectorsCommand.js +2 -2
  15. package/dist-es/commands/ListCustomPluginsCommand.js +2 -2
  16. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  17. package/dist-es/commands/ListWorkerConfigurationsCommand.js +2 -2
  18. package/dist-es/commands/TagResourceCommand.js +2 -2
  19. package/dist-es/commands/UntagResourceCommand.js +2 -2
  20. package/dist-es/commands/UpdateConnectorCommand.js +2 -2
  21. package/dist-es/index.js +1 -0
  22. package/dist-es/models/enums.js +4 -0
  23. package/dist-es/runtimeConfig.shared.js +6 -1
  24. package/dist-es/schemas/schemas_0.js +249 -238
  25. package/dist-types/KafkaConnectClient.d.ts +1 -10
  26. package/dist-types/commands/CreateConnectorCommand.d.ts +8 -14
  27. package/dist-types/commands/CreateCustomPluginCommand.d.ts +7 -14
  28. package/dist-types/commands/CreateWorkerConfigurationCommand.d.ts +7 -14
  29. package/dist-types/commands/DeleteConnectorCommand.d.ts +6 -12
  30. package/dist-types/commands/DeleteCustomPluginCommand.d.ts +6 -12
  31. package/dist-types/commands/DeleteWorkerConfigurationCommand.d.ts +6 -12
  32. package/dist-types/commands/DescribeConnectorCommand.d.ts +7 -12
  33. package/dist-types/commands/DescribeConnectorOperationCommand.d.ts +6 -12
  34. package/dist-types/commands/DescribeCustomPluginCommand.d.ts +6 -12
  35. package/dist-types/commands/DescribeWorkerConfigurationCommand.d.ts +6 -12
  36. package/dist-types/commands/ListConnectorOperationsCommand.d.ts +6 -12
  37. package/dist-types/commands/ListConnectorsCommand.d.ts +8 -15
  38. package/dist-types/commands/ListCustomPluginsCommand.d.ts +6 -12
  39. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -12
  40. package/dist-types/commands/ListWorkerConfigurationsCommand.d.ts +6 -12
  41. package/dist-types/commands/TagResourceCommand.d.ts +7 -14
  42. package/dist-types/commands/UntagResourceCommand.d.ts +6 -12
  43. package/dist-types/commands/UpdateConnectorCommand.d.ts +7 -13
  44. package/dist-types/index.d.ts +1 -0
  45. package/dist-types/models/enums.d.ts +12 -0
  46. package/dist-types/models/errors.d.ts +7 -14
  47. package/dist-types/models/models_0.d.ts +66 -111
  48. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  49. package/dist-types/runtimeConfig.d.ts +6 -2
  50. package/dist-types/runtimeConfig.native.d.ts +6 -2
  51. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  52. package/dist-types/schemas/schemas_0.d.ts +120 -133
  53. package/dist-types/ts3.4/KafkaConnectClient.d.ts +0 -4
  54. package/dist-types/ts3.4/index.d.ts +1 -0
  55. package/dist-types/ts3.4/models/enums.d.ts +5 -0
  56. package/dist-types/ts3.4/models/models_0.d.ts +4 -0
  57. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  58. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  59. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  60. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  61. package/dist-types/ts3.4/schemas/schemas_0.d.ts +119 -135
  62. package/package.json +34 -34
@@ -1,4 +1,4 @@
1
- import { ConnectorOperationState, ConnectorOperationStepState, ConnectorOperationStepType, ConnectorOperationType, ConnectorState, CustomPluginContentType, CustomPluginState, KafkaClusterClientAuthenticationType, KafkaClusterEncryptionInTransitType, WorkerConfigurationState } from "./enums";
1
+ import { ConnectorOperationState, ConnectorOperationStepState, ConnectorOperationStepType, ConnectorOperationType, ConnectorState, CustomPluginContentType, CustomPluginState, KafkaClusterClientAuthenticationType, KafkaClusterEncryptionInTransitType, NetworkType, WorkerConfigurationState } from "./enums";
2
2
  /**
3
3
  * <p>Details of a step that is involved in a connector's operation.</p>
4
4
  * @public
@@ -52,8 +52,7 @@ export interface ConnectorOperationSummary {
52
52
  */
53
53
  export interface ScaleInPolicyDescription {
54
54
  /**
55
- * <p>Specifies the CPU utilization percentage threshold at which you want connector scale in
56
- * to be triggered.</p>
55
+ * <p>Specifies the CPU utilization percentage threshold at which you want connector scale in to be triggered.</p>
57
56
  * @public
58
57
  */
59
58
  cpuUtilizationPercentage?: number | undefined;
@@ -64,8 +63,7 @@ export interface ScaleInPolicyDescription {
64
63
  */
65
64
  export interface ScaleOutPolicyDescription {
66
65
  /**
67
- * <p>The CPU utilization percentage threshold at which you want connector scale out to be
68
- * triggered.</p>
66
+ * <p>The CPU utilization percentage threshold at which you want connector scale out to be triggered.</p>
69
67
  * @public
70
68
  */
71
69
  cpuUtilizationPercentage?: number | undefined;
@@ -81,8 +79,7 @@ export interface AutoScalingDescription {
81
79
  */
82
80
  maxWorkerCount?: number | undefined;
83
81
  /**
84
- * <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
85
- * values are 1,2,4,8.</p>
82
+ * <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.</p>
86
83
  * @public
87
84
  */
88
85
  mcuCount?: number | undefined;
@@ -108,8 +105,7 @@ export interface AutoScalingDescription {
108
105
  */
109
106
  export interface ProvisionedCapacityDescription {
110
107
  /**
111
- * <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
112
- * values are 1,2,4,8.</p>
108
+ * <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.</p>
113
109
  * @public
114
110
  */
115
111
  mcuCount?: number | undefined;
@@ -162,8 +158,7 @@ export interface ApacheKafkaClusterDescription {
162
158
  */
163
159
  bootstrapServers?: string | undefined;
164
160
  /**
165
- * <p>Details of an Amazon VPC which has network connectivity to the Apache Kafka
166
- * cluster.</p>
161
+ * <p>Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.</p>
167
162
  * @public
168
163
  */
169
164
  vpc?: VpcDescription | undefined;
@@ -180,14 +175,12 @@ export interface KafkaClusterDescription {
180
175
  apacheKafkaCluster?: ApacheKafkaClusterDescription | undefined;
181
176
  }
182
177
  /**
183
- * <p>The client authentication information used in order to authenticate with the Apache
184
- * Kafka cluster.</p>
178
+ * <p>The client authentication information used in order to authenticate with the Apache Kafka cluster.</p>
185
179
  * @public
186
180
  */
187
181
  export interface KafkaClusterClientAuthenticationDescription {
188
182
  /**
189
- * <p>The type of client authentication used to connect to the Apache Kafka cluster. Value
190
- * NONE means that no client authentication is used.</p>
183
+ * <p>The type of client authentication used to connect to the Apache Kafka cluster. Value NONE means that no client authentication is used.</p>
191
184
  * @public
192
185
  */
193
186
  authenticationType?: KafkaClusterClientAuthenticationType | undefined;
@@ -220,14 +213,12 @@ export interface CloudWatchLogsLogDeliveryDescription {
220
213
  logGroup?: string | undefined;
221
214
  }
222
215
  /**
223
- * <p>A description of the settings for delivering logs to Amazon Kinesis Data
224
- * Firehose.</p>
216
+ * <p>A description of the settings for delivering logs to Amazon Kinesis Data Firehose.</p>
225
217
  * @public
226
218
  */
227
219
  export interface FirehoseLogDeliveryDescription {
228
220
  /**
229
- * <p>The name of the Kinesis Data Firehose delivery stream that is the destination for log
230
- * delivery.</p>
221
+ * <p>The name of the Kinesis Data Firehose delivery stream that is the destination for log delivery.</p>
231
222
  * @public
232
223
  */
233
224
  deliveryStream?: string | undefined;
@@ -259,8 +250,7 @@ export interface S3LogDeliveryDescription {
259
250
  prefix?: string | undefined;
260
251
  }
261
252
  /**
262
- * <p>Workers can send worker logs to different destination types. This configuration
263
- * specifies the details of these destinations.</p>
253
+ * <p>Workers can send worker logs to different destination types. This configuration specifies the details of these destinations.</p>
264
254
  * @public
265
255
  */
266
256
  export interface WorkerLogDeliveryDescription {
@@ -286,8 +276,7 @@ export interface WorkerLogDeliveryDescription {
286
276
  */
287
277
  export interface LogDeliveryDescription {
288
278
  /**
289
- * <p>The workers can send worker logs to different destination types. This configuration
290
- * specifies the details of these destinations.</p>
279
+ * <p>The workers can send worker logs to different destination types. This configuration specifies the details of these destinations.</p>
291
280
  * @public
292
281
  */
293
282
  workerLogDelivery?: WorkerLogDeliveryDescription | undefined;
@@ -381,8 +370,7 @@ export interface ConnectorSummary {
381
370
  */
382
371
  kafkaCluster?: KafkaClusterDescription | undefined;
383
372
  /**
384
- * <p>The type of client authentication used to connect to the Apache Kafka cluster. The value
385
- * is NONE when no client authentication is used.</p>
373
+ * <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>
386
374
  * @public
387
375
  */
388
376
  kafkaClusterClientAuthentication?: KafkaClusterClientAuthenticationDescription | undefined;
@@ -392,8 +380,7 @@ export interface ConnectorSummary {
392
380
  */
393
381
  kafkaClusterEncryptionInTransit?: KafkaClusterEncryptionInTransitDescription | undefined;
394
382
  /**
395
- * <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka
396
- * cluster's version and the plugins.</p>
383
+ * <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka cluster's version and the plugins.</p>
397
384
  * @public
398
385
  */
399
386
  kafkaConnectVersion?: string | undefined;
@@ -402,14 +389,18 @@ export interface ConnectorSummary {
402
389
  * @public
403
390
  */
404
391
  logDelivery?: LogDeliveryDescription | undefined;
392
+ /**
393
+ * <p>The network type of the connector. It gives connectors connectivity to either IPv4 (IPV4) or IPv4 and IPv6 (DUAL) destinations. Defaults to IPV4.</p>
394
+ * @public
395
+ */
396
+ networkType?: NetworkType | undefined;
405
397
  /**
406
398
  * <p>Specifies which plugins were used for this connector.</p>
407
399
  * @public
408
400
  */
409
401
  plugins?: PluginDescription[] | undefined;
410
402
  /**
411
- * <p>The Amazon Resource Name (ARN) of the IAM role used by the connector to access Amazon
412
- * Web Services resources.</p>
403
+ * <p>The Amazon Resource Name (ARN) of the IAM role used by the connector to access Amazon Web Services resources.</p>
413
404
  * @public
414
405
  */
415
406
  serviceExecutionRoleArn?: string | undefined;
@@ -425,8 +416,7 @@ export interface ConnectorSummary {
425
416
  */
426
417
  export interface CustomPluginFileDescription {
427
418
  /**
428
- * <p>The hex-encoded MD5 checksum of the custom plugin file. You can use it to validate the
429
- * file.</p>
419
+ * <p>The hex-encoded MD5 checksum of the custom plugin file. You can use it to validate the file.</p>
430
420
  * @public
431
421
  */
432
422
  fileMd5?: string | undefined;
@@ -463,8 +453,7 @@ export interface S3LocationDescription {
463
453
  */
464
454
  export interface CustomPluginLocationDescription {
465
455
  /**
466
- * <p>The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin
467
- * file stored in Amazon S3.</p>
456
+ * <p>The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.</p>
468
457
  * @public
469
458
  */
470
459
  s3Location?: S3LocationDescription | undefined;
@@ -652,8 +641,7 @@ export interface ApacheKafkaCluster {
652
641
  */
653
642
  bootstrapServers: string | undefined;
654
643
  /**
655
- * <p>Details of an Amazon VPC which has network connectivity to the Apache Kafka
656
- * cluster.</p>
644
+ * <p>Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.</p>
657
645
  * @public
658
646
  */
659
647
  vpc: Vpc | undefined;
@@ -664,8 +652,7 @@ export interface ApacheKafkaCluster {
664
652
  */
665
653
  export interface ScaleInPolicy {
666
654
  /**
667
- * <p>Specifies the CPU utilization percentage threshold at which you want connector scale in
668
- * to be triggered.</p>
655
+ * <p>Specifies the CPU utilization percentage threshold at which you want connector scale in to be triggered.</p>
669
656
  * @public
670
657
  */
671
658
  cpuUtilizationPercentage: number | undefined;
@@ -676,8 +663,7 @@ export interface ScaleInPolicy {
676
663
  */
677
664
  export interface ScaleOutPolicy {
678
665
  /**
679
- * <p>The CPU utilization percentage threshold at which you want connector scale out to be
680
- * triggered.</p>
666
+ * <p>The CPU utilization percentage threshold at which you want connector scale out to be triggered.</p>
681
667
  * @public
682
668
  */
683
669
  cpuUtilizationPercentage: number | undefined;
@@ -693,8 +679,7 @@ export interface AutoScaling {
693
679
  */
694
680
  maxWorkerCount: number | undefined;
695
681
  /**
696
- * <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
697
- * values are 1,2,4,8.</p>
682
+ * <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.</p>
698
683
  * @public
699
684
  */
700
685
  mcuCount: number | undefined;
@@ -720,8 +705,7 @@ export interface AutoScaling {
720
705
  */
721
706
  export interface ScaleInPolicyUpdate {
722
707
  /**
723
- * <p>The target CPU utilization percentage threshold at which you want connector scale in to
724
- * be triggered.</p>
708
+ * <p>The target CPU utilization percentage threshold at which you want connector scale in to be triggered.</p>
725
709
  * @public
726
710
  */
727
711
  cpuUtilizationPercentage: number | undefined;
@@ -732,8 +716,7 @@ export interface ScaleInPolicyUpdate {
732
716
  */
733
717
  export interface ScaleOutPolicyUpdate {
734
718
  /**
735
- * <p>The target CPU utilization percentage threshold at which you want connector scale out to
736
- * be triggered.</p>
719
+ * <p>The target CPU utilization percentage threshold at which you want connector scale out to be triggered.</p>
737
720
  * @public
738
721
  */
739
722
  cpuUtilizationPercentage: number | undefined;
@@ -749,8 +732,7 @@ export interface AutoScalingUpdate {
749
732
  */
750
733
  maxWorkerCount: number | undefined;
751
734
  /**
752
- * <p>The target number of microcontroller units (MCUs) allocated to each connector worker.
753
- * The valid values are 1,2,4,8.</p>
735
+ * <p>The target number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.</p>
754
736
  * @public
755
737
  */
756
738
  mcuCount: number | undefined;
@@ -776,8 +758,7 @@ export interface AutoScalingUpdate {
776
758
  */
777
759
  export interface ProvisionedCapacity {
778
760
  /**
779
- * <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
780
- * values are 1,2,4,8.</p>
761
+ * <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.</p>
781
762
  * @public
782
763
  */
783
764
  mcuCount: number | undefined;
@@ -788,8 +769,7 @@ export interface ProvisionedCapacity {
788
769
  workerCount: number | undefined;
789
770
  }
790
771
  /**
791
- * <p>Information about the capacity of the connector, whether it is auto scaled or
792
- * provisioned.</p>
772
+ * <p>Information about the capacity of the connector, whether it is auto scaled or provisioned.</p>
793
773
  * @public
794
774
  */
795
775
  export interface Capacity {
@@ -810,8 +790,7 @@ export interface Capacity {
810
790
  */
811
791
  export interface ProvisionedCapacityUpdate {
812
792
  /**
813
- * <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid
814
- * values are 1,2,4,8.</p>
793
+ * <p>The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.</p>
815
794
  * @public
816
795
  */
817
796
  mcuCount: number | undefined;
@@ -822,8 +801,7 @@ export interface ProvisionedCapacityUpdate {
822
801
  workerCount: number | undefined;
823
802
  }
824
803
  /**
825
- * <p>The target capacity for the connector. The capacity can be auto scaled or
826
- * provisioned.</p>
804
+ * <p>The target capacity for the connector. The capacity can be auto scaled or provisioned.</p>
827
805
  * @public
828
806
  */
829
807
  export interface CapacityUpdate {
@@ -866,14 +844,12 @@ export interface KafkaCluster {
866
844
  apacheKafkaCluster: ApacheKafkaCluster | undefined;
867
845
  }
868
846
  /**
869
- * <p>The client authentication information used in order to authenticate with the Apache
870
- * Kafka cluster.</p>
847
+ * <p>The client authentication information used in order to authenticate with the Apache Kafka cluster.</p>
871
848
  * @public
872
849
  */
873
850
  export interface KafkaClusterClientAuthentication {
874
851
  /**
875
- * <p>The type of client authentication used to connect to the Apache Kafka cluster. Value
876
- * NONE means that no client authentication is used.</p>
852
+ * <p>The type of client authentication used to connect to the Apache Kafka cluster. Value NONE means that no client authentication is used.</p>
877
853
  * @public
878
854
  */
879
855
  authenticationType: KafkaClusterClientAuthenticationType | undefined;
@@ -895,8 +871,7 @@ export interface KafkaClusterEncryptionInTransit {
895
871
  */
896
872
  export interface FirehoseLogDelivery {
897
873
  /**
898
- * <p>The name of the Kinesis Data Firehose delivery stream that is the destination for log
899
- * delivery.</p>
874
+ * <p>The name of the Kinesis Data Firehose delivery stream that is the destination for log delivery.</p>
900
875
  * @public
901
876
  */
902
877
  deliveryStream?: string | undefined;
@@ -928,8 +903,7 @@ export interface S3LogDelivery {
928
903
  prefix?: string | undefined;
929
904
  }
930
905
  /**
931
- * <p>Workers can send worker logs to different destination types. This configuration
932
- * specifies the details of these destinations.</p>
906
+ * <p>Workers can send worker logs to different destination types. This configuration specifies the details of these destinations.</p>
933
907
  * @public
934
908
  */
935
909
  export interface WorkerLogDelivery {
@@ -955,15 +929,13 @@ export interface WorkerLogDelivery {
955
929
  */
956
930
  export interface LogDelivery {
957
931
  /**
958
- * <p>The workers can send worker logs to different destination types. This configuration
959
- * specifies the details of these destinations.</p>
932
+ * <p>The workers can send worker logs to different destination types. This configuration specifies the details of these destinations.</p>
960
933
  * @public
961
934
  */
962
935
  workerLogDelivery: WorkerLogDelivery | undefined;
963
936
  }
964
937
  /**
965
- * <p>The configuration of the workers, which are the processes that run the connector
966
- * logic.</p>
938
+ * <p>The configuration of the workers, which are the processes that run the connector logic.</p>
967
939
  * @public
968
940
  */
969
941
  export interface WorkerConfiguration {
@@ -983,8 +955,7 @@ export interface WorkerConfiguration {
983
955
  */
984
956
  export interface CreateConnectorRequest {
985
957
  /**
986
- * <p>Information about the capacity allocated to the connector. Exactly one of the two
987
- * properties must be specified.</p>
958
+ * <p>Information about the capacity allocated to the connector. Exactly one of the two properties must be specified.</p>
988
959
  * @public
989
960
  */
990
961
  capacity: Capacity | undefined;
@@ -1019,8 +990,7 @@ export interface CreateConnectorRequest {
1019
990
  */
1020
991
  kafkaClusterEncryptionInTransit: KafkaClusterEncryptionInTransit | undefined;
1021
992
  /**
1022
- * <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka
1023
- * cluster's version and the plugins.</p>
993
+ * <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka cluster's version and the plugins.</p>
1024
994
  * @public
1025
995
  */
1026
996
  kafkaConnectVersion: string | undefined;
@@ -1030,18 +1000,17 @@ export interface CreateConnectorRequest {
1030
1000
  */
1031
1001
  logDelivery?: LogDelivery | undefined;
1032
1002
  /**
1033
- * <important>
1034
- * <p>Amazon MSK Connect does not currently support specifying multiple plugins as a list. To use more than one plugin for your connector, you can create a single custom plugin using a ZIP file that bundles multiple plugins together.</p>
1035
- * </important>
1036
- * <p>Specifies which plugin to use for the connector. You must specify a single-element list containing one <code>customPlugin</code> object.</p>
1003
+ * <p>The network type of the connector. It gives connectors connectivity to either IPv4 (IPV4) or IPv4 and IPv6 (DUAL) destinations. Defaults to IPV4.</p>
1004
+ * @public
1005
+ */
1006
+ networkType?: NetworkType | undefined;
1007
+ /**
1008
+ * <important> <p>Amazon MSK Connect does not currently support specifying multiple plugins as a list. To use more than one plugin for your connector, you can create a single custom plugin using a ZIP file that bundles multiple plugins together.</p> </important> <p>Specifies which plugin to use for the connector. You must specify a single-element list containing one <code>customPlugin</code> object.</p>
1037
1009
  * @public
1038
1010
  */
1039
1011
  plugins: Plugin[] | undefined;
1040
1012
  /**
1041
- * <p>The Amazon Resource Name (ARN) of the IAM role used by the connector to access the
1042
- * Amazon Web Services resources that it needs. The types of resources depends on the logic of
1043
- * the connector. For example, a connector that has Amazon S3 as a destination must have
1044
- * permissions that allow it to write to the S3 destination bucket.</p>
1013
+ * <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>
1045
1014
  * @public
1046
1015
  */
1047
1016
  serviceExecutionRoleArn: string | undefined;
@@ -1103,8 +1072,7 @@ export interface S3Location {
1103
1072
  */
1104
1073
  export interface CustomPluginLocation {
1105
1074
  /**
1106
- * <p>The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin
1107
- * file stored in Amazon S3.</p>
1075
+ * <p>The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.</p>
1108
1076
  * @public
1109
1077
  */
1110
1078
  s3Location: S3Location | undefined;
@@ -1330,8 +1298,7 @@ export interface StateDescription {
1330
1298
  */
1331
1299
  export interface DescribeConnectorResponse {
1332
1300
  /**
1333
- * <p>Information about the capacity of the connector, whether it is auto scaled or
1334
- * provisioned.</p>
1301
+ * <p>Information about the capacity of the connector, whether it is auto scaled or provisioned.</p>
1335
1302
  * @public
1336
1303
  */
1337
1304
  capacity?: CapacityDescription | undefined;
@@ -1376,8 +1343,7 @@ export interface DescribeConnectorResponse {
1376
1343
  */
1377
1344
  kafkaCluster?: KafkaClusterDescription | undefined;
1378
1345
  /**
1379
- * <p>The type of client authentication used to connect to the Apache Kafka cluster. The value
1380
- * is NONE when no client authentication is used.</p>
1346
+ * <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>
1381
1347
  * @public
1382
1348
  */
1383
1349
  kafkaClusterClientAuthentication?: KafkaClusterClientAuthenticationDescription | undefined;
@@ -1387,8 +1353,7 @@ export interface DescribeConnectorResponse {
1387
1353
  */
1388
1354
  kafkaClusterEncryptionInTransit?: KafkaClusterEncryptionInTransitDescription | undefined;
1389
1355
  /**
1390
- * <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka
1391
- * cluster's version and the plugins.</p>
1356
+ * <p>The version of Kafka Connect. It has to be compatible with both the Apache Kafka cluster's version and the plugins.</p>
1392
1357
  * @public
1393
1358
  */
1394
1359
  kafkaConnectVersion?: string | undefined;
@@ -1397,14 +1362,18 @@ export interface DescribeConnectorResponse {
1397
1362
  * @public
1398
1363
  */
1399
1364
  logDelivery?: LogDeliveryDescription | undefined;
1365
+ /**
1366
+ * <p>The network type of the connector. It gives connectors connectivity to either IPv4 (IPV4) or IPv4 and IPv6 (DUAL) destinations. Defaults to IPV4.</p>
1367
+ * @public
1368
+ */
1369
+ networkType?: NetworkType | undefined;
1400
1370
  /**
1401
1371
  * <p>Specifies which plugins were used for this connector.</p>
1402
1372
  * @public
1403
1373
  */
1404
1374
  plugins?: PluginDescription[] | undefined;
1405
1375
  /**
1406
- * <p>The Amazon Resource Name (ARN) of the IAM role used by the connector to access Amazon
1407
- * Web Services resources.</p>
1376
+ * <p>The Amazon Resource Name (ARN) of the IAM role used by the connector to access Amazon Web Services resources.</p>
1408
1377
  * @public
1409
1378
  */
1410
1379
  serviceExecutionRoleArn?: string | undefined;
@@ -1540,8 +1509,7 @@ export interface DescribeCustomPluginResponse {
1540
1509
  */
1541
1510
  description?: string | undefined;
1542
1511
  /**
1543
- * <p>The latest successfully created revision of the custom plugin. If there are no
1544
- * successfully created revisions, this field will be absent.</p>
1512
+ * <p>The latest successfully created revision of the custom plugin. If there are no successfully created revisions, this field will be absent.</p>
1545
1513
  * @public
1546
1514
  */
1547
1515
  latestRevision?: CustomPluginRevisionSummary | undefined;
@@ -1561,8 +1529,7 @@ export interface DescribeCustomPluginResponse {
1561
1529
  */
1562
1530
  export interface DescribeWorkerConfigurationRequest {
1563
1531
  /**
1564
- * <p>The Amazon Resource Name (ARN) of the worker configuration that you want to get
1565
- * information about.</p>
1532
+ * <p>The Amazon Resource Name (ARN) of the worker configuration that you want to get information about.</p>
1566
1533
  * @public
1567
1534
  */
1568
1535
  workerConfigurationArn: string | undefined;
@@ -1678,9 +1645,7 @@ export interface ListConnectorsRequest {
1678
1645
  */
1679
1646
  maxResults?: number | undefined;
1680
1647
  /**
1681
- * <p>If the response of a ListConnectors operation is truncated, it will include a NextToken.
1682
- * Send this NextToken in a subsequent request to continue listing from where the previous
1683
- * operation left off.</p>
1648
+ * <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>
1684
1649
  * @public
1685
1650
  */
1686
1651
  nextToken?: string | undefined;
@@ -1695,9 +1660,7 @@ export interface ListConnectorsResponse {
1695
1660
  */
1696
1661
  connectors?: ConnectorSummary[] | undefined;
1697
1662
  /**
1698
- * <p>If the response of a ListConnectors operation is truncated, it will include a NextToken.
1699
- * Send this NextToken in a subsequent request to continue listing from where it left
1700
- * off.</p>
1663
+ * <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>
1701
1664
  * @public
1702
1665
  */
1703
1666
  nextToken?: string | undefined;
@@ -1712,9 +1675,7 @@ export interface ListCustomPluginsRequest {
1712
1675
  */
1713
1676
  maxResults?: number | undefined;
1714
1677
  /**
1715
- * <p>If the response of a ListCustomPlugins operation is truncated, it will include a
1716
- * NextToken. Send this NextToken in a subsequent request to continue listing from where the
1717
- * previous operation left off.</p>
1678
+ * <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>
1718
1679
  * @public
1719
1680
  */
1720
1681
  nextToken?: string | undefined;
@@ -1734,9 +1695,7 @@ export interface ListCustomPluginsResponse {
1734
1695
  */
1735
1696
  customPlugins?: CustomPluginSummary[] | undefined;
1736
1697
  /**
1737
- * <p>If the response of a ListCustomPlugins operation is truncated, it will include a
1738
- * NextToken. Send this NextToken in a subsequent request to continue listing from where the
1739
- * previous operation left off.</p>
1698
+ * <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>
1740
1699
  * @public
1741
1700
  */
1742
1701
  nextToken?: string | undefined;
@@ -1771,9 +1730,7 @@ export interface ListWorkerConfigurationsRequest {
1771
1730
  */
1772
1731
  maxResults?: number | undefined;
1773
1732
  /**
1774
- * <p>If the response of a ListWorkerConfigurations operation is truncated, it will include a
1775
- * NextToken. Send this NextToken in a subsequent request to continue listing from where the
1776
- * previous operation left off.</p>
1733
+ * <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>
1777
1734
  * @public
1778
1735
  */
1779
1736
  nextToken?: string | undefined;
@@ -1788,9 +1745,7 @@ export interface ListWorkerConfigurationsRequest {
1788
1745
  */
1789
1746
  export interface ListWorkerConfigurationsResponse {
1790
1747
  /**
1791
- * <p>If the response of a ListWorkerConfigurations operation is truncated, it will include a
1792
- * NextToken. Send this NextToken in a subsequent request to continue listing from where the
1793
- * previous operation left off.</p>
1748
+ * <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>
1794
1749
  * @public
1795
1750
  */
1796
1751
  nextToken?: string | undefined;
@@ -17,8 +17,13 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
17
17
  streamCollector: import("@smithy/types").StreamCollector;
18
18
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
19
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
- apiVersion: string;
21
20
  cacheMiddleware?: boolean | undefined;
21
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
22
+ protocolSettings: {
23
+ defaultNamespace?: string;
24
+ [setting: string]: unknown;
25
+ };
26
+ apiVersion: string;
22
27
  urlParser: import("@smithy/types").UrlParser;
23
28
  base64Decoder: import("@smithy/types").Decoder;
24
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -29,7 +34,6 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
29
34
  profile?: string;
30
35
  logger: import("@smithy/types").Logger;
31
36
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
- protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
33
37
  customUserAgent?: string | import("@smithy/types").UserAgent;
34
38
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
35
39
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -19,8 +19,13 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
19
19
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
20
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
- apiVersion: string;
23
22
  cacheMiddleware?: boolean | undefined;
23
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
24
+ protocolSettings: {
25
+ defaultNamespace?: string;
26
+ [setting: string]: unknown;
27
+ };
28
+ apiVersion: string;
24
29
  urlParser: import("@smithy/types").UrlParser;
25
30
  base64Decoder: import("@smithy/types").Decoder;
26
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -31,7 +36,6 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
31
36
  profile?: string;
32
37
  logger: import("@smithy/types").Logger;
33
38
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
- protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
35
39
  customUserAgent?: string | import("@smithy/types").UserAgent;
36
40
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
37
41
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
6
6
  runtime: string;
7
7
  sha256: import("@smithy/types").HashConstructor;
8
8
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
- apiVersion: string;
10
9
  cacheMiddleware?: boolean;
10
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
11
+ protocolSettings: {
12
+ defaultNamespace?: string;
13
+ [setting: string]: unknown;
14
+ };
15
+ apiVersion: string;
11
16
  urlParser: import("@smithy/types").UrlParser;
12
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
18
  streamCollector: import("@smithy/types").StreamCollector;
@@ -27,7 +32,6 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
27
32
  retryMode: string | import("@smithy/types").Provider<string>;
28
33
  logger: import("@smithy/types").Logger;
29
34
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
- protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
31
35
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
32
36
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
37
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -1,3 +1,4 @@
1
+ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
1
2
  import type { KafkaConnectClientConfig } from "./KafkaConnectClient";
2
3
  /**
3
4
  * @internal
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
14
15
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").KafkaConnectHttpAuthSchemeProvider;
15
16
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
17
  logger: import("@smithy/types").Logger;
17
- protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
18
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
19
+ protocolSettings: {
20
+ [setting: string]: unknown;
21
+ defaultNamespace?: string;
22
+ };
18
23
  serviceId: string;
19
24
  urlParser: import("@smithy/types").UrlParser;
20
25
  utf8Decoder: import("@smithy/types").Decoder;