// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteTopic`](crate::operation::delete_topic::builders::DeleteTopicFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`cluster_arn(impl Into<String>)`](crate::operation::delete_topic::builders::DeleteTopicFluentBuilder::cluster_arn) / [`set_cluster_arn(Option<String>)`](crate::operation::delete_topic::builders::DeleteTopicFluentBuilder::set_cluster_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p><br>
/// - [`topic_name(impl Into<String>)`](crate::operation::delete_topic::builders::DeleteTopicFluentBuilder::topic_name) / [`set_topic_name(Option<String>)`](crate::operation::delete_topic::builders::DeleteTopicFluentBuilder::set_topic_name):<br>required: **true**<br><p>The name of the topic to delete.</p><br>
/// - On success, responds with [`DeleteTopicOutput`](crate::operation::delete_topic::DeleteTopicOutput) with field(s):
/// - [`topic_arn(Option<String>)`](crate::operation::delete_topic::DeleteTopicOutput::topic_arn): <p>The Amazon Resource Name (ARN) of the topic.</p>
/// - [`topic_name(Option<String>)`](crate::operation::delete_topic::DeleteTopicOutput::topic_name): <p>The name of the topic that was deleted.</p>
/// - [`status(Option<TopicState>)`](crate::operation::delete_topic::DeleteTopicOutput::status): <p>The status of the topic deletion.</p>
/// - On failure, responds with [`SdkError<DeleteTopicError>`](crate::operation::delete_topic::DeleteTopicError)
pub fn delete_topic(&self) -> crate::operation::delete_topic::builders::DeleteTopicFluentBuilder {
crate::operation::delete_topic::builders::DeleteTopicFluentBuilder::new(self.handle.clone())
}
}