Skip to content

Describe Replicator

kafka_describe_replicator R Documentation

Describes a replicator

Description

Describes a replicator.

Usage

kafka_describe_replicator(ReplicatorArn)

Arguments

ReplicatorArn

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

Value

A list with the following syntax:

list(
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  CurrentVersion = "string",
  IsReplicatorReference = TRUE|FALSE,
  KafkaClusters = list(
    list(
      AmazonMskCluster = list(
        MskClusterArn = "string"
      ),
      KafkaClusterAlias = "string",
      VpcConfig = list(
        SecurityGroupIds = list(
          "string"
        ),
        SubnetIds = list(
          "string"
        )
      )
    )
  ),
  ReplicationInfoList = list(
    list(
      ConsumerGroupReplication = list(
        ConsumerGroupsToExclude = list(
          "string"
        ),
        ConsumerGroupsToReplicate = list(
          "string"
        ),
        DetectAndCopyNewConsumerGroups = TRUE|FALSE,
        SynchroniseConsumerGroupOffsets = TRUE|FALSE
      ),
      SourceKafkaClusterAlias = "string",
      TargetCompressionType = "NONE"|"GZIP"|"SNAPPY"|"LZ4"|"ZSTD",
      TargetKafkaClusterAlias = "string",
      TopicReplication = list(
        CopyAccessControlListsForTopics = TRUE|FALSE,
        CopyTopicConfigurations = TRUE|FALSE,
        DetectAndCopyNewTopics = TRUE|FALSE,
        StartingPosition = list(
          Type = "LATEST"|"EARLIEST"
        ),
        TopicsToExclude = list(
          "string"
        ),
        TopicsToReplicate = list(
          "string"
        )
      )
    )
  ),
  ReplicatorArn = "string",
  ReplicatorDescription = "string",
  ReplicatorName = "string",
  ReplicatorResourceArn = "string",
  ReplicatorState = "RUNNING"|"CREATING"|"UPDATING"|"DELETING"|"FAILED",
  ServiceExecutionRoleArn = "string",
  StateInfo = list(
    Code = "string",
    Message = "string"
  ),
  Tags = list(
    "string"
  )
)

Request syntax

svc$describe_replicator(
  ReplicatorArn = "string"
)