aws_sdk_quicksight/client/start_dashboard_snapshot_job_schedule.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`StartDashboardSnapshotJobSchedule`](crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - [`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>
/// - On success, responds with [`StartDashboardSnapshotJobScheduleOutput`](crate::operation::start_dashboard_snapshot_job_schedule::StartDashboardSnapshotJobScheduleOutput) with field(s):
/// - [`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>
/// - [`status(i32)`](crate::operation::start_dashboard_snapshot_job_schedule::StartDashboardSnapshotJobScheduleOutput::status): <p>The HTTP status of the request</p>
/// - On failure, responds with [`SdkError<StartDashboardSnapshotJobScheduleError>`](crate::operation::start_dashboard_snapshot_job_schedule::StartDashboardSnapshotJobScheduleError)
pub fn start_dashboard_snapshot_job_schedule(
&self,
) -> crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder {
crate::operation::start_dashboard_snapshot_job_schedule::builders::StartDashboardSnapshotJobScheduleFluentBuilder::new(self.handle.clone())
}
}