1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetDevEnvironment`](crate::operation::get_dev_environment::builders::GetDevEnvironmentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`space_name(impl Into<String>)`](crate::operation::get_dev_environment::builders::GetDevEnvironmentFluentBuilder::space_name) / [`set_space_name(Option<String>)`](crate::operation::get_dev_environment::builders::GetDevEnvironmentFluentBuilder::set_space_name): <p>The name of the space.</p>
    ///   - [`project_name(impl Into<String>)`](crate::operation::get_dev_environment::builders::GetDevEnvironmentFluentBuilder::project_name) / [`set_project_name(Option<String>)`](crate::operation::get_dev_environment::builders::GetDevEnvironmentFluentBuilder::set_project_name): <p>The name of the project in the space.</p>
    ///   - [`id(impl Into<String>)`](crate::operation::get_dev_environment::builders::GetDevEnvironmentFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_dev_environment::builders::GetDevEnvironmentFluentBuilder::set_id): <p>The system-generated unique ID of the Dev Environment for which you want to view information. To retrieve a list of Dev Environment IDs, use <code>ListDevEnvironments</code>.</p>
    /// - On success, responds with [`GetDevEnvironmentOutput`](crate::operation::get_dev_environment::GetDevEnvironmentOutput) with field(s):
    ///   - [`space_name(Option<String>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::space_name): <p>The name of the space.</p>
    ///   - [`project_name(Option<String>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::project_name): <p>The name of the project in the space.</p>
    ///   - [`id(Option<String>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::id): <p>The system-generated unique ID of the Dev Environment. </p>
    ///   - [`last_updated_time(Option<DateTime>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::last_updated_time): <p>The time when the Dev Environment was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
    ///   - [`creator_id(Option<String>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::creator_id): <p>The system-generated unique ID of the user who created the Dev Environment. </p>
    ///   - [`status(Option<DevEnvironmentStatus>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::status): <p>The current status of the Dev Environment.</p>
    ///   - [`status_reason(Option<String>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::status_reason): <p>The reason for the status.</p>
    ///   - [`repositories(Option<Vec<DevEnvironmentRepositorySummary>>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::repositories): <p>The source repository that contains the branch cloned into the Dev Environment. </p>
    ///   - [`alias(Option<String>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::alias): <p>The user-specified alias for the Dev Environment. </p>
    ///   - [`ides(Option<Vec<Ide>>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::ides): <p>Information about the integrated development environment (IDE) configured for the Dev Environment. </p>
    ///   - [`instance_type(Option<InstanceType>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::instance_type): <p>The Amazon EC2 instace type to use for the Dev Environment. </p>
    ///   - [`inactivity_timeout_minutes(i32)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::inactivity_timeout_minutes): <p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes.</p>
    ///   - [`persistent_storage(Option<PersistentStorage>)`](crate::operation::get_dev_environment::GetDevEnvironmentOutput::persistent_storage): <p>Information about the amount of storage allocated to the Dev Environment. By default, a Dev Environment is configured to have 16GB of persistent storage.</p>
    /// - On failure, responds with [`SdkError<GetDevEnvironmentError>`](crate::operation::get_dev_environment::GetDevEnvironmentError)
    pub fn get_dev_environment(
        &self,
    ) -> crate::operation::get_dev_environment::builders::GetDevEnvironmentFluentBuilder {
        crate::operation::get_dev_environment::builders::GetDevEnvironmentFluentBuilder::new(
            self.handle.clone(),
        )
    }
}