1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteTopicRefreshSchedule`](crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID.</p><br>
    ///   - [`topic_id(impl Into<String>)`](crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder::topic_id) / [`set_topic_id(Option<String>)`](crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder::set_topic_id):<br>required: **true**<br><p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p><br>
    ///   - [`dataset_id(impl Into<String>)`](crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder::dataset_id) / [`set_dataset_id(Option<String>)`](crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder::set_dataset_id):<br>required: **true**<br><p>The ID of the dataset.</p><br>
    /// - On success, responds with [`DeleteTopicRefreshScheduleOutput`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput) with field(s):
    ///   - [`topic_id(Option<String>)`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput::topic_id): <p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
    ///   - [`topic_arn(Option<String>)`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput::topic_arn): <p>The Amazon Resource Name (ARN) of the topic.</p>
    ///   - [`dataset_arn(Option<String>)`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput::dataset_arn): <p>The Amazon Resource Name (ARN) of the dataset.</p>
    ///   - [`status(i32)`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput::status): <p>The HTTP status of the request.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    /// - On failure, responds with [`SdkError<DeleteTopicRefreshScheduleError>`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleError)
    pub fn delete_topic_refresh_schedule(
        &self,
    ) -> crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder {
        crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder::new(self.handle.clone())
    }
}