aws_sdk_quicksight/client/
delete_topic_refresh_schedule.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteTopicRefreshSchedule`](crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    ///   - [`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>
9    /// - On success, responds with [`DeleteTopicRefreshScheduleOutput`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput) with field(s):
10    ///   - [`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>
11    ///   - [`topic_arn(Option<String>)`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput::topic_arn): <p>The Amazon Resource Name (ARN) of the topic.</p>
12    ///   - [`dataset_arn(Option<String>)`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput::dataset_arn): <p>The Amazon Resource Name (ARN) of the dataset.</p>
13    ///   - [`status(i32)`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput::status): <p>The HTTP status of the request.</p>
14    ///   - [`request_id(Option<String>)`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
15    /// - On failure, responds with [`SdkError<DeleteTopicRefreshScheduleError>`](crate::operation::delete_topic_refresh_schedule::DeleteTopicRefreshScheduleError)
16    pub fn delete_topic_refresh_schedule(
17        &self,
18    ) -> crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder {
19        crate::operation::delete_topic_refresh_schedule::builders::DeleteTopicRefreshScheduleFluentBuilder::new(self.handle.clone())
20    }
21}