aws_sdk_quicksight/client/
start_dashboard_snapshot_job_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 [`StartDashboardSnapshotJobSchedule`](crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that the dashboard snapshot job is executed in.</p><br>
7    ///   - [`dashboard_id(impl Into<String>)`](crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder::dashboard_id) / [`set_dashboard_id(Option<String>)`](crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder::set_dashboard_id):<br>required: **true**<br><p>The ID of the dashboard that you want to start a snapshot job schedule for.</p><br>
8    ///   - [`schedule_id(impl Into<String>)`](crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder::schedule_id) / [`set_schedule_id(Option<String>)`](crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder::set_schedule_id):<br>required: **true**<br><p>The ID of the schedule that you want to start a snapshot job schedule for. The schedule ID can be found in the Amazon QuickSight console in the <b>Schedules</b> pane of the dashboard that the schedule is configured for.</p><br>
9    /// - On success, responds with [`StartDashboardSnapshotJobScheduleOutput`](crate::operation::start_dashboard_snapshot_job_schedule::StartDashboardSnapshotJobScheduleOutput) with field(s):
10    ///   - [`request_id(Option<String>)`](crate::operation::start_dashboard_snapshot_job_schedule::StartDashboardSnapshotJobScheduleOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
11    ///   - [`status(i32)`](crate::operation::start_dashboard_snapshot_job_schedule::StartDashboardSnapshotJobScheduleOutput::status): <p>The HTTP status of the request</p>
12    /// - On failure, responds with [`SdkError<StartDashboardSnapshotJobScheduleError>`](crate::operation::start_dashboard_snapshot_job_schedule::StartDashboardSnapshotJobScheduleError)
13    pub fn start_dashboard_snapshot_job_schedule(
14        &self,
15    ) -> crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder {
16        crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder::new(self.handle.clone())
17    }
18}