1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartInstances`](crate::operation::start_instances::builders::StartInstancesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_ids(Vec<String>)`](crate::operation::start_instances::builders::StartInstancesFluentBuilder::instance_ids) / [`set_instance_ids(Option<Vec<String>>)`](crate::operation::start_instances::builders::StartInstancesFluentBuilder::set_instance_ids): <p>The IDs of the instances.</p>
    ///   - [`additional_info(impl Into<String>)`](crate::operation::start_instances::builders::StartInstancesFluentBuilder::additional_info) / [`set_additional_info(Option<String>)`](crate::operation::start_instances::builders::StartInstancesFluentBuilder::set_additional_info): <p>Reserved.</p>
    ///   - [`dry_run(bool)`](crate::operation::start_instances::builders::StartInstancesFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::start_instances::builders::StartInstancesFluentBuilder::set_dry_run): <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
    /// - On success, responds with [`StartInstancesOutput`](crate::operation::start_instances::StartInstancesOutput) with field(s):
    ///   - [`starting_instances(Option<Vec<InstanceStateChange>>)`](crate::operation::start_instances::StartInstancesOutput::starting_instances): <p>Information about the started instances.</p>
    /// - On failure, responds with [`SdkError<StartInstancesError>`](crate::operation::start_instances::StartInstancesError)
    pub fn start_instances(
        &self,
    ) -> crate::operation::start_instances::builders::StartInstancesFluentBuilder {
        crate::operation::start_instances::builders::StartInstancesFluentBuilder::new(
            self.handle.clone(),
        )
    }
}