aws-sdk-kafka 1.108.0 → 1.110.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kafka/client.rb +105 -11
- data/lib/aws-sdk-kafka/client_api.rb +76 -7
- data/lib/aws-sdk-kafka/types.rb +289 -4
- data/lib/aws-sdk-kafka.rb +1 -1
- data/sig/client.rbs +66 -9
- data/sig/types.rbs +76 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99c382c3b0851907523b8187fea62286f1d1f9d9ad504188f5cc0395b91ed58b
|
|
4
|
+
data.tar.gz: 7b3fac45e4f794ac84a78bba071f838a7b658a4130d115b1e63406a891ff2138
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e0a89665f855a50e3fbead9c693b76a73162c2fd7007920d681728eba4180bffe56820543479c9fdfd34b9ddc9b75b3485eaaba2a148ca701230ec14d350fc1
|
|
7
|
+
data.tar.gz: 40107583226d98233946c3052026e6d99d228ce34a3fda65746d2b6bfeafa313fd9b3e2925ac7a1109f0672f0baeb1868060f3f41162d7f672ec21da747243a1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.110.0 (2026-04-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for ZookeeperAccess field to control the Client-Zookeeper connectivity.
|
|
8
|
+
|
|
9
|
+
1.109.0 (2026-04-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Amazon MSK Replicator now supports data migration from external Apache Kafka clusters to Amazon MSK Express brokers. This release adds SaslScram authentication with TLS encryption, enhanced consumer offset synchronization, and customer log forwarding for troubleshooting.
|
|
13
|
+
|
|
4
14
|
1.108.0 (2026-03-18)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.110.0
|
data/lib/aws-sdk-kafka/client.rb
CHANGED
|
@@ -912,6 +912,9 @@ module Aws::Kafka
|
|
|
912
912
|
# @option params [required, Array<Types::KafkaCluster>] :kafka_clusters
|
|
913
913
|
# Kafka Clusters to use in setting up sources / targets for replication.
|
|
914
914
|
#
|
|
915
|
+
# @option params [Types::LogDelivery] :log_delivery
|
|
916
|
+
# Configuration for delivering replicator logs to customer destinations.
|
|
917
|
+
#
|
|
915
918
|
# @option params [required, Array<Types::ReplicationInfo>] :replication_info_list
|
|
916
919
|
# A list of replication configurations, where each configuration targets
|
|
917
920
|
# a given source cluster to target cluster replication flow.
|
|
@@ -939,15 +942,46 @@ module Aws::Kafka
|
|
|
939
942
|
# description: "__stringMax1024",
|
|
940
943
|
# kafka_clusters: [ # required
|
|
941
944
|
# {
|
|
942
|
-
# amazon_msk_cluster: {
|
|
945
|
+
# amazon_msk_cluster: {
|
|
943
946
|
# msk_cluster_arn: "__string", # required
|
|
944
947
|
# },
|
|
945
|
-
#
|
|
948
|
+
# apache_kafka_cluster: {
|
|
949
|
+
# apache_kafka_cluster_id: "__string", # required
|
|
950
|
+
# bootstrap_broker_string: "__string", # required
|
|
951
|
+
# },
|
|
952
|
+
# vpc_config: {
|
|
946
953
|
# security_group_ids: ["__string"],
|
|
947
954
|
# subnet_ids: ["__string"], # required
|
|
948
955
|
# },
|
|
956
|
+
# client_authentication: {
|
|
957
|
+
# sasl_scram: { # required
|
|
958
|
+
# mechanism: "SHA256", # required, accepts SHA256, SHA512
|
|
959
|
+
# secret_arn: "__string", # required
|
|
960
|
+
# },
|
|
961
|
+
# },
|
|
962
|
+
# encryption_in_transit: {
|
|
963
|
+
# encryption_type: "TLS", # required, accepts TLS
|
|
964
|
+
# root_ca_certificate: "__string",
|
|
965
|
+
# },
|
|
949
966
|
# },
|
|
950
967
|
# ],
|
|
968
|
+
# log_delivery: {
|
|
969
|
+
# replicator_log_delivery: {
|
|
970
|
+
# cloud_watch_logs: {
|
|
971
|
+
# enabled: false, # required
|
|
972
|
+
# log_group: "__string",
|
|
973
|
+
# },
|
|
974
|
+
# firehose: {
|
|
975
|
+
# delivery_stream: "__string",
|
|
976
|
+
# enabled: false, # required
|
|
977
|
+
# },
|
|
978
|
+
# s3: {
|
|
979
|
+
# bucket: "__string",
|
|
980
|
+
# enabled: false, # required
|
|
981
|
+
# prefix: "__string",
|
|
982
|
+
# },
|
|
983
|
+
# },
|
|
984
|
+
# },
|
|
951
985
|
# replication_info_list: [ # required
|
|
952
986
|
# {
|
|
953
987
|
# consumer_group_replication: { # required
|
|
@@ -955,10 +989,13 @@ module Aws::Kafka
|
|
|
955
989
|
# consumer_groups_to_replicate: ["__stringMax256"], # required
|
|
956
990
|
# detect_and_copy_new_consumer_groups: false,
|
|
957
991
|
# synchronise_consumer_group_offsets: false,
|
|
992
|
+
# consumer_group_offset_sync_mode: "LEGACY", # accepts LEGACY, ENHANCED
|
|
958
993
|
# },
|
|
959
|
-
# source_kafka_cluster_arn: "__string",
|
|
994
|
+
# source_kafka_cluster_arn: "__string",
|
|
995
|
+
# source_kafka_cluster_id: "__string",
|
|
960
996
|
# target_compression_type: "NONE", # required, accepts NONE, GZIP, SNAPPY, LZ4, ZSTD
|
|
961
|
-
# target_kafka_cluster_arn: "__string",
|
|
997
|
+
# target_kafka_cluster_arn: "__string",
|
|
998
|
+
# target_kafka_cluster_id: "__string",
|
|
962
999
|
# topic_replication: { # required
|
|
963
1000
|
# copy_access_control_lists_for_topics: false,
|
|
964
1001
|
# copy_topic_configurations: false,
|
|
@@ -1498,6 +1535,7 @@ module Aws::Kafka
|
|
|
1498
1535
|
# resp.cluster_operation_info.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
|
1499
1536
|
# resp.cluster_operation_info.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
|
1500
1537
|
# resp.cluster_operation_info.source_cluster_info.connectivity_info.network_type #=> String, one of "IPV4", "DUAL"
|
|
1538
|
+
# resp.cluster_operation_info.source_cluster_info.zookeeper_access.enabled #=> Boolean
|
|
1501
1539
|
# resp.cluster_operation_info.source_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
|
1502
1540
|
# resp.cluster_operation_info.source_cluster_info.broker_count_update_info.created_broker_ids #=> Array
|
|
1503
1541
|
# resp.cluster_operation_info.source_cluster_info.broker_count_update_info.created_broker_ids[0] #=> Float
|
|
@@ -1538,6 +1576,7 @@ module Aws::Kafka
|
|
|
1538
1576
|
# resp.cluster_operation_info.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
|
1539
1577
|
# resp.cluster_operation_info.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
|
1540
1578
|
# resp.cluster_operation_info.target_cluster_info.connectivity_info.network_type #=> String, one of "IPV4", "DUAL"
|
|
1579
|
+
# resp.cluster_operation_info.target_cluster_info.zookeeper_access.enabled #=> Boolean
|
|
1541
1580
|
# resp.cluster_operation_info.target_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
|
1542
1581
|
# resp.cluster_operation_info.target_cluster_info.broker_count_update_info.created_broker_ids #=> Array
|
|
1543
1582
|
# resp.cluster_operation_info.target_cluster_info.broker_count_update_info.created_broker_ids[0] #=> Float
|
|
@@ -1619,6 +1658,7 @@ module Aws::Kafka
|
|
|
1619
1658
|
# resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
|
1620
1659
|
# resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
|
1621
1660
|
# resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.network_type #=> String, one of "IPV4", "DUAL"
|
|
1661
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.zookeeper_access.enabled #=> Boolean
|
|
1622
1662
|
# resp.cluster_operation_info.provisioned.source_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
|
1623
1663
|
# resp.cluster_operation_info.provisioned.source_cluster_info.broker_count_update_info.created_broker_ids #=> Array
|
|
1624
1664
|
# resp.cluster_operation_info.provisioned.source_cluster_info.broker_count_update_info.created_broker_ids[0] #=> Float
|
|
@@ -1659,6 +1699,7 @@ module Aws::Kafka
|
|
|
1659
1699
|
# resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
|
1660
1700
|
# resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
|
1661
1701
|
# resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.network_type #=> String, one of "IPV4", "DUAL"
|
|
1702
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.zookeeper_access.enabled #=> Boolean
|
|
1662
1703
|
# resp.cluster_operation_info.provisioned.target_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
|
1663
1704
|
# resp.cluster_operation_info.provisioned.target_cluster_info.broker_count_update_info.created_broker_ids #=> Array
|
|
1664
1705
|
# resp.cluster_operation_info.provisioned.target_cluster_info.broker_count_update_info.created_broker_ids[0] #=> Float
|
|
@@ -1778,6 +1819,7 @@ module Aws::Kafka
|
|
|
1778
1819
|
# * {Types::DescribeReplicatorResponse#current_version #current_version} => String
|
|
1779
1820
|
# * {Types::DescribeReplicatorResponse#is_replicator_reference #is_replicator_reference} => Boolean
|
|
1780
1821
|
# * {Types::DescribeReplicatorResponse#kafka_clusters #kafka_clusters} => Array<Types::KafkaClusterDescription>
|
|
1822
|
+
# * {Types::DescribeReplicatorResponse#log_delivery #log_delivery} => Types::LogDelivery
|
|
1781
1823
|
# * {Types::DescribeReplicatorResponse#replication_info_list #replication_info_list} => Array<Types::ReplicationInfoDescription>
|
|
1782
1824
|
# * {Types::DescribeReplicatorResponse#replicator_arn #replicator_arn} => String
|
|
1783
1825
|
# * {Types::DescribeReplicatorResponse#replicator_description #replicator_description} => String
|
|
@@ -1801,11 +1843,24 @@ module Aws::Kafka
|
|
|
1801
1843
|
# resp.is_replicator_reference #=> Boolean
|
|
1802
1844
|
# resp.kafka_clusters #=> Array
|
|
1803
1845
|
# resp.kafka_clusters[0].amazon_msk_cluster.msk_cluster_arn #=> String
|
|
1846
|
+
# resp.kafka_clusters[0].apache_kafka_cluster.apache_kafka_cluster_id #=> String
|
|
1847
|
+
# resp.kafka_clusters[0].apache_kafka_cluster.bootstrap_broker_string #=> String
|
|
1804
1848
|
# resp.kafka_clusters[0].kafka_cluster_alias #=> String
|
|
1805
1849
|
# resp.kafka_clusters[0].vpc_config.security_group_ids #=> Array
|
|
1806
1850
|
# resp.kafka_clusters[0].vpc_config.security_group_ids[0] #=> String
|
|
1807
1851
|
# resp.kafka_clusters[0].vpc_config.subnet_ids #=> Array
|
|
1808
1852
|
# resp.kafka_clusters[0].vpc_config.subnet_ids[0] #=> String
|
|
1853
|
+
# resp.kafka_clusters[0].client_authentication.sasl_scram.mechanism #=> String, one of "SHA256", "SHA512"
|
|
1854
|
+
# resp.kafka_clusters[0].client_authentication.sasl_scram.secret_arn #=> String
|
|
1855
|
+
# resp.kafka_clusters[0].encryption_in_transit.encryption_type #=> String, one of "TLS"
|
|
1856
|
+
# resp.kafka_clusters[0].encryption_in_transit.root_ca_certificate #=> String
|
|
1857
|
+
# resp.log_delivery.replicator_log_delivery.cloud_watch_logs.enabled #=> Boolean
|
|
1858
|
+
# resp.log_delivery.replicator_log_delivery.cloud_watch_logs.log_group #=> String
|
|
1859
|
+
# resp.log_delivery.replicator_log_delivery.firehose.delivery_stream #=> String
|
|
1860
|
+
# resp.log_delivery.replicator_log_delivery.firehose.enabled #=> Boolean
|
|
1861
|
+
# resp.log_delivery.replicator_log_delivery.s3.bucket #=> String
|
|
1862
|
+
# resp.log_delivery.replicator_log_delivery.s3.enabled #=> Boolean
|
|
1863
|
+
# resp.log_delivery.replicator_log_delivery.s3.prefix #=> String
|
|
1809
1864
|
# resp.replication_info_list #=> Array
|
|
1810
1865
|
# resp.replication_info_list[0].consumer_group_replication.consumer_groups_to_exclude #=> Array
|
|
1811
1866
|
# resp.replication_info_list[0].consumer_group_replication.consumer_groups_to_exclude[0] #=> String
|
|
@@ -1813,6 +1868,7 @@ module Aws::Kafka
|
|
|
1813
1868
|
# resp.replication_info_list[0].consumer_group_replication.consumer_groups_to_replicate[0] #=> String
|
|
1814
1869
|
# resp.replication_info_list[0].consumer_group_replication.detect_and_copy_new_consumer_groups #=> Boolean
|
|
1815
1870
|
# resp.replication_info_list[0].consumer_group_replication.synchronise_consumer_group_offsets #=> Boolean
|
|
1871
|
+
# resp.replication_info_list[0].consumer_group_replication.consumer_group_offset_sync_mode #=> String, one of "LEGACY", "ENHANCED"
|
|
1816
1872
|
# resp.replication_info_list[0].source_kafka_cluster_alias #=> String
|
|
1817
1873
|
# resp.replication_info_list[0].target_compression_type #=> String, one of "NONE", "GZIP", "SNAPPY", "LZ4", "ZSTD"
|
|
1818
1874
|
# resp.replication_info_list[0].target_kafka_cluster_alias #=> String
|
|
@@ -2176,6 +2232,7 @@ module Aws::Kafka
|
|
|
2176
2232
|
# resp.cluster_operation_info_list[0].source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
|
2177
2233
|
# resp.cluster_operation_info_list[0].source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
|
2178
2234
|
# resp.cluster_operation_info_list[0].source_cluster_info.connectivity_info.network_type #=> String, one of "IPV4", "DUAL"
|
|
2235
|
+
# resp.cluster_operation_info_list[0].source_cluster_info.zookeeper_access.enabled #=> Boolean
|
|
2179
2236
|
# resp.cluster_operation_info_list[0].source_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
|
2180
2237
|
# resp.cluster_operation_info_list[0].source_cluster_info.broker_count_update_info.created_broker_ids #=> Array
|
|
2181
2238
|
# resp.cluster_operation_info_list[0].source_cluster_info.broker_count_update_info.created_broker_ids[0] #=> Float
|
|
@@ -2216,6 +2273,7 @@ module Aws::Kafka
|
|
|
2216
2273
|
# resp.cluster_operation_info_list[0].target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
|
2217
2274
|
# resp.cluster_operation_info_list[0].target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
|
2218
2275
|
# resp.cluster_operation_info_list[0].target_cluster_info.connectivity_info.network_type #=> String, one of "IPV4", "DUAL"
|
|
2276
|
+
# resp.cluster_operation_info_list[0].target_cluster_info.zookeeper_access.enabled #=> Boolean
|
|
2219
2277
|
# resp.cluster_operation_info_list[0].target_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
|
2220
2278
|
# resp.cluster_operation_info_list[0].target_cluster_info.broker_count_update_info.created_broker_ids #=> Array
|
|
2221
2279
|
# resp.cluster_operation_info_list[0].target_cluster_info.broker_count_update_info.created_broker_ids[0] #=> Float
|
|
@@ -2694,6 +2752,8 @@ module Aws::Kafka
|
|
|
2694
2752
|
# resp.replicators[0].is_replicator_reference #=> Boolean
|
|
2695
2753
|
# resp.replicators[0].kafka_clusters_summary #=> Array
|
|
2696
2754
|
# resp.replicators[0].kafka_clusters_summary[0].amazon_msk_cluster.msk_cluster_arn #=> String
|
|
2755
|
+
# resp.replicators[0].kafka_clusters_summary[0].apache_kafka_cluster.apache_kafka_cluster_id #=> String
|
|
2756
|
+
# resp.replicators[0].kafka_clusters_summary[0].apache_kafka_cluster.bootstrap_broker_string #=> String
|
|
2697
2757
|
# resp.replicators[0].kafka_clusters_summary[0].kafka_cluster_alias #=> String
|
|
2698
2758
|
# resp.replicators[0].replication_info_summary_list #=> Array
|
|
2699
2759
|
# resp.replicators[0].replication_info_summary_list[0].source_kafka_cluster_alias #=> String
|
|
@@ -3359,12 +3419,15 @@ module Aws::Kafka
|
|
|
3359
3419
|
#
|
|
3360
3420
|
# @option params [required, String] :cluster_arn
|
|
3361
3421
|
#
|
|
3362
|
-
# @option params [
|
|
3422
|
+
# @option params [Types::ConnectivityInfo] :connectivity_info
|
|
3363
3423
|
# Information about the broker access configuration.
|
|
3364
3424
|
#
|
|
3365
3425
|
# @option params [required, String] :current_version
|
|
3366
3426
|
# The current version of the cluster.
|
|
3367
3427
|
#
|
|
3428
|
+
# @option params [Types::ZookeeperAccess] :zookeeper_access
|
|
3429
|
+
# Access control settings for zookeeper
|
|
3430
|
+
#
|
|
3368
3431
|
# @return [Types::UpdateConnectivityResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3369
3432
|
#
|
|
3370
3433
|
# * {Types::UpdateConnectivityResponse#cluster_arn #cluster_arn} => String
|
|
@@ -3374,7 +3437,7 @@ module Aws::Kafka
|
|
|
3374
3437
|
#
|
|
3375
3438
|
# resp = client.update_connectivity({
|
|
3376
3439
|
# cluster_arn: "__string", # required
|
|
3377
|
-
# connectivity_info: {
|
|
3440
|
+
# connectivity_info: {
|
|
3378
3441
|
# public_access: {
|
|
3379
3442
|
# type: "__string",
|
|
3380
3443
|
# },
|
|
@@ -3396,6 +3459,9 @@ module Aws::Kafka
|
|
|
3396
3459
|
# network_type: "IPV4", # accepts IPV4, DUAL
|
|
3397
3460
|
# },
|
|
3398
3461
|
# current_version: "__string", # required
|
|
3462
|
+
# zookeeper_access: {
|
|
3463
|
+
# enabled: false,
|
|
3464
|
+
# },
|
|
3399
3465
|
# })
|
|
3400
3466
|
#
|
|
3401
3467
|
# @example Response structure
|
|
@@ -3536,14 +3602,23 @@ module Aws::Kafka
|
|
|
3536
3602
|
# @option params [required, String] :current_version
|
|
3537
3603
|
# Current replicator version.
|
|
3538
3604
|
#
|
|
3605
|
+
# @option params [Types::LogDelivery] :log_delivery
|
|
3606
|
+
# Configuration for delivering replicator logs to customer destinations.
|
|
3607
|
+
#
|
|
3539
3608
|
# @option params [required, String] :replicator_arn
|
|
3540
3609
|
#
|
|
3541
|
-
# @option params [
|
|
3610
|
+
# @option params [String] :source_kafka_cluster_arn
|
|
3542
3611
|
# The ARN of the source Kafka cluster.
|
|
3543
3612
|
#
|
|
3544
|
-
# @option params [
|
|
3613
|
+
# @option params [String] :source_kafka_cluster_id
|
|
3614
|
+
# The ID of the source Kafka cluster.
|
|
3615
|
+
#
|
|
3616
|
+
# @option params [String] :target_kafka_cluster_arn
|
|
3545
3617
|
# The ARN of the target Kafka cluster.
|
|
3546
3618
|
#
|
|
3619
|
+
# @option params [String] :target_kafka_cluster_id
|
|
3620
|
+
# The ID of the target Kafka cluster.
|
|
3621
|
+
#
|
|
3547
3622
|
# @option params [Types::TopicReplicationUpdate] :topic_replication
|
|
3548
3623
|
# Updated topic replication information.
|
|
3549
3624
|
#
|
|
@@ -3562,9 +3637,28 @@ module Aws::Kafka
|
|
|
3562
3637
|
# synchronise_consumer_group_offsets: false, # required
|
|
3563
3638
|
# },
|
|
3564
3639
|
# current_version: "__string", # required
|
|
3640
|
+
# log_delivery: {
|
|
3641
|
+
# replicator_log_delivery: {
|
|
3642
|
+
# cloud_watch_logs: {
|
|
3643
|
+
# enabled: false, # required
|
|
3644
|
+
# log_group: "__string",
|
|
3645
|
+
# },
|
|
3646
|
+
# firehose: {
|
|
3647
|
+
# delivery_stream: "__string",
|
|
3648
|
+
# enabled: false, # required
|
|
3649
|
+
# },
|
|
3650
|
+
# s3: {
|
|
3651
|
+
# bucket: "__string",
|
|
3652
|
+
# enabled: false, # required
|
|
3653
|
+
# prefix: "__string",
|
|
3654
|
+
# },
|
|
3655
|
+
# },
|
|
3656
|
+
# },
|
|
3565
3657
|
# replicator_arn: "__string", # required
|
|
3566
|
-
# source_kafka_cluster_arn: "__string",
|
|
3567
|
-
#
|
|
3658
|
+
# source_kafka_cluster_arn: "__string",
|
|
3659
|
+
# source_kafka_cluster_id: "__string",
|
|
3660
|
+
# target_kafka_cluster_arn: "__string",
|
|
3661
|
+
# target_kafka_cluster_id: "__string",
|
|
3568
3662
|
# topic_replication: {
|
|
3569
3663
|
# copy_access_control_lists_for_topics: false, # required
|
|
3570
3664
|
# copy_topic_configurations: false, # required
|
|
@@ -3765,7 +3859,7 @@ module Aws::Kafka
|
|
|
3765
3859
|
tracer: tracer
|
|
3766
3860
|
)
|
|
3767
3861
|
context[:gem_name] = 'aws-sdk-kafka'
|
|
3768
|
-
context[:gem_version] = '1.
|
|
3862
|
+
context[:gem_version] = '1.110.0'
|
|
3769
3863
|
Seahorse::Client::Request.new(handlers, context)
|
|
3770
3864
|
end
|
|
3771
3865
|
|
|
@@ -15,6 +15,7 @@ module Aws::Kafka
|
|
|
15
15
|
include Seahorse::Model
|
|
16
16
|
|
|
17
17
|
AmazonMskCluster = Shapes::StructureShape.new(name: 'AmazonMskCluster')
|
|
18
|
+
ApacheKafkaCluster = Shapes::StructureShape.new(name: 'ApacheKafkaCluster')
|
|
18
19
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
|
19
20
|
BatchAssociateScramSecretRequest = Shapes::StructureShape.new(name: 'BatchAssociateScramSecretRequest')
|
|
20
21
|
BatchAssociateScramSecretResponse = Shapes::StructureShape.new(name: 'BatchAssociateScramSecretResponse')
|
|
@@ -50,6 +51,7 @@ module Aws::Kafka
|
|
|
50
51
|
ConfigurationState = Shapes::StringShape.new(name: 'ConfigurationState')
|
|
51
52
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
52
53
|
ConnectivityInfo = Shapes::StructureShape.new(name: 'ConnectivityInfo')
|
|
54
|
+
ConsumerGroupOffsetSyncMode = Shapes::StringShape.new(name: 'ConsumerGroupOffsetSyncMode')
|
|
53
55
|
ConsumerGroupReplication = Shapes::StructureShape.new(name: 'ConsumerGroupReplication')
|
|
54
56
|
ConsumerGroupReplicationUpdate = Shapes::StructureShape.new(name: 'ConsumerGroupReplicationUpdate')
|
|
55
57
|
ControllerMovedException = Shapes::StructureShape.new(name: 'ControllerMovedException')
|
|
@@ -120,8 +122,13 @@ module Aws::Kafka
|
|
|
120
122
|
JmxExporter = Shapes::StructureShape.new(name: 'JmxExporter')
|
|
121
123
|
JmxExporterInfo = Shapes::StructureShape.new(name: 'JmxExporterInfo')
|
|
122
124
|
KafkaCluster = Shapes::StructureShape.new(name: 'KafkaCluster')
|
|
125
|
+
KafkaClusterClientAuthentication = Shapes::StructureShape.new(name: 'KafkaClusterClientAuthentication')
|
|
123
126
|
KafkaClusterClientVpcConfig = Shapes::StructureShape.new(name: 'KafkaClusterClientVpcConfig')
|
|
124
127
|
KafkaClusterDescription = Shapes::StructureShape.new(name: 'KafkaClusterDescription')
|
|
128
|
+
KafkaClusterEncryptionInTransit = Shapes::StructureShape.new(name: 'KafkaClusterEncryptionInTransit')
|
|
129
|
+
KafkaClusterEncryptionInTransitType = Shapes::StringShape.new(name: 'KafkaClusterEncryptionInTransitType')
|
|
130
|
+
KafkaClusterSaslScramAuthentication = Shapes::StructureShape.new(name: 'KafkaClusterSaslScramAuthentication')
|
|
131
|
+
KafkaClusterSaslScramMechanism = Shapes::StringShape.new(name: 'KafkaClusterSaslScramMechanism')
|
|
125
132
|
KafkaClusterSummary = Shapes::StructureShape.new(name: 'KafkaClusterSummary')
|
|
126
133
|
KafkaRequestException = Shapes::StructureShape.new(name: 'KafkaRequestException')
|
|
127
134
|
KafkaTimeoutException = Shapes::StructureShape.new(name: 'KafkaTimeoutException')
|
|
@@ -155,6 +162,7 @@ module Aws::Kafka
|
|
|
155
162
|
ListTopicsResponse = Shapes::StructureShape.new(name: 'ListTopicsResponse')
|
|
156
163
|
ListVpcConnectionsRequest = Shapes::StructureShape.new(name: 'ListVpcConnectionsRequest')
|
|
157
164
|
ListVpcConnectionsResponse = Shapes::StructureShape.new(name: 'ListVpcConnectionsResponse')
|
|
165
|
+
LogDelivery = Shapes::StructureShape.new(name: 'LogDelivery')
|
|
158
166
|
LoggingInfo = Shapes::StructureShape.new(name: 'LoggingInfo')
|
|
159
167
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
160
168
|
MutableClusterInfo = Shapes::StructureShape.new(name: 'MutableClusterInfo')
|
|
@@ -190,6 +198,10 @@ module Aws::Kafka
|
|
|
190
198
|
ReplicationStateInfo = Shapes::StructureShape.new(name: 'ReplicationStateInfo')
|
|
191
199
|
ReplicationTopicNameConfiguration = Shapes::StructureShape.new(name: 'ReplicationTopicNameConfiguration')
|
|
192
200
|
ReplicationTopicNameConfigurationType = Shapes::StringShape.new(name: 'ReplicationTopicNameConfigurationType')
|
|
201
|
+
ReplicatorCloudWatchLogs = Shapes::StructureShape.new(name: 'ReplicatorCloudWatchLogs')
|
|
202
|
+
ReplicatorFirehose = Shapes::StructureShape.new(name: 'ReplicatorFirehose')
|
|
203
|
+
ReplicatorLogDelivery = Shapes::StructureShape.new(name: 'ReplicatorLogDelivery')
|
|
204
|
+
ReplicatorS3 = Shapes::StructureShape.new(name: 'ReplicatorS3')
|
|
193
205
|
ReplicatorState = Shapes::StringShape.new(name: 'ReplicatorState')
|
|
194
206
|
ReplicatorSummary = Shapes::StructureShape.new(name: 'ReplicatorSummary')
|
|
195
207
|
S3 = Shapes::StructureShape.new(name: 'S3')
|
|
@@ -258,6 +270,7 @@ module Aws::Kafka
|
|
|
258
270
|
VpcConnectivitySasl = Shapes::StructureShape.new(name: 'VpcConnectivitySasl')
|
|
259
271
|
VpcConnectivityScram = Shapes::StructureShape.new(name: 'VpcConnectivityScram')
|
|
260
272
|
VpcConnectivityTls = Shapes::StructureShape.new(name: 'VpcConnectivityTls')
|
|
273
|
+
ZookeeperAccess = Shapes::StructureShape.new(name: 'ZookeeperAccess')
|
|
261
274
|
ZookeeperNodeInfo = Shapes::StructureShape.new(name: 'ZookeeperNodeInfo')
|
|
262
275
|
__blob = Shapes::BlobShape.new(name: '__blob')
|
|
263
276
|
__boolean = Shapes::BooleanShape.new(name: '__boolean')
|
|
@@ -311,6 +324,10 @@ module Aws::Kafka
|
|
|
311
324
|
AmazonMskCluster.add_member(:msk_cluster_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "mskClusterArn"))
|
|
312
325
|
AmazonMskCluster.struct_class = Types::AmazonMskCluster
|
|
313
326
|
|
|
327
|
+
ApacheKafkaCluster.add_member(:apache_kafka_cluster_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "apacheKafkaClusterId"))
|
|
328
|
+
ApacheKafkaCluster.add_member(:bootstrap_broker_string, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "bootstrapBrokerString"))
|
|
329
|
+
ApacheKafkaCluster.struct_class = Types::ApacheKafkaCluster
|
|
330
|
+
|
|
314
331
|
BadRequestException.add_member(:invalid_parameter, Shapes::ShapeRef.new(shape: __string, location_name: "invalidParameter"))
|
|
315
332
|
BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
|
316
333
|
BadRequestException.struct_class = Types::BadRequestException
|
|
@@ -510,6 +527,7 @@ module Aws::Kafka
|
|
|
510
527
|
ConsumerGroupReplication.add_member(:consumer_groups_to_replicate, Shapes::ShapeRef.new(shape: __listOf__stringMax256, required: true, location_name: "consumerGroupsToReplicate"))
|
|
511
528
|
ConsumerGroupReplication.add_member(:detect_and_copy_new_consumer_groups, Shapes::ShapeRef.new(shape: __boolean, location_name: "detectAndCopyNewConsumerGroups"))
|
|
512
529
|
ConsumerGroupReplication.add_member(:synchronise_consumer_group_offsets, Shapes::ShapeRef.new(shape: __boolean, location_name: "synchroniseConsumerGroupOffsets"))
|
|
530
|
+
ConsumerGroupReplication.add_member(:consumer_group_offset_sync_mode, Shapes::ShapeRef.new(shape: ConsumerGroupOffsetSyncMode, location_name: "consumerGroupOffsetSyncMode"))
|
|
513
531
|
ConsumerGroupReplication.struct_class = Types::ConsumerGroupReplication
|
|
514
532
|
|
|
515
533
|
ConsumerGroupReplicationUpdate.add_member(:consumer_groups_to_exclude, Shapes::ShapeRef.new(shape: __listOf__stringMax256, required: true, location_name: "consumerGroupsToExclude"))
|
|
@@ -572,6 +590,7 @@ module Aws::Kafka
|
|
|
572
590
|
|
|
573
591
|
CreateReplicatorRequest.add_member(:description, Shapes::ShapeRef.new(shape: __stringMax1024, location_name: "description"))
|
|
574
592
|
CreateReplicatorRequest.add_member(:kafka_clusters, Shapes::ShapeRef.new(shape: __listOfKafkaCluster, required: true, location_name: "kafkaClusters"))
|
|
593
|
+
CreateReplicatorRequest.add_member(:log_delivery, Shapes::ShapeRef.new(shape: LogDelivery, location_name: "logDelivery"))
|
|
575
594
|
CreateReplicatorRequest.add_member(:replication_info_list, Shapes::ShapeRef.new(shape: __listOfReplicationInfo, required: true, location_name: "replicationInfoList"))
|
|
576
595
|
CreateReplicatorRequest.add_member(:replicator_name, Shapes::ShapeRef.new(shape: __stringMin1Max128Pattern09AZaZ09AZaZ0, required: true, location_name: "replicatorName"))
|
|
577
596
|
CreateReplicatorRequest.add_member(:service_execution_role_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "serviceExecutionRoleArn"))
|
|
@@ -711,6 +730,7 @@ module Aws::Kafka
|
|
|
711
730
|
DescribeReplicatorResponse.add_member(:current_version, Shapes::ShapeRef.new(shape: __string, location_name: "currentVersion"))
|
|
712
731
|
DescribeReplicatorResponse.add_member(:is_replicator_reference, Shapes::ShapeRef.new(shape: __boolean, location_name: "isReplicatorReference"))
|
|
713
732
|
DescribeReplicatorResponse.add_member(:kafka_clusters, Shapes::ShapeRef.new(shape: __listOfKafkaClusterDescription, location_name: "kafkaClusters"))
|
|
733
|
+
DescribeReplicatorResponse.add_member(:log_delivery, Shapes::ShapeRef.new(shape: LogDelivery, location_name: "logDelivery"))
|
|
714
734
|
DescribeReplicatorResponse.add_member(:replication_info_list, Shapes::ShapeRef.new(shape: __listOfReplicationInfoDescription, location_name: "replicationInfoList"))
|
|
715
735
|
DescribeReplicatorResponse.add_member(:replicator_arn, Shapes::ShapeRef.new(shape: __string, location_name: "replicatorArn"))
|
|
716
736
|
DescribeReplicatorResponse.add_member(:replicator_description, Shapes::ShapeRef.new(shape: __string, location_name: "replicatorDescription"))
|
|
@@ -838,20 +858,38 @@ module Aws::Kafka
|
|
|
838
858
|
JmxExporterInfo.add_member(:enabled_in_broker, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "enabledInBroker"))
|
|
839
859
|
JmxExporterInfo.struct_class = Types::JmxExporterInfo
|
|
840
860
|
|
|
841
|
-
KafkaCluster.add_member(:amazon_msk_cluster, Shapes::ShapeRef.new(shape: AmazonMskCluster,
|
|
842
|
-
KafkaCluster.add_member(:
|
|
861
|
+
KafkaCluster.add_member(:amazon_msk_cluster, Shapes::ShapeRef.new(shape: AmazonMskCluster, location_name: "amazonMskCluster"))
|
|
862
|
+
KafkaCluster.add_member(:apache_kafka_cluster, Shapes::ShapeRef.new(shape: ApacheKafkaCluster, location_name: "apacheKafkaCluster"))
|
|
863
|
+
KafkaCluster.add_member(:vpc_config, Shapes::ShapeRef.new(shape: KafkaClusterClientVpcConfig, location_name: "vpcConfig"))
|
|
864
|
+
KafkaCluster.add_member(:client_authentication, Shapes::ShapeRef.new(shape: KafkaClusterClientAuthentication, location_name: "clientAuthentication"))
|
|
865
|
+
KafkaCluster.add_member(:encryption_in_transit, Shapes::ShapeRef.new(shape: KafkaClusterEncryptionInTransit, location_name: "encryptionInTransit"))
|
|
843
866
|
KafkaCluster.struct_class = Types::KafkaCluster
|
|
844
867
|
|
|
868
|
+
KafkaClusterClientAuthentication.add_member(:sasl_scram, Shapes::ShapeRef.new(shape: KafkaClusterSaslScramAuthentication, required: true, location_name: "saslScram"))
|
|
869
|
+
KafkaClusterClientAuthentication.struct_class = Types::KafkaClusterClientAuthentication
|
|
870
|
+
|
|
845
871
|
KafkaClusterClientVpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroupIds"))
|
|
846
872
|
KafkaClusterClientVpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "subnetIds"))
|
|
847
873
|
KafkaClusterClientVpcConfig.struct_class = Types::KafkaClusterClientVpcConfig
|
|
848
874
|
|
|
849
875
|
KafkaClusterDescription.add_member(:amazon_msk_cluster, Shapes::ShapeRef.new(shape: AmazonMskCluster, location_name: "amazonMskCluster"))
|
|
876
|
+
KafkaClusterDescription.add_member(:apache_kafka_cluster, Shapes::ShapeRef.new(shape: ApacheKafkaCluster, location_name: "apacheKafkaCluster"))
|
|
850
877
|
KafkaClusterDescription.add_member(:kafka_cluster_alias, Shapes::ShapeRef.new(shape: __string, location_name: "kafkaClusterAlias"))
|
|
851
878
|
KafkaClusterDescription.add_member(:vpc_config, Shapes::ShapeRef.new(shape: KafkaClusterClientVpcConfig, location_name: "vpcConfig"))
|
|
879
|
+
KafkaClusterDescription.add_member(:client_authentication, Shapes::ShapeRef.new(shape: KafkaClusterClientAuthentication, location_name: "clientAuthentication"))
|
|
880
|
+
KafkaClusterDescription.add_member(:encryption_in_transit, Shapes::ShapeRef.new(shape: KafkaClusterEncryptionInTransit, location_name: "encryptionInTransit"))
|
|
852
881
|
KafkaClusterDescription.struct_class = Types::KafkaClusterDescription
|
|
853
882
|
|
|
883
|
+
KafkaClusterEncryptionInTransit.add_member(:encryption_type, Shapes::ShapeRef.new(shape: KafkaClusterEncryptionInTransitType, required: true, location_name: "encryptionType"))
|
|
884
|
+
KafkaClusterEncryptionInTransit.add_member(:root_ca_certificate, Shapes::ShapeRef.new(shape: __string, location_name: "rootCaCertificate"))
|
|
885
|
+
KafkaClusterEncryptionInTransit.struct_class = Types::KafkaClusterEncryptionInTransit
|
|
886
|
+
|
|
887
|
+
KafkaClusterSaslScramAuthentication.add_member(:mechanism, Shapes::ShapeRef.new(shape: KafkaClusterSaslScramMechanism, required: true, location_name: "mechanism"))
|
|
888
|
+
KafkaClusterSaslScramAuthentication.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "secretArn"))
|
|
889
|
+
KafkaClusterSaslScramAuthentication.struct_class = Types::KafkaClusterSaslScramAuthentication
|
|
890
|
+
|
|
854
891
|
KafkaClusterSummary.add_member(:amazon_msk_cluster, Shapes::ShapeRef.new(shape: AmazonMskCluster, location_name: "amazonMskCluster"))
|
|
892
|
+
KafkaClusterSummary.add_member(:apache_kafka_cluster, Shapes::ShapeRef.new(shape: ApacheKafkaCluster, location_name: "apacheKafkaCluster"))
|
|
855
893
|
KafkaClusterSummary.add_member(:kafka_cluster_alias, Shapes::ShapeRef.new(shape: __string, location_name: "kafkaClusterAlias"))
|
|
856
894
|
KafkaClusterSummary.struct_class = Types::KafkaClusterSummary
|
|
857
895
|
|
|
@@ -989,6 +1027,9 @@ module Aws::Kafka
|
|
|
989
1027
|
ListVpcConnectionsResponse.add_member(:vpc_connections, Shapes::ShapeRef.new(shape: __listOfVpcConnection, location_name: "vpcConnections"))
|
|
990
1028
|
ListVpcConnectionsResponse.struct_class = Types::ListVpcConnectionsResponse
|
|
991
1029
|
|
|
1030
|
+
LogDelivery.add_member(:replicator_log_delivery, Shapes::ShapeRef.new(shape: ReplicatorLogDelivery, location_name: "replicatorLogDelivery"))
|
|
1031
|
+
LogDelivery.struct_class = Types::LogDelivery
|
|
1032
|
+
|
|
992
1033
|
LoggingInfo.add_member(:broker_logs, Shapes::ShapeRef.new(shape: BrokerLogs, required: true, location_name: "brokerLogs"))
|
|
993
1034
|
LoggingInfo.struct_class = Types::LoggingInfo
|
|
994
1035
|
|
|
@@ -1003,6 +1044,7 @@ module Aws::Kafka
|
|
|
1003
1044
|
MutableClusterInfo.add_member(:client_authentication, Shapes::ShapeRef.new(shape: ClientAuthentication, location_name: "clientAuthentication"))
|
|
1004
1045
|
MutableClusterInfo.add_member(:encryption_info, Shapes::ShapeRef.new(shape: EncryptionInfo, location_name: "encryptionInfo"))
|
|
1005
1046
|
MutableClusterInfo.add_member(:connectivity_info, Shapes::ShapeRef.new(shape: ConnectivityInfo, location_name: "connectivityInfo"))
|
|
1047
|
+
MutableClusterInfo.add_member(:zookeeper_access, Shapes::ShapeRef.new(shape: ZookeeperAccess, location_name: "zookeeperAccess"))
|
|
1006
1048
|
MutableClusterInfo.add_member(:storage_mode, Shapes::ShapeRef.new(shape: StorageMode, location_name: "storageMode"))
|
|
1007
1049
|
MutableClusterInfo.add_member(:broker_count_update_info, Shapes::ShapeRef.new(shape: BrokerCountUpdateInfo, location_name: "brokerCountUpdateInfo"))
|
|
1008
1050
|
MutableClusterInfo.add_member(:rebalancing, Shapes::ShapeRef.new(shape: Rebalancing, location_name: "rebalancing"))
|
|
@@ -1110,9 +1152,11 @@ module Aws::Kafka
|
|
|
1110
1152
|
RejectClientVpcConnectionResponse.struct_class = Types::RejectClientVpcConnectionResponse
|
|
1111
1153
|
|
|
1112
1154
|
ReplicationInfo.add_member(:consumer_group_replication, Shapes::ShapeRef.new(shape: ConsumerGroupReplication, required: true, location_name: "consumerGroupReplication"))
|
|
1113
|
-
ReplicationInfo.add_member(:source_kafka_cluster_arn, Shapes::ShapeRef.new(shape: __string,
|
|
1155
|
+
ReplicationInfo.add_member(:source_kafka_cluster_arn, Shapes::ShapeRef.new(shape: __string, location_name: "sourceKafkaClusterArn"))
|
|
1156
|
+
ReplicationInfo.add_member(:source_kafka_cluster_id, Shapes::ShapeRef.new(shape: __string, location_name: "sourceKafkaClusterId"))
|
|
1114
1157
|
ReplicationInfo.add_member(:target_compression_type, Shapes::ShapeRef.new(shape: TargetCompressionType, required: true, location_name: "targetCompressionType"))
|
|
1115
|
-
ReplicationInfo.add_member(:target_kafka_cluster_arn, Shapes::ShapeRef.new(shape: __string,
|
|
1158
|
+
ReplicationInfo.add_member(:target_kafka_cluster_arn, Shapes::ShapeRef.new(shape: __string, location_name: "targetKafkaClusterArn"))
|
|
1159
|
+
ReplicationInfo.add_member(:target_kafka_cluster_id, Shapes::ShapeRef.new(shape: __string, location_name: "targetKafkaClusterId"))
|
|
1116
1160
|
ReplicationInfo.add_member(:topic_replication, Shapes::ShapeRef.new(shape: TopicReplication, required: true, location_name: "topicReplication"))
|
|
1117
1161
|
ReplicationInfo.struct_class = Types::ReplicationInfo
|
|
1118
1162
|
|
|
@@ -1137,6 +1181,24 @@ module Aws::Kafka
|
|
|
1137
1181
|
ReplicationTopicNameConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: ReplicationTopicNameConfigurationType, location_name: "type"))
|
|
1138
1182
|
ReplicationTopicNameConfiguration.struct_class = Types::ReplicationTopicNameConfiguration
|
|
1139
1183
|
|
|
1184
|
+
ReplicatorCloudWatchLogs.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "enabled"))
|
|
1185
|
+
ReplicatorCloudWatchLogs.add_member(:log_group, Shapes::ShapeRef.new(shape: __string, location_name: "logGroup"))
|
|
1186
|
+
ReplicatorCloudWatchLogs.struct_class = Types::ReplicatorCloudWatchLogs
|
|
1187
|
+
|
|
1188
|
+
ReplicatorFirehose.add_member(:delivery_stream, Shapes::ShapeRef.new(shape: __string, location_name: "deliveryStream"))
|
|
1189
|
+
ReplicatorFirehose.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "enabled"))
|
|
1190
|
+
ReplicatorFirehose.struct_class = Types::ReplicatorFirehose
|
|
1191
|
+
|
|
1192
|
+
ReplicatorLogDelivery.add_member(:cloud_watch_logs, Shapes::ShapeRef.new(shape: ReplicatorCloudWatchLogs, location_name: "cloudWatchLogs"))
|
|
1193
|
+
ReplicatorLogDelivery.add_member(:firehose, Shapes::ShapeRef.new(shape: ReplicatorFirehose, location_name: "firehose"))
|
|
1194
|
+
ReplicatorLogDelivery.add_member(:s3, Shapes::ShapeRef.new(shape: ReplicatorS3, location_name: "s3"))
|
|
1195
|
+
ReplicatorLogDelivery.struct_class = Types::ReplicatorLogDelivery
|
|
1196
|
+
|
|
1197
|
+
ReplicatorS3.add_member(:bucket, Shapes::ShapeRef.new(shape: __string, location_name: "bucket"))
|
|
1198
|
+
ReplicatorS3.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "enabled"))
|
|
1199
|
+
ReplicatorS3.add_member(:prefix, Shapes::ShapeRef.new(shape: __string, location_name: "prefix"))
|
|
1200
|
+
ReplicatorS3.struct_class = Types::ReplicatorS3
|
|
1201
|
+
|
|
1140
1202
|
ReplicatorSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "creationTime"))
|
|
1141
1203
|
ReplicatorSummary.add_member(:current_version, Shapes::ShapeRef.new(shape: __string, location_name: "currentVersion"))
|
|
1142
1204
|
ReplicatorSummary.add_member(:is_replicator_reference, Shapes::ShapeRef.new(shape: __boolean, location_name: "isReplicatorReference"))
|
|
@@ -1310,8 +1372,9 @@ module Aws::Kafka
|
|
|
1310
1372
|
UpdateConfigurationResponse.struct_class = Types::UpdateConfigurationResponse
|
|
1311
1373
|
|
|
1312
1374
|
UpdateConnectivityRequest.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "clusterArn"))
|
|
1313
|
-
UpdateConnectivityRequest.add_member(:connectivity_info, Shapes::ShapeRef.new(shape: ConnectivityInfo,
|
|
1375
|
+
UpdateConnectivityRequest.add_member(:connectivity_info, Shapes::ShapeRef.new(shape: ConnectivityInfo, location_name: "connectivityInfo"))
|
|
1314
1376
|
UpdateConnectivityRequest.add_member(:current_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "currentVersion"))
|
|
1377
|
+
UpdateConnectivityRequest.add_member(:zookeeper_access, Shapes::ShapeRef.new(shape: ZookeeperAccess, location_name: "zookeeperAccess"))
|
|
1315
1378
|
UpdateConnectivityRequest.struct_class = Types::UpdateConnectivityRequest
|
|
1316
1379
|
|
|
1317
1380
|
UpdateConnectivityResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: __string, location_name: "clusterArn"))
|
|
@@ -1340,9 +1403,12 @@ module Aws::Kafka
|
|
|
1340
1403
|
|
|
1341
1404
|
UpdateReplicationInfoRequest.add_member(:consumer_group_replication, Shapes::ShapeRef.new(shape: ConsumerGroupReplicationUpdate, location_name: "consumerGroupReplication"))
|
|
1342
1405
|
UpdateReplicationInfoRequest.add_member(:current_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "currentVersion"))
|
|
1406
|
+
UpdateReplicationInfoRequest.add_member(:log_delivery, Shapes::ShapeRef.new(shape: LogDelivery, location_name: "logDelivery"))
|
|
1343
1407
|
UpdateReplicationInfoRequest.add_member(:replicator_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "replicatorArn"))
|
|
1344
|
-
UpdateReplicationInfoRequest.add_member(:source_kafka_cluster_arn, Shapes::ShapeRef.new(shape: __string,
|
|
1345
|
-
UpdateReplicationInfoRequest.add_member(:
|
|
1408
|
+
UpdateReplicationInfoRequest.add_member(:source_kafka_cluster_arn, Shapes::ShapeRef.new(shape: __string, location_name: "sourceKafkaClusterArn"))
|
|
1409
|
+
UpdateReplicationInfoRequest.add_member(:source_kafka_cluster_id, Shapes::ShapeRef.new(shape: __string, location_name: "sourceKafkaClusterId"))
|
|
1410
|
+
UpdateReplicationInfoRequest.add_member(:target_kafka_cluster_arn, Shapes::ShapeRef.new(shape: __string, location_name: "targetKafkaClusterArn"))
|
|
1411
|
+
UpdateReplicationInfoRequest.add_member(:target_kafka_cluster_id, Shapes::ShapeRef.new(shape: __string, location_name: "targetKafkaClusterId"))
|
|
1346
1412
|
UpdateReplicationInfoRequest.add_member(:topic_replication, Shapes::ShapeRef.new(shape: TopicReplicationUpdate, location_name: "topicReplication"))
|
|
1347
1413
|
UpdateReplicationInfoRequest.struct_class = Types::UpdateReplicationInfoRequest
|
|
1348
1414
|
|
|
@@ -1430,6 +1496,9 @@ module Aws::Kafka
|
|
|
1430
1496
|
VpcConnectivityTls.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "enabled"))
|
|
1431
1497
|
VpcConnectivityTls.struct_class = Types::VpcConnectivityTls
|
|
1432
1498
|
|
|
1499
|
+
ZookeeperAccess.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "enabled"))
|
|
1500
|
+
ZookeeperAccess.struct_class = Types::ZookeeperAccess
|
|
1501
|
+
|
|
1433
1502
|
ZookeeperNodeInfo.add_member(:attached_eni_id, Shapes::ShapeRef.new(shape: __string, location_name: "attachedENIId"))
|
|
1434
1503
|
ZookeeperNodeInfo.add_member(:client_vpc_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "clientVpcIpAddress"))
|
|
1435
1504
|
ZookeeperNodeInfo.add_member(:endpoints, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "endpoints"))
|
data/lib/aws-sdk-kafka/types.rb
CHANGED
|
@@ -24,6 +24,25 @@ module Aws::Kafka
|
|
|
24
24
|
include Aws::Structure
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
+
# Details of an Apache Kafka Cluster.
|
|
28
|
+
#
|
|
29
|
+
# @!attribute [rw] apache_kafka_cluster_id
|
|
30
|
+
# The ID of the Apache Kafka cluster.
|
|
31
|
+
# @return [String]
|
|
32
|
+
#
|
|
33
|
+
# @!attribute [rw] bootstrap_broker_string
|
|
34
|
+
# The bootstrap broker string of the Apache Kafka cluster.
|
|
35
|
+
# @return [String]
|
|
36
|
+
#
|
|
37
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ApacheKafkaCluster AWS API Documentation
|
|
38
|
+
#
|
|
39
|
+
class ApacheKafkaCluster < Struct.new(
|
|
40
|
+
:apache_kafka_cluster_id,
|
|
41
|
+
:bootstrap_broker_string)
|
|
42
|
+
SENSITIVE = []
|
|
43
|
+
include Aws::Structure
|
|
44
|
+
end
|
|
45
|
+
|
|
27
46
|
# Request body for BatchAssociateScramSecret.
|
|
28
47
|
#
|
|
29
48
|
# @!attribute [rw] cluster_arn
|
|
@@ -955,13 +974,22 @@ module Aws::Kafka
|
|
|
955
974
|
# \_\_consumer\_offsets.
|
|
956
975
|
# @return [Boolean]
|
|
957
976
|
#
|
|
977
|
+
# @!attribute [rw] consumer_group_offset_sync_mode
|
|
978
|
+
# The consumer group offset synchronization mode. With LEGACY, offsets
|
|
979
|
+
# are synchronized when producers write to the source cluster. With
|
|
980
|
+
# ENHANCED, consumer offsets are synchronized regardless of producer
|
|
981
|
+
# location. ENHANCED requires a corresponding replicator that
|
|
982
|
+
# replicates data from the target cluster to the source cluster.
|
|
983
|
+
# @return [String]
|
|
984
|
+
#
|
|
958
985
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ConsumerGroupReplication AWS API Documentation
|
|
959
986
|
#
|
|
960
987
|
class ConsumerGroupReplication < Struct.new(
|
|
961
988
|
:consumer_groups_to_exclude,
|
|
962
989
|
:consumer_groups_to_replicate,
|
|
963
990
|
:detect_and_copy_new_consumer_groups,
|
|
964
|
-
:synchronise_consumer_group_offsets
|
|
991
|
+
:synchronise_consumer_group_offsets,
|
|
992
|
+
:consumer_group_offset_sync_mode)
|
|
965
993
|
SENSITIVE = []
|
|
966
994
|
include Aws::Structure
|
|
967
995
|
end
|
|
@@ -1181,6 +1209,11 @@ module Aws::Kafka
|
|
|
1181
1209
|
# replication.
|
|
1182
1210
|
# @return [Array<Types::KafkaCluster>]
|
|
1183
1211
|
#
|
|
1212
|
+
# @!attribute [rw] log_delivery
|
|
1213
|
+
# Configuration for delivering replicator logs to customer
|
|
1214
|
+
# destinations.
|
|
1215
|
+
# @return [Types::LogDelivery]
|
|
1216
|
+
#
|
|
1184
1217
|
# @!attribute [rw] replication_info_list
|
|
1185
1218
|
# A list of replication configurations, where each configuration
|
|
1186
1219
|
# targets a given source cluster to target cluster replication flow.
|
|
@@ -1205,6 +1238,7 @@ module Aws::Kafka
|
|
|
1205
1238
|
class CreateReplicatorRequest < Struct.new(
|
|
1206
1239
|
:description,
|
|
1207
1240
|
:kafka_clusters,
|
|
1241
|
+
:log_delivery,
|
|
1208
1242
|
:replication_info_list,
|
|
1209
1243
|
:replicator_name,
|
|
1210
1244
|
:service_execution_role_arn,
|
|
@@ -1876,6 +1910,10 @@ module Aws::Kafka
|
|
|
1876
1910
|
# Kafka Clusters used in setting up sources / targets for replication.
|
|
1877
1911
|
# @return [Array<Types::KafkaClusterDescription>]
|
|
1878
1912
|
#
|
|
1913
|
+
# @!attribute [rw] log_delivery
|
|
1914
|
+
# Configuration for log delivery for the replicator.
|
|
1915
|
+
# @return [Types::LogDelivery]
|
|
1916
|
+
#
|
|
1879
1917
|
# @!attribute [rw] replication_info_list
|
|
1880
1918
|
# A list of replication configurations, where each configuration
|
|
1881
1919
|
# targets a given source cluster to target cluster replication flow.
|
|
@@ -1923,6 +1961,7 @@ module Aws::Kafka
|
|
|
1923
1961
|
:current_version,
|
|
1924
1962
|
:is_replicator_reference,
|
|
1925
1963
|
:kafka_clusters,
|
|
1964
|
+
:log_delivery,
|
|
1926
1965
|
:replication_info_list,
|
|
1927
1966
|
:replicator_arn,
|
|
1928
1967
|
:replicator_description,
|
|
@@ -2371,16 +2410,32 @@ module Aws::Kafka
|
|
|
2371
2410
|
# Details of an Amazon MSK Cluster.
|
|
2372
2411
|
# @return [Types::AmazonMskCluster]
|
|
2373
2412
|
#
|
|
2413
|
+
# @!attribute [rw] apache_kafka_cluster
|
|
2414
|
+
# Details of an Apache Kafka Cluster.
|
|
2415
|
+
# @return [Types::ApacheKafkaCluster]
|
|
2416
|
+
#
|
|
2374
2417
|
# @!attribute [rw] vpc_config
|
|
2375
2418
|
# Details of an Amazon VPC which has network connectivity to the
|
|
2376
2419
|
# Apache Kafka cluster.
|
|
2377
2420
|
# @return [Types::KafkaClusterClientVpcConfig]
|
|
2378
2421
|
#
|
|
2422
|
+
# @!attribute [rw] client_authentication
|
|
2423
|
+
# Details of the client authentication used by the Apache Kafka
|
|
2424
|
+
# cluster.
|
|
2425
|
+
# @return [Types::KafkaClusterClientAuthentication]
|
|
2426
|
+
#
|
|
2427
|
+
# @!attribute [rw] encryption_in_transit
|
|
2428
|
+
# Details of encryption in transit to the Apache Kafka cluster.
|
|
2429
|
+
# @return [Types::KafkaClusterEncryptionInTransit]
|
|
2430
|
+
#
|
|
2379
2431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaCluster AWS API Documentation
|
|
2380
2432
|
#
|
|
2381
2433
|
class KafkaCluster < Struct.new(
|
|
2382
2434
|
:amazon_msk_cluster,
|
|
2383
|
-
:
|
|
2435
|
+
:apache_kafka_cluster,
|
|
2436
|
+
:vpc_config,
|
|
2437
|
+
:client_authentication,
|
|
2438
|
+
:encryption_in_transit)
|
|
2384
2439
|
SENSITIVE = []
|
|
2385
2440
|
include Aws::Structure
|
|
2386
2441
|
end
|
|
@@ -2402,6 +2457,58 @@ module Aws::Kafka
|
|
|
2402
2457
|
include Aws::Structure
|
|
2403
2458
|
end
|
|
2404
2459
|
|
|
2460
|
+
# Details of the client authentication used by the Apache Kafka cluster.
|
|
2461
|
+
#
|
|
2462
|
+
# @!attribute [rw] sasl_scram
|
|
2463
|
+
# Details for SASL/SCRAM client authentication.
|
|
2464
|
+
# @return [Types::KafkaClusterSaslScramAuthentication]
|
|
2465
|
+
#
|
|
2466
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterClientAuthentication AWS API Documentation
|
|
2467
|
+
#
|
|
2468
|
+
class KafkaClusterClientAuthentication < Struct.new(
|
|
2469
|
+
:sasl_scram)
|
|
2470
|
+
SENSITIVE = []
|
|
2471
|
+
include Aws::Structure
|
|
2472
|
+
end
|
|
2473
|
+
|
|
2474
|
+
# Details for SASL/SCRAM client authentication.
|
|
2475
|
+
#
|
|
2476
|
+
# @!attribute [rw] mechanism
|
|
2477
|
+
# The SASL/SCRAM authentication mechanism.
|
|
2478
|
+
# @return [String]
|
|
2479
|
+
#
|
|
2480
|
+
# @!attribute [rw] secret_arn
|
|
2481
|
+
# The Amazon Resource Name (ARN) of the Secrets Manager secret.
|
|
2482
|
+
# @return [String]
|
|
2483
|
+
#
|
|
2484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterSaslScramAuthentication AWS API Documentation
|
|
2485
|
+
#
|
|
2486
|
+
class KafkaClusterSaslScramAuthentication < Struct.new(
|
|
2487
|
+
:mechanism,
|
|
2488
|
+
:secret_arn)
|
|
2489
|
+
SENSITIVE = []
|
|
2490
|
+
include Aws::Structure
|
|
2491
|
+
end
|
|
2492
|
+
|
|
2493
|
+
# Details of encryption in transit to the Apache Kafka cluster.
|
|
2494
|
+
#
|
|
2495
|
+
# @!attribute [rw] encryption_type
|
|
2496
|
+
# The type of encryption in transit to the Apache Kafka cluster.
|
|
2497
|
+
# @return [String]
|
|
2498
|
+
#
|
|
2499
|
+
# @!attribute [rw] root_ca_certificate
|
|
2500
|
+
# The root CA certificate.
|
|
2501
|
+
# @return [String]
|
|
2502
|
+
#
|
|
2503
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterEncryptionInTransit AWS API Documentation
|
|
2504
|
+
#
|
|
2505
|
+
class KafkaClusterEncryptionInTransit < Struct.new(
|
|
2506
|
+
:encryption_type,
|
|
2507
|
+
:root_ca_certificate)
|
|
2508
|
+
SENSITIVE = []
|
|
2509
|
+
include Aws::Structure
|
|
2510
|
+
end
|
|
2511
|
+
|
|
2405
2512
|
# Information about Kafka Cluster used as source / target for
|
|
2406
2513
|
# replication.
|
|
2407
2514
|
#
|
|
@@ -2409,6 +2516,10 @@ module Aws::Kafka
|
|
|
2409
2516
|
# Details of an Amazon MSK Cluster.
|
|
2410
2517
|
# @return [Types::AmazonMskCluster]
|
|
2411
2518
|
#
|
|
2519
|
+
# @!attribute [rw] apache_kafka_cluster
|
|
2520
|
+
# Details of an Apache Kafka Cluster.
|
|
2521
|
+
# @return [Types::ApacheKafkaCluster]
|
|
2522
|
+
#
|
|
2412
2523
|
# @!attribute [rw] kafka_cluster_alias
|
|
2413
2524
|
# The alias of the Kafka cluster. Used to prefix names of replicated
|
|
2414
2525
|
# topics.
|
|
@@ -2419,12 +2530,24 @@ module Aws::Kafka
|
|
|
2419
2530
|
# Apache Kafka cluster.
|
|
2420
2531
|
# @return [Types::KafkaClusterClientVpcConfig]
|
|
2421
2532
|
#
|
|
2533
|
+
# @!attribute [rw] client_authentication
|
|
2534
|
+
# Details of the client authentication used by the Apache Kafka
|
|
2535
|
+
# cluster.
|
|
2536
|
+
# @return [Types::KafkaClusterClientAuthentication]
|
|
2537
|
+
#
|
|
2538
|
+
# @!attribute [rw] encryption_in_transit
|
|
2539
|
+
# Details of encryption in transit to the Apache Kafka cluster.
|
|
2540
|
+
# @return [Types::KafkaClusterEncryptionInTransit]
|
|
2541
|
+
#
|
|
2422
2542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterDescription AWS API Documentation
|
|
2423
2543
|
#
|
|
2424
2544
|
class KafkaClusterDescription < Struct.new(
|
|
2425
2545
|
:amazon_msk_cluster,
|
|
2546
|
+
:apache_kafka_cluster,
|
|
2426
2547
|
:kafka_cluster_alias,
|
|
2427
|
-
:vpc_config
|
|
2548
|
+
:vpc_config,
|
|
2549
|
+
:client_authentication,
|
|
2550
|
+
:encryption_in_transit)
|
|
2428
2551
|
SENSITIVE = []
|
|
2429
2552
|
include Aws::Structure
|
|
2430
2553
|
end
|
|
@@ -2438,6 +2561,10 @@ module Aws::Kafka
|
|
|
2438
2561
|
# .
|
|
2439
2562
|
# @return [Types::AmazonMskCluster]
|
|
2440
2563
|
#
|
|
2564
|
+
# @!attribute [rw] apache_kafka_cluster
|
|
2565
|
+
# Details of an Apache Kafka Cluster.
|
|
2566
|
+
# @return [Types::ApacheKafkaCluster]
|
|
2567
|
+
#
|
|
2441
2568
|
# @!attribute [rw] kafka_cluster_alias
|
|
2442
2569
|
# The alias of the Kafka cluster. Used to prefix names of replicated
|
|
2443
2570
|
# topics.
|
|
@@ -2447,6 +2574,7 @@ module Aws::Kafka
|
|
|
2447
2574
|
#
|
|
2448
2575
|
class KafkaClusterSummary < Struct.new(
|
|
2449
2576
|
:amazon_msk_cluster,
|
|
2577
|
+
:apache_kafka_cluster,
|
|
2450
2578
|
:kafka_cluster_alias)
|
|
2451
2579
|
SENSITIVE = []
|
|
2452
2580
|
include Aws::Structure
|
|
@@ -3648,6 +3776,10 @@ module Aws::Kafka
|
|
|
3648
3776
|
# Information about the broker access configuration.
|
|
3649
3777
|
# @return [Types::ConnectivityInfo]
|
|
3650
3778
|
#
|
|
3779
|
+
# @!attribute [rw] zookeeper_access
|
|
3780
|
+
# Access control settings for zookeeper
|
|
3781
|
+
# @return [Types::ZookeeperAccess]
|
|
3782
|
+
#
|
|
3651
3783
|
# @!attribute [rw] storage_mode
|
|
3652
3784
|
# This controls storage mode for supported storage tiers.
|
|
3653
3785
|
# @return [String]
|
|
@@ -3675,6 +3807,7 @@ module Aws::Kafka
|
|
|
3675
3807
|
:client_authentication,
|
|
3676
3808
|
:encryption_info,
|
|
3677
3809
|
:connectivity_info,
|
|
3810
|
+
:zookeeper_access,
|
|
3678
3811
|
:storage_mode,
|
|
3679
3812
|
:broker_count_update_info,
|
|
3680
3813
|
:rebalancing)
|
|
@@ -3726,6 +3859,19 @@ module Aws::Kafka
|
|
|
3726
3859
|
include Aws::Structure
|
|
3727
3860
|
end
|
|
3728
3861
|
|
|
3862
|
+
# Access control settings for zookeeper
|
|
3863
|
+
#
|
|
3864
|
+
# @!attribute [rw] enabled
|
|
3865
|
+
# @return [Boolean]
|
|
3866
|
+
#
|
|
3867
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ZookeeperAccess AWS API Documentation
|
|
3868
|
+
#
|
|
3869
|
+
class ZookeeperAccess < Struct.new(
|
|
3870
|
+
:enabled)
|
|
3871
|
+
SENSITIVE = []
|
|
3872
|
+
include Aws::Structure
|
|
3873
|
+
end
|
|
3874
|
+
|
|
3729
3875
|
# Returns information about an error.
|
|
3730
3876
|
#
|
|
3731
3877
|
# @!attribute [rw] invalid_parameter
|
|
@@ -3754,6 +3900,10 @@ module Aws::Kafka
|
|
|
3754
3900
|
# The ARN of the source Kafka cluster.
|
|
3755
3901
|
# @return [String]
|
|
3756
3902
|
#
|
|
3903
|
+
# @!attribute [rw] source_kafka_cluster_id
|
|
3904
|
+
# The ID of the source Kafka cluster.
|
|
3905
|
+
# @return [String]
|
|
3906
|
+
#
|
|
3757
3907
|
# @!attribute [rw] target_compression_type
|
|
3758
3908
|
# The compression type to use when producing records to target
|
|
3759
3909
|
# cluster.
|
|
@@ -3763,6 +3913,10 @@ module Aws::Kafka
|
|
|
3763
3913
|
# The ARN of the target Kafka cluster.
|
|
3764
3914
|
# @return [String]
|
|
3765
3915
|
#
|
|
3916
|
+
# @!attribute [rw] target_kafka_cluster_id
|
|
3917
|
+
# The ID of the target Kafka cluster.
|
|
3918
|
+
# @return [String]
|
|
3919
|
+
#
|
|
3766
3920
|
# @!attribute [rw] topic_replication
|
|
3767
3921
|
# Configuration relating to topic replication.
|
|
3768
3922
|
# @return [Types::TopicReplication]
|
|
@@ -3772,8 +3926,10 @@ module Aws::Kafka
|
|
|
3772
3926
|
class ReplicationInfo < Struct.new(
|
|
3773
3927
|
:consumer_group_replication,
|
|
3774
3928
|
:source_kafka_cluster_arn,
|
|
3929
|
+
:source_kafka_cluster_id,
|
|
3775
3930
|
:target_compression_type,
|
|
3776
3931
|
:target_kafka_cluster_arn,
|
|
3932
|
+
:target_kafka_cluster_id,
|
|
3777
3933
|
:topic_replication)
|
|
3778
3934
|
SENSITIVE = []
|
|
3779
3935
|
include Aws::Structure
|
|
@@ -3867,6 +4023,114 @@ module Aws::Kafka
|
|
|
3867
4023
|
include Aws::Structure
|
|
3868
4024
|
end
|
|
3869
4025
|
|
|
4026
|
+
# Details of the CloudWatch Logs destination for replicator logs.
|
|
4027
|
+
#
|
|
4028
|
+
# @!attribute [rw] enabled
|
|
4029
|
+
# Specifies whether broker logs get sent to the specified CloudWatch
|
|
4030
|
+
# Logs destination for replication.
|
|
4031
|
+
# @return [Boolean]
|
|
4032
|
+
#
|
|
4033
|
+
# @!attribute [rw] log_group
|
|
4034
|
+
# The CloudWatch log group that is the destination for replicator
|
|
4035
|
+
# logs.
|
|
4036
|
+
# @return [String]
|
|
4037
|
+
#
|
|
4038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicatorCloudWatchLogs AWS API Documentation
|
|
4039
|
+
#
|
|
4040
|
+
class ReplicatorCloudWatchLogs < Struct.new(
|
|
4041
|
+
:enabled,
|
|
4042
|
+
:log_group)
|
|
4043
|
+
SENSITIVE = []
|
|
4044
|
+
include Aws::Structure
|
|
4045
|
+
end
|
|
4046
|
+
|
|
4047
|
+
# Details of the Kinesis Data Firehose delivery stream that is the
|
|
4048
|
+
# destination for replicator logs.
|
|
4049
|
+
#
|
|
4050
|
+
# @!attribute [rw] delivery_stream
|
|
4051
|
+
# The Kinesis Data Firehose delivery stream that is the destination
|
|
4052
|
+
# for replicator logs.
|
|
4053
|
+
# @return [String]
|
|
4054
|
+
#
|
|
4055
|
+
# @!attribute [rw] enabled
|
|
4056
|
+
# Specifies whether broker logs get sent to the specified Kinesis Data
|
|
4057
|
+
# Firehose delivery stream for replication.
|
|
4058
|
+
# @return [Boolean]
|
|
4059
|
+
#
|
|
4060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicatorFirehose AWS API Documentation
|
|
4061
|
+
#
|
|
4062
|
+
class ReplicatorFirehose < Struct.new(
|
|
4063
|
+
:delivery_stream,
|
|
4064
|
+
:enabled)
|
|
4065
|
+
SENSITIVE = []
|
|
4066
|
+
include Aws::Structure
|
|
4067
|
+
end
|
|
4068
|
+
|
|
4069
|
+
# Details of the Amazon S3 destination for replicator logs.
|
|
4070
|
+
#
|
|
4071
|
+
# @!attribute [rw] bucket
|
|
4072
|
+
# The name of the S3 bucket that is the destination for replicator
|
|
4073
|
+
# logs.
|
|
4074
|
+
# @return [String]
|
|
4075
|
+
#
|
|
4076
|
+
# @!attribute [rw] enabled
|
|
4077
|
+
# Specifies whether broker logs get sent to the specified Amazon S3
|
|
4078
|
+
# destination for replication.
|
|
4079
|
+
# @return [Boolean]
|
|
4080
|
+
#
|
|
4081
|
+
# @!attribute [rw] prefix
|
|
4082
|
+
# The S3 prefix that is the destination for replicator logs.
|
|
4083
|
+
# @return [String]
|
|
4084
|
+
#
|
|
4085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicatorS3 AWS API Documentation
|
|
4086
|
+
#
|
|
4087
|
+
class ReplicatorS3 < Struct.new(
|
|
4088
|
+
:bucket,
|
|
4089
|
+
:enabled,
|
|
4090
|
+
:prefix)
|
|
4091
|
+
SENSITIVE = []
|
|
4092
|
+
include Aws::Structure
|
|
4093
|
+
end
|
|
4094
|
+
|
|
4095
|
+
# Configuration for log delivery for the replicator.
|
|
4096
|
+
#
|
|
4097
|
+
# @!attribute [rw] replicator_log_delivery
|
|
4098
|
+
# The replicator logs configuration for this MSK replicator.
|
|
4099
|
+
# @return [Types::ReplicatorLogDelivery]
|
|
4100
|
+
#
|
|
4101
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/LogDelivery AWS API Documentation
|
|
4102
|
+
#
|
|
4103
|
+
class LogDelivery < Struct.new(
|
|
4104
|
+
:replicator_log_delivery)
|
|
4105
|
+
SENSITIVE = []
|
|
4106
|
+
include Aws::Structure
|
|
4107
|
+
end
|
|
4108
|
+
|
|
4109
|
+
# Details of the log delivery for the replicator.
|
|
4110
|
+
#
|
|
4111
|
+
# @!attribute [rw] cloud_watch_logs
|
|
4112
|
+
# Details of the CloudWatch Logs destination for replicator logs.
|
|
4113
|
+
# @return [Types::ReplicatorCloudWatchLogs]
|
|
4114
|
+
#
|
|
4115
|
+
# @!attribute [rw] firehose
|
|
4116
|
+
# Details of the Kinesis Data Firehose delivery stream that is the
|
|
4117
|
+
# destination for replicator logs.
|
|
4118
|
+
# @return [Types::ReplicatorFirehose]
|
|
4119
|
+
#
|
|
4120
|
+
# @!attribute [rw] s3
|
|
4121
|
+
# Details of the Amazon S3 destination for replicator logs.
|
|
4122
|
+
# @return [Types::ReplicatorS3]
|
|
4123
|
+
#
|
|
4124
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicatorLogDelivery AWS API Documentation
|
|
4125
|
+
#
|
|
4126
|
+
class ReplicatorLogDelivery < Struct.new(
|
|
4127
|
+
:cloud_watch_logs,
|
|
4128
|
+
:firehose,
|
|
4129
|
+
:s3)
|
|
4130
|
+
SENSITIVE = []
|
|
4131
|
+
include Aws::Structure
|
|
4132
|
+
end
|
|
4133
|
+
|
|
3870
4134
|
# Details about the state of a replicator
|
|
3871
4135
|
#
|
|
3872
4136
|
# @!attribute [rw] code
|
|
@@ -4797,12 +5061,17 @@ module Aws::Kafka
|
|
|
4797
5061
|
# The current version of the cluster.
|
|
4798
5062
|
# @return [String]
|
|
4799
5063
|
#
|
|
5064
|
+
# @!attribute [rw] zookeeper_access
|
|
5065
|
+
# Access control settings for zookeeper
|
|
5066
|
+
# @return [Types::ZookeeperAccess]
|
|
5067
|
+
#
|
|
4800
5068
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateConnectivityRequest AWS API Documentation
|
|
4801
5069
|
#
|
|
4802
5070
|
class UpdateConnectivityRequest < Struct.new(
|
|
4803
5071
|
:cluster_arn,
|
|
4804
5072
|
:connectivity_info,
|
|
4805
|
-
:current_version
|
|
5073
|
+
:current_version,
|
|
5074
|
+
:zookeeper_access)
|
|
4806
5075
|
SENSITIVE = []
|
|
4807
5076
|
include Aws::Structure
|
|
4808
5077
|
end
|
|
@@ -4891,6 +5160,11 @@ module Aws::Kafka
|
|
|
4891
5160
|
# Current replicator version.
|
|
4892
5161
|
# @return [String]
|
|
4893
5162
|
#
|
|
5163
|
+
# @!attribute [rw] log_delivery
|
|
5164
|
+
# Configuration for delivering replicator logs to customer
|
|
5165
|
+
# destinations.
|
|
5166
|
+
# @return [Types::LogDelivery]
|
|
5167
|
+
#
|
|
4894
5168
|
# @!attribute [rw] replicator_arn
|
|
4895
5169
|
# @return [String]
|
|
4896
5170
|
#
|
|
@@ -4898,10 +5172,18 @@ module Aws::Kafka
|
|
|
4898
5172
|
# The ARN of the source Kafka cluster.
|
|
4899
5173
|
# @return [String]
|
|
4900
5174
|
#
|
|
5175
|
+
# @!attribute [rw] source_kafka_cluster_id
|
|
5176
|
+
# The ID of the source Kafka cluster.
|
|
5177
|
+
# @return [String]
|
|
5178
|
+
#
|
|
4901
5179
|
# @!attribute [rw] target_kafka_cluster_arn
|
|
4902
5180
|
# The ARN of the target Kafka cluster.
|
|
4903
5181
|
# @return [String]
|
|
4904
5182
|
#
|
|
5183
|
+
# @!attribute [rw] target_kafka_cluster_id
|
|
5184
|
+
# The ID of the target Kafka cluster.
|
|
5185
|
+
# @return [String]
|
|
5186
|
+
#
|
|
4905
5187
|
# @!attribute [rw] topic_replication
|
|
4906
5188
|
# Updated topic replication information.
|
|
4907
5189
|
# @return [Types::TopicReplicationUpdate]
|
|
@@ -4911,9 +5193,12 @@ module Aws::Kafka
|
|
|
4911
5193
|
class UpdateReplicationInfoRequest < Struct.new(
|
|
4912
5194
|
:consumer_group_replication,
|
|
4913
5195
|
:current_version,
|
|
5196
|
+
:log_delivery,
|
|
4914
5197
|
:replicator_arn,
|
|
4915
5198
|
:source_kafka_cluster_arn,
|
|
5199
|
+
:source_kafka_cluster_id,
|
|
4916
5200
|
:target_kafka_cluster_arn,
|
|
5201
|
+
:target_kafka_cluster_id,
|
|
4917
5202
|
:topic_replication)
|
|
4918
5203
|
SENSITIVE = []
|
|
4919
5204
|
include Aws::Structure
|
data/lib/aws-sdk-kafka.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -366,24 +366,58 @@ module Aws
|
|
|
366
366
|
{
|
|
367
367
|
amazon_msk_cluster: {
|
|
368
368
|
msk_cluster_arn: ::String
|
|
369
|
-
}
|
|
369
|
+
}?,
|
|
370
|
+
apache_kafka_cluster: {
|
|
371
|
+
apache_kafka_cluster_id: ::String,
|
|
372
|
+
bootstrap_broker_string: ::String
|
|
373
|
+
}?,
|
|
370
374
|
vpc_config: {
|
|
371
375
|
security_group_ids: Array[::String]?,
|
|
372
376
|
subnet_ids: Array[::String]
|
|
373
|
-
}
|
|
377
|
+
}?,
|
|
378
|
+
client_authentication: {
|
|
379
|
+
sasl_scram: {
|
|
380
|
+
mechanism: ("SHA256" | "SHA512"),
|
|
381
|
+
secret_arn: ::String
|
|
382
|
+
}
|
|
383
|
+
}?,
|
|
384
|
+
encryption_in_transit: {
|
|
385
|
+
encryption_type: ("TLS"),
|
|
386
|
+
root_ca_certificate: ::String?
|
|
387
|
+
}?
|
|
374
388
|
},
|
|
375
389
|
],
|
|
390
|
+
?log_delivery: {
|
|
391
|
+
replicator_log_delivery: {
|
|
392
|
+
cloud_watch_logs: {
|
|
393
|
+
enabled: bool,
|
|
394
|
+
log_group: ::String?
|
|
395
|
+
}?,
|
|
396
|
+
firehose: {
|
|
397
|
+
delivery_stream: ::String?,
|
|
398
|
+
enabled: bool
|
|
399
|
+
}?,
|
|
400
|
+
s3: {
|
|
401
|
+
bucket: ::String?,
|
|
402
|
+
enabled: bool,
|
|
403
|
+
prefix: ::String?
|
|
404
|
+
}?
|
|
405
|
+
}?
|
|
406
|
+
},
|
|
376
407
|
replication_info_list: Array[
|
|
377
408
|
{
|
|
378
409
|
consumer_group_replication: {
|
|
379
410
|
consumer_groups_to_exclude: Array[::String]?,
|
|
380
411
|
consumer_groups_to_replicate: Array[::String],
|
|
381
412
|
detect_and_copy_new_consumer_groups: bool?,
|
|
382
|
-
synchronise_consumer_group_offsets: bool
|
|
413
|
+
synchronise_consumer_group_offsets: bool?,
|
|
414
|
+
consumer_group_offset_sync_mode: ("LEGACY" | "ENHANCED")?
|
|
383
415
|
},
|
|
384
|
-
source_kafka_cluster_arn: ::String
|
|
416
|
+
source_kafka_cluster_arn: ::String?,
|
|
417
|
+
source_kafka_cluster_id: ::String?,
|
|
385
418
|
target_compression_type: ("NONE" | "GZIP" | "SNAPPY" | "LZ4" | "ZSTD"),
|
|
386
|
-
target_kafka_cluster_arn: ::String
|
|
419
|
+
target_kafka_cluster_arn: ::String?,
|
|
420
|
+
target_kafka_cluster_id: ::String?,
|
|
387
421
|
topic_replication: {
|
|
388
422
|
copy_access_control_lists_for_topics: bool?,
|
|
389
423
|
copy_topic_configurations: bool?,
|
|
@@ -579,6 +613,7 @@ module Aws
|
|
|
579
613
|
def current_version: () -> ::String
|
|
580
614
|
def is_replicator_reference: () -> bool
|
|
581
615
|
def kafka_clusters: () -> ::Array[Types::KafkaClusterDescription]
|
|
616
|
+
def log_delivery: () -> Types::LogDelivery
|
|
582
617
|
def replication_info_list: () -> ::Array[Types::ReplicationInfoDescription]
|
|
583
618
|
def replicator_arn: () -> ::String
|
|
584
619
|
def replicator_description: () -> ::String
|
|
@@ -1036,7 +1071,7 @@ module Aws
|
|
|
1036
1071
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_connectivity-instance_method
|
|
1037
1072
|
def update_connectivity: (
|
|
1038
1073
|
cluster_arn: ::String,
|
|
1039
|
-
connectivity_info: {
|
|
1074
|
+
?connectivity_info: {
|
|
1040
1075
|
public_access: {
|
|
1041
1076
|
type: ::String?
|
|
1042
1077
|
}?,
|
|
@@ -1057,7 +1092,10 @@ module Aws
|
|
|
1057
1092
|
}?,
|
|
1058
1093
|
network_type: ("IPV4" | "DUAL")?
|
|
1059
1094
|
},
|
|
1060
|
-
current_version: ::String
|
|
1095
|
+
current_version: ::String,
|
|
1096
|
+
?zookeeper_access: {
|
|
1097
|
+
enabled: bool?
|
|
1098
|
+
}
|
|
1061
1099
|
) -> _UpdateConnectivityResponseSuccess
|
|
1062
1100
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectivityResponseSuccess
|
|
1063
1101
|
|
|
@@ -1130,9 +1168,28 @@ module Aws
|
|
|
1130
1168
|
synchronise_consumer_group_offsets: bool
|
|
1131
1169
|
},
|
|
1132
1170
|
current_version: ::String,
|
|
1171
|
+
?log_delivery: {
|
|
1172
|
+
replicator_log_delivery: {
|
|
1173
|
+
cloud_watch_logs: {
|
|
1174
|
+
enabled: bool,
|
|
1175
|
+
log_group: ::String?
|
|
1176
|
+
}?,
|
|
1177
|
+
firehose: {
|
|
1178
|
+
delivery_stream: ::String?,
|
|
1179
|
+
enabled: bool
|
|
1180
|
+
}?,
|
|
1181
|
+
s3: {
|
|
1182
|
+
bucket: ::String?,
|
|
1183
|
+
enabled: bool,
|
|
1184
|
+
prefix: ::String?
|
|
1185
|
+
}?
|
|
1186
|
+
}?
|
|
1187
|
+
},
|
|
1133
1188
|
replicator_arn: ::String,
|
|
1134
|
-
source_kafka_cluster_arn: ::String,
|
|
1135
|
-
|
|
1189
|
+
?source_kafka_cluster_arn: ::String,
|
|
1190
|
+
?source_kafka_cluster_id: ::String,
|
|
1191
|
+
?target_kafka_cluster_arn: ::String,
|
|
1192
|
+
?target_kafka_cluster_id: ::String,
|
|
1136
1193
|
?topic_replication: {
|
|
1137
1194
|
copy_access_control_lists_for_topics: bool,
|
|
1138
1195
|
copy_topic_configurations: bool,
|
data/sig/types.rbs
CHANGED
|
@@ -13,6 +13,12 @@ module Aws::Kafka
|
|
|
13
13
|
SENSITIVE: []
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
+
class ApacheKafkaCluster
|
|
17
|
+
attr_accessor apache_kafka_cluster_id: ::String
|
|
18
|
+
attr_accessor bootstrap_broker_string: ::String
|
|
19
|
+
SENSITIVE: []
|
|
20
|
+
end
|
|
21
|
+
|
|
16
22
|
class BatchAssociateScramSecretRequest
|
|
17
23
|
attr_accessor cluster_arn: ::String
|
|
18
24
|
attr_accessor secret_arn_list: ::Array[::String]
|
|
@@ -256,6 +262,7 @@ module Aws::Kafka
|
|
|
256
262
|
attr_accessor consumer_groups_to_replicate: ::Array[::String]
|
|
257
263
|
attr_accessor detect_and_copy_new_consumer_groups: bool
|
|
258
264
|
attr_accessor synchronise_consumer_group_offsets: bool
|
|
265
|
+
attr_accessor consumer_group_offset_sync_mode: ("LEGACY" | "ENHANCED")
|
|
259
266
|
SENSITIVE: []
|
|
260
267
|
end
|
|
261
268
|
|
|
@@ -311,6 +318,7 @@ module Aws::Kafka
|
|
|
311
318
|
class CreateReplicatorRequest
|
|
312
319
|
attr_accessor description: ::String
|
|
313
320
|
attr_accessor kafka_clusters: ::Array[Types::KafkaCluster]
|
|
321
|
+
attr_accessor log_delivery: Types::LogDelivery
|
|
314
322
|
attr_accessor replication_info_list: ::Array[Types::ReplicationInfo]
|
|
315
323
|
attr_accessor replicator_name: ::String
|
|
316
324
|
attr_accessor service_execution_role_arn: ::String
|
|
@@ -531,6 +539,7 @@ module Aws::Kafka
|
|
|
531
539
|
attr_accessor current_version: ::String
|
|
532
540
|
attr_accessor is_replicator_reference: bool
|
|
533
541
|
attr_accessor kafka_clusters: ::Array[Types::KafkaClusterDescription]
|
|
542
|
+
attr_accessor log_delivery: Types::LogDelivery
|
|
534
543
|
attr_accessor replication_info_list: ::Array[Types::ReplicationInfoDescription]
|
|
535
544
|
attr_accessor replicator_arn: ::String
|
|
536
545
|
attr_accessor replicator_description: ::String
|
|
@@ -661,7 +670,10 @@ module Aws::Kafka
|
|
|
661
670
|
|
|
662
671
|
class KafkaCluster
|
|
663
672
|
attr_accessor amazon_msk_cluster: Types::AmazonMskCluster
|
|
673
|
+
attr_accessor apache_kafka_cluster: Types::ApacheKafkaCluster
|
|
664
674
|
attr_accessor vpc_config: Types::KafkaClusterClientVpcConfig
|
|
675
|
+
attr_accessor client_authentication: Types::KafkaClusterClientAuthentication
|
|
676
|
+
attr_accessor encryption_in_transit: Types::KafkaClusterEncryptionInTransit
|
|
665
677
|
SENSITIVE: []
|
|
666
678
|
end
|
|
667
679
|
|
|
@@ -671,15 +683,36 @@ module Aws::Kafka
|
|
|
671
683
|
SENSITIVE: []
|
|
672
684
|
end
|
|
673
685
|
|
|
686
|
+
class KafkaClusterClientAuthentication
|
|
687
|
+
attr_accessor sasl_scram: Types::KafkaClusterSaslScramAuthentication
|
|
688
|
+
SENSITIVE: []
|
|
689
|
+
end
|
|
690
|
+
|
|
691
|
+
class KafkaClusterSaslScramAuthentication
|
|
692
|
+
attr_accessor mechanism: ("SHA256" | "SHA512")
|
|
693
|
+
attr_accessor secret_arn: ::String
|
|
694
|
+
SENSITIVE: []
|
|
695
|
+
end
|
|
696
|
+
|
|
697
|
+
class KafkaClusterEncryptionInTransit
|
|
698
|
+
attr_accessor encryption_type: ("TLS")
|
|
699
|
+
attr_accessor root_ca_certificate: ::String
|
|
700
|
+
SENSITIVE: []
|
|
701
|
+
end
|
|
702
|
+
|
|
674
703
|
class KafkaClusterDescription
|
|
675
704
|
attr_accessor amazon_msk_cluster: Types::AmazonMskCluster
|
|
705
|
+
attr_accessor apache_kafka_cluster: Types::ApacheKafkaCluster
|
|
676
706
|
attr_accessor kafka_cluster_alias: ::String
|
|
677
707
|
attr_accessor vpc_config: Types::KafkaClusterClientVpcConfig
|
|
708
|
+
attr_accessor client_authentication: Types::KafkaClusterClientAuthentication
|
|
709
|
+
attr_accessor encryption_in_transit: Types::KafkaClusterEncryptionInTransit
|
|
678
710
|
SENSITIVE: []
|
|
679
711
|
end
|
|
680
712
|
|
|
681
713
|
class KafkaClusterSummary
|
|
682
714
|
attr_accessor amazon_msk_cluster: Types::AmazonMskCluster
|
|
715
|
+
attr_accessor apache_kafka_cluster: Types::ApacheKafkaCluster
|
|
683
716
|
attr_accessor kafka_cluster_alias: ::String
|
|
684
717
|
SENSITIVE: []
|
|
685
718
|
end
|
|
@@ -1037,6 +1070,7 @@ module Aws::Kafka
|
|
|
1037
1070
|
attr_accessor client_authentication: Types::ClientAuthentication
|
|
1038
1071
|
attr_accessor encryption_info: Types::EncryptionInfo
|
|
1039
1072
|
attr_accessor connectivity_info: Types::ConnectivityInfo
|
|
1073
|
+
attr_accessor zookeeper_access: Types::ZookeeperAccess
|
|
1040
1074
|
attr_accessor storage_mode: ("LOCAL" | "TIERED")
|
|
1041
1075
|
attr_accessor broker_count_update_info: Types::BrokerCountUpdateInfo
|
|
1042
1076
|
attr_accessor rebalancing: Types::Rebalancing
|
|
@@ -1054,6 +1088,11 @@ module Aws::Kafka
|
|
|
1054
1088
|
SENSITIVE: []
|
|
1055
1089
|
end
|
|
1056
1090
|
|
|
1091
|
+
class ZookeeperAccess
|
|
1092
|
+
attr_accessor enabled: bool
|
|
1093
|
+
SENSITIVE: []
|
|
1094
|
+
end
|
|
1095
|
+
|
|
1057
1096
|
class NotFoundException
|
|
1058
1097
|
attr_accessor invalid_parameter: ::String
|
|
1059
1098
|
attr_accessor message: ::String
|
|
@@ -1063,8 +1102,10 @@ module Aws::Kafka
|
|
|
1063
1102
|
class ReplicationInfo
|
|
1064
1103
|
attr_accessor consumer_group_replication: Types::ConsumerGroupReplication
|
|
1065
1104
|
attr_accessor source_kafka_cluster_arn: ::String
|
|
1105
|
+
attr_accessor source_kafka_cluster_id: ::String
|
|
1066
1106
|
attr_accessor target_compression_type: ("NONE" | "GZIP" | "SNAPPY" | "LZ4" | "ZSTD")
|
|
1067
1107
|
attr_accessor target_kafka_cluster_arn: ::String
|
|
1108
|
+
attr_accessor target_kafka_cluster_id: ::String
|
|
1068
1109
|
attr_accessor topic_replication: Types::TopicReplication
|
|
1069
1110
|
SENSITIVE: []
|
|
1070
1111
|
end
|
|
@@ -1094,6 +1135,37 @@ module Aws::Kafka
|
|
|
1094
1135
|
SENSITIVE: []
|
|
1095
1136
|
end
|
|
1096
1137
|
|
|
1138
|
+
class ReplicatorCloudWatchLogs
|
|
1139
|
+
attr_accessor enabled: bool
|
|
1140
|
+
attr_accessor log_group: ::String
|
|
1141
|
+
SENSITIVE: []
|
|
1142
|
+
end
|
|
1143
|
+
|
|
1144
|
+
class ReplicatorFirehose
|
|
1145
|
+
attr_accessor delivery_stream: ::String
|
|
1146
|
+
attr_accessor enabled: bool
|
|
1147
|
+
SENSITIVE: []
|
|
1148
|
+
end
|
|
1149
|
+
|
|
1150
|
+
class ReplicatorS3
|
|
1151
|
+
attr_accessor bucket: ::String
|
|
1152
|
+
attr_accessor enabled: bool
|
|
1153
|
+
attr_accessor prefix: ::String
|
|
1154
|
+
SENSITIVE: []
|
|
1155
|
+
end
|
|
1156
|
+
|
|
1157
|
+
class LogDelivery
|
|
1158
|
+
attr_accessor replicator_log_delivery: Types::ReplicatorLogDelivery
|
|
1159
|
+
SENSITIVE: []
|
|
1160
|
+
end
|
|
1161
|
+
|
|
1162
|
+
class ReplicatorLogDelivery
|
|
1163
|
+
attr_accessor cloud_watch_logs: Types::ReplicatorCloudWatchLogs
|
|
1164
|
+
attr_accessor firehose: Types::ReplicatorFirehose
|
|
1165
|
+
attr_accessor s3: Types::ReplicatorS3
|
|
1166
|
+
SENSITIVE: []
|
|
1167
|
+
end
|
|
1168
|
+
|
|
1097
1169
|
class ReplicationStateInfo
|
|
1098
1170
|
attr_accessor code: ::String
|
|
1099
1171
|
attr_accessor message: ::String
|
|
@@ -1388,6 +1460,7 @@ module Aws::Kafka
|
|
|
1388
1460
|
attr_accessor cluster_arn: ::String
|
|
1389
1461
|
attr_accessor connectivity_info: Types::ConnectivityInfo
|
|
1390
1462
|
attr_accessor current_version: ::String
|
|
1463
|
+
attr_accessor zookeeper_access: Types::ZookeeperAccess
|
|
1391
1464
|
SENSITIVE: []
|
|
1392
1465
|
end
|
|
1393
1466
|
|
|
@@ -1415,9 +1488,12 @@ module Aws::Kafka
|
|
|
1415
1488
|
class UpdateReplicationInfoRequest
|
|
1416
1489
|
attr_accessor consumer_group_replication: Types::ConsumerGroupReplicationUpdate
|
|
1417
1490
|
attr_accessor current_version: ::String
|
|
1491
|
+
attr_accessor log_delivery: Types::LogDelivery
|
|
1418
1492
|
attr_accessor replicator_arn: ::String
|
|
1419
1493
|
attr_accessor source_kafka_cluster_arn: ::String
|
|
1494
|
+
attr_accessor source_kafka_cluster_id: ::String
|
|
1420
1495
|
attr_accessor target_kafka_cluster_arn: ::String
|
|
1496
|
+
attr_accessor target_kafka_cluster_id: ::String
|
|
1421
1497
|
attr_accessor topic_replication: Types::TopicReplicationUpdate
|
|
1422
1498
|
SENSITIVE: []
|
|
1423
1499
|
end
|