Learn R Programming

paws.analytics (version 0.1.11)

kafka_describe_cluster_operation: Returns a description of the cluster operation specified by the ARN

Description

Returns a description of the cluster operation specified by the ARN.

Usage

kafka_describe_cluster_operation(ClusterOperationArn)

Arguments

ClusterOperationArn

[required] The Amazon Resource Name (ARN) that uniquely identifies the MSK cluster operation.

Value

A list with the following syntax:

list(
  ClusterOperationInfo = list(
    ClientRequestId = "string",
    ClusterArn = "string",
    CreationTime = as.POSIXct(
      "2015-01-01"
    ),
    EndTime = as.POSIXct(
      "2015-01-01"
    ),
    ErrorInfo = list(
      ErrorCode = "string",
      ErrorString = "string"
    ),
    OperationArn = "string",
    OperationState = "string",
    OperationSteps = list(
      list(
        StepInfo = list(
          StepStatus = "string"
        ),
        StepName = "string"
      )
    ),
    OperationType = "string",
    SourceClusterInfo = list(
      BrokerEBSVolumeInfo = list(
        list(
          KafkaBrokerNodeId = "string",
          VolumeSizeGB = 123
        )
      ),
      ConfigurationInfo = list(
        Arn = "string",
        Revision = 123
      ),
      NumberOfBrokerNodes = 123,
      EnhancedMonitoring = "DEFAULT"|"PER_BROKER"|"PER_TOPIC_PER_BROKER"|"PER_TOPIC_PER_PARTITION",
      OpenMonitoring = list(
        Prometheus = list(
          JmxExporter = list(
            EnabledInBroker = TRUE|FALSE
          ),
          NodeExporter = list(
            EnabledInBroker = TRUE|FALSE
          )
        )
      ),
      KafkaVersion = "string",
      LoggingInfo = list(
        BrokerLogs = list(
          CloudWatchLogs = list(
            Enabled = TRUE|FALSE,
            LogGroup = "string"
          ),
          Firehose = list(
            DeliveryStream = "string",
            Enabled = TRUE|FALSE
          ),
          S3 = list(
            Bucket = "string",
            Enabled = TRUE|FALSE,
            Prefix = "string"
          )
        )
      )
    ),
    TargetClusterInfo = list(
      BrokerEBSVolumeInfo = list(
        list(
          KafkaBrokerNodeId = "string",
          VolumeSizeGB = 123
        )
      ),
      ConfigurationInfo = list(
        Arn = "string",
        Revision = 123
      ),
      NumberOfBrokerNodes = 123,
      EnhancedMonitoring = "DEFAULT"|"PER_BROKER"|"PER_TOPIC_PER_BROKER"|"PER_TOPIC_PER_PARTITION",
      OpenMonitoring = list(
        Prometheus = list(
          JmxExporter = list(
            EnabledInBroker = TRUE|FALSE
          ),
          NodeExporter = list(
            EnabledInBroker = TRUE|FALSE
          )
        )
      ),
      KafkaVersion = "string",
      LoggingInfo = list(
        BrokerLogs = list(
          CloudWatchLogs = list(
            Enabled = TRUE|FALSE,
            LogGroup = "string"
          ),
          Firehose = list(
            DeliveryStream = "string",
            Enabled = TRUE|FALSE
          ),
          S3 = list(
            Bucket = "string",
            Enabled = TRUE|FALSE,
            Prefix = "string"
          )
        )
      )
    )
  )
)

Request syntax

svc$describe_cluster_operation(
  ClusterOperationArn = "string"
)