Class: Aws::Kafka::Types::ConsumerGroupReplication
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ConsumerGroupReplication
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
Details about consumer group replication.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#consumer_groups_to_exclude ⇒ Array<String>
List of regular expression patterns indicating the consumer groups that should not be replicated.
-
#consumer_groups_to_replicate ⇒ Array<String>
List of regular expression patterns indicating the consumer groups to copy.
-
#detect_and_copy_new_consumer_groups ⇒ Boolean
Enables synchronization of consumer groups to target cluster.
-
#synchronise_consumer_group_offsets ⇒ Boolean
Enables synchronization of consumer group offsets to target cluster.
Instance Attribute Details
#consumer_groups_to_exclude ⇒ Array<String>
List of regular expression patterns indicating the consumer groups that should not be replicated.
934 935 936 937 938 939 940 941 |
# File 'lib/aws-sdk-kafka/types.rb', line 934 class ConsumerGroupReplication < Struct.new( :consumer_groups_to_exclude, :consumer_groups_to_replicate, :detect_and_copy_new_consumer_groups, :synchronise_consumer_group_offsets) SENSITIVE = [] include Aws::Structure end |
#consumer_groups_to_replicate ⇒ Array<String>
List of regular expression patterns indicating the consumer groups to copy.
934 935 936 937 938 939 940 941 |
# File 'lib/aws-sdk-kafka/types.rb', line 934 class ConsumerGroupReplication < Struct.new( :consumer_groups_to_exclude, :consumer_groups_to_replicate, :detect_and_copy_new_consumer_groups, :synchronise_consumer_group_offsets) SENSITIVE = [] include Aws::Structure end |
#detect_and_copy_new_consumer_groups ⇒ Boolean
Enables synchronization of consumer groups to target cluster.
934 935 936 937 938 939 940 941 |
# File 'lib/aws-sdk-kafka/types.rb', line 934 class ConsumerGroupReplication < Struct.new( :consumer_groups_to_exclude, :consumer_groups_to_replicate, :detect_and_copy_new_consumer_groups, :synchronise_consumer_group_offsets) SENSITIVE = [] include Aws::Structure end |
#synchronise_consumer_group_offsets ⇒ Boolean
Enables synchronization of consumer group offsets to target cluster. The translated offsets will be written to topic _consumeroffsets.
934 935 936 937 938 939 940 941 |
# File 'lib/aws-sdk-kafka/types.rb', line 934 class ConsumerGroupReplication < Struct.new( :consumer_groups_to_exclude, :consumer_groups_to_replicate, :detect_and_copy_new_consumer_groups, :synchronise_consumer_group_offsets) SENSITIVE = [] include Aws::Structure end |