aws_sdk_quicksight/client/create_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 [`CreateRefreshSchedule`](crate::operation::create_refresh_schedule::builders::CreateRefreshScheduleFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`data_set_id(impl Into<String>)`](crate::operation::create_refresh_schedule::builders::CreateRefreshScheduleFluentBuilder::data_set_id) / [`set_data_set_id(Option<String>)`](crate::operation::create_refresh_schedule::builders::CreateRefreshScheduleFluentBuilder::set_data_set_id):<br>required: **true**<br><p>The ID of the dataset.</p><br>
7 /// - [`aws_account_id(impl Into<String>)`](crate::operation::create_refresh_schedule::builders::CreateRefreshScheduleFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::create_refresh_schedule::builders::CreateRefreshScheduleFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID.</p><br>
8 /// - [`schedule(RefreshSchedule)`](crate::operation::create_refresh_schedule::builders::CreateRefreshScheduleFluentBuilder::schedule) / [`set_schedule(Option<RefreshSchedule>)`](crate::operation::create_refresh_schedule::builders::CreateRefreshScheduleFluentBuilder::set_schedule):<br>required: **true**<br><p>The refresh schedule.</p><br>
9 /// - On success, responds with [`CreateRefreshScheduleOutput`](crate::operation::create_refresh_schedule::CreateRefreshScheduleOutput) with field(s):
10 /// - [`status(i32)`](crate::operation::create_refresh_schedule::CreateRefreshScheduleOutput::status): <p>The HTTP status of the request.</p>
11 /// - [`request_id(Option<String>)`](crate::operation::create_refresh_schedule::CreateRefreshScheduleOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
12 /// - [`schedule_id(Option<String>)`](crate::operation::create_refresh_schedule::CreateRefreshScheduleOutput::schedule_id): <p>The ID of the refresh schedule.</p>
13 /// - [`arn(Option<String>)`](crate::operation::create_refresh_schedule::CreateRefreshScheduleOutput::arn): <p>The Amazon Resource Name (ARN) for the refresh schedule.</p>
14 /// - On failure, responds with [`SdkError<CreateRefreshScheduleError>`](crate::operation::create_refresh_schedule::CreateRefreshScheduleError)
15 pub fn create_refresh_schedule(&self) -> crate::operation::create_refresh_schedule::builders::CreateRefreshScheduleFluentBuilder {
16 crate::operation::create_refresh_schedule::builders::CreateRefreshScheduleFluentBuilder::new(self.handle.clone())
17 }
18}