1
2
3
4
5
6
7
8
9
10
11
12
// 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:
    ///   - [`topic_arn(impl Into<String>)`](crate::operation::delete_topic::builders::DeleteTopicFluentBuilder::topic_arn) / [`set_topic_arn(Option<String>)`](crate::operation::delete_topic::builders::DeleteTopicFluentBuilder::set_topic_arn):<br>required: **true**<br><p>The ARN of the topic you want to delete.</p><br>
    /// - On success, responds with [`DeleteTopicOutput`](crate::operation::delete_topic::DeleteTopicOutput)
    /// - 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())
    }
}