Describe Configuration
| kafka_describe_configuration | R Documentation | 
Returns a description of this MSK configuration¶
Description¶
Returns a description of this MSK configuration.
Usage¶
kafka_describe_configuration(Arn)
Arguments¶
| Arn | [required] The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration and all of its revisions. | 
Value¶
A list with the following syntax:
list(
  Arn = "string",
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  Description = "string",
  KafkaVersions = list(
    "string"
  ),
  LatestRevision = list(
    CreationTime = as.POSIXct(
      "2015-01-01"
    ),
    Description = "string",
    Revision = 123
  ),
  Name = "string",
  State = "ACTIVE"|"DELETING"|"DELETE_FAILED"
)
Request syntax¶
svc$describe_configuration(
  Arn = "string"
)