Delete Topic
| kafka_delete_topic | R Documentation |
Deletes a topic in the specified MSK cluster¶
Description¶
Deletes a topic in the specified MSK cluster.
Usage¶
kafka_delete_topic(ClusterArn, TopicName)
Arguments¶
ClusterArn |
[required] The Amazon Resource Name (ARN) that uniquely identifies the cluster. |
TopicName |
[required] The name of the topic to delete. |
Value¶
A list with the following syntax:
list(
TopicArn = "string",
TopicName = "string",
Status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"
)
Request syntax¶
svc$delete_topic(
ClusterArn = "string",
TopicName = "string"
)