Show / Hide Table of Contents

Class CfnReplicator.ConsumerGroupReplicationProperty

Details about consumer group replication.

Inheritance
object
CfnReplicator.ConsumerGroupReplicationProperty
Implements
CfnReplicator.IConsumerGroupReplicationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnReplicator.ConsumerGroupReplicationProperty : CfnReplicator.IConsumerGroupReplicationProperty
Syntax (vb)
Public Class CfnReplicator.ConsumerGroupReplicationProperty Implements CfnReplicator.IConsumerGroupReplicationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-consumergroupreplication.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MSK;

             var consumerGroupReplicationProperty = new ConsumerGroupReplicationProperty {
                 ConsumerGroupsToReplicate = new [] { "consumerGroupsToReplicate" },

                 // the properties below are optional
                 ConsumerGroupsToExclude = new [] { "consumerGroupsToExclude" },
                 DetectAndCopyNewConsumerGroups = false,
                 SynchroniseConsumerGroupOffsets = false
             };

Synopsis

Constructors

ConsumerGroupReplicationProperty()

Details about consumer group replication.

Properties

ConsumerGroupsToExclude

List of regular expression patterns indicating the consumer groups that should not be replicated.

ConsumerGroupsToReplicate

List of regular expression patterns indicating the consumer groups to copy.

DetectAndCopyNewConsumerGroups

Enables synchronization of consumer groups to target cluster.

SynchroniseConsumerGroupOffsets

Enables synchronization of consumer group offsets to target cluster.

Constructors

ConsumerGroupReplicationProperty()

Details about consumer group replication.

public ConsumerGroupReplicationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-consumergroupreplication.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MSK;

             var consumerGroupReplicationProperty = new ConsumerGroupReplicationProperty {
                 ConsumerGroupsToReplicate = new [] { "consumerGroupsToReplicate" },

                 // the properties below are optional
                 ConsumerGroupsToExclude = new [] { "consumerGroupsToExclude" },
                 DetectAndCopyNewConsumerGroups = false,
                 SynchroniseConsumerGroupOffsets = false
             };

Properties

ConsumerGroupsToExclude

List of regular expression patterns indicating the consumer groups that should not be replicated.

public string[]? ConsumerGroupsToExclude { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-consumergroupreplication.html#cfn-msk-replicator-consumergroupreplication-consumergroupstoexclude

ConsumerGroupsToReplicate

List of regular expression patterns indicating the consumer groups to copy.

public string[] ConsumerGroupsToReplicate { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-consumergroupreplication.html#cfn-msk-replicator-consumergroupreplication-consumergroupstoreplicate

DetectAndCopyNewConsumerGroups

Enables synchronization of consumer groups to target cluster.

public object? DetectAndCopyNewConsumerGroups { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-consumergroupreplication.html#cfn-msk-replicator-consumergroupreplication-detectandcopynewconsumergroups

SynchroniseConsumerGroupOffsets

Enables synchronization of consumer group offsets to target cluster.

public object? SynchroniseConsumerGroupOffsets { get; set; }
Property Value

object

Remarks

The translated offsets will be written to topic __consumer_offsets.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-consumergroupreplication.html#cfn-msk-replicator-consumergroupreplication-synchroniseconsumergroupoffsets

Implements

CfnReplicator.IConsumerGroupReplicationProperty
Back to top Generated by DocFX