// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`StartDevEnvironment`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`space_name(impl Into<String>)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::space_name) / [`set_space_name(Option<String>)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::set_space_name): <p>The name of the space.</p>
/// - [`project_name(impl Into<String>)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::project_name) / [`set_project_name(Option<String>)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::set_project_name): <p>The name of the project in the space.</p>
/// - [`id(impl Into<String>)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::set_id): <p>The system-generated unique ID of the Dev Environment. </p>
/// - [`ides(Vec<IdeConfiguration>)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::ides) / [`set_ides(Option<Vec<IdeConfiguration>>)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::set_ides): <p>Information about the integrated development environment (IDE) configured for a Dev Environment. </p>
/// - [`instance_type(InstanceType)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::instance_type) / [`set_instance_type(Option<InstanceType>)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::set_instance_type): <p>The Amazon EC2 instace type to use for the Dev Environment. </p>
/// - [`inactivity_timeout_minutes(i32)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::inactivity_timeout_minutes) / [`set_inactivity_timeout_minutes(i32)`](crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::set_inactivity_timeout_minutes): <p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.</p>
/// - On success, responds with [`StartDevEnvironmentOutput`](crate::operation::start_dev_environment::StartDevEnvironmentOutput) with field(s):
/// - [`space_name(Option<String>)`](crate::operation::start_dev_environment::StartDevEnvironmentOutput::space_name): <p>The name of the space.</p>
/// - [`project_name(Option<String>)`](crate::operation::start_dev_environment::StartDevEnvironmentOutput::project_name): <p>The name of the project in the space.</p>
/// - [`id(Option<String>)`](crate::operation::start_dev_environment::StartDevEnvironmentOutput::id): <p>The system-generated unique ID of the Dev Environment. </p>
/// - [`status(Option<DevEnvironmentStatus>)`](crate::operation::start_dev_environment::StartDevEnvironmentOutput::status): <p>The status of the Dev Environment. </p>
/// - On failure, responds with [`SdkError<StartDevEnvironmentError>`](crate::operation::start_dev_environment::StartDevEnvironmentError)
pub fn start_dev_environment(
&self,
) -> crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder {
crate::operation::start_dev_environment::builders::StartDevEnvironmentFluentBuilder::new(
self.handle.clone(),
)
}
}