1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartWorkspaces`](crate::operation::start_workspaces::builders::StartWorkspacesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`start_workspace_requests(Vec<StartRequest>)`](crate::operation::start_workspaces::builders::StartWorkspacesFluentBuilder::start_workspace_requests) / [`set_start_workspace_requests(Option<Vec<StartRequest>>)`](crate::operation::start_workspaces::builders::StartWorkspacesFluentBuilder::set_start_workspace_requests): <p>The WorkSpaces to start. You can specify up to 25 WorkSpaces.</p>
    /// - On success, responds with [`StartWorkspacesOutput`](crate::operation::start_workspaces::StartWorkspacesOutput) with field(s):
    ///   - [`failed_requests(Option<Vec<FailedWorkspaceChangeRequest>>)`](crate::operation::start_workspaces::StartWorkspacesOutput::failed_requests): <p>Information about the WorkSpaces that could not be started.</p>
    /// - On failure, responds with [`SdkError<StartWorkspacesError>`](crate::operation::start_workspaces::StartWorkspacesError)
    pub fn start_workspaces(
        &self,
    ) -> crate::operation::start_workspaces::builders::StartWorkspacesFluentBuilder {
        crate::operation::start_workspaces::builders::StartWorkspacesFluentBuilder::new(
            self.handle.clone(),
        )
    }
}