Skip to content

Update Replication Info

kafka_update_replication_info R Documentation

Updates replication info of a replicator

Description

Updates replication info of a replicator.

Usage

kafka_update_replication_info(ConsumerGroupReplication, CurrentVersion,
  ReplicatorArn, SourceKafkaClusterArn, TargetKafkaClusterArn,
  TopicReplication)

Arguments

ConsumerGroupReplication

Updated consumer group replication information.

CurrentVersion

[required] Current replicator version.

ReplicatorArn

[required] The Amazon Resource Name (ARN) of the replicator to be updated.

SourceKafkaClusterArn

[required] The ARN of the source Kafka cluster.

TargetKafkaClusterArn

[required] The ARN of the target Kafka cluster.

TopicReplication

Updated topic replication information.

Value

A list with the following syntax:

list(
  ReplicatorArn = "string",
  ReplicatorState = "RUNNING"|"CREATING"|"UPDATING"|"DELETING"|"FAILED"
)

Request syntax

svc$update_replication_info(
  ConsumerGroupReplication = list(
    ConsumerGroupsToExclude = list(
      "string"
    ),
    ConsumerGroupsToReplicate = list(
      "string"
    ),
    DetectAndCopyNewConsumerGroups = TRUE|FALSE,
    SynchroniseConsumerGroupOffsets = TRUE|FALSE
  ),
  CurrentVersion = "string",
  ReplicatorArn = "string",
  SourceKafkaClusterArn = "string",
  TargetKafkaClusterArn = "string",
  TopicReplication = list(
    CopyAccessControlListsForTopics = TRUE|FALSE,
    CopyTopicConfigurations = TRUE|FALSE,
    DetectAndCopyNewTopics = TRUE|FALSE,
    TopicsToExclude = list(
      "string"
    ),
    TopicsToReplicate = list(
      "string"
    )
  )
)