Struct aws_sdk_codecatalyst::operation::start_dev_environment::builders::StartDevEnvironmentInputBuilder
source · #[non_exhaustive]pub struct StartDevEnvironmentInputBuilder { /* private fields */ }
Expand description
A builder for StartDevEnvironmentInput
.
Implementations§
source§impl StartDevEnvironmentInputBuilder
impl StartDevEnvironmentInputBuilder
sourcepub fn space_name(self, input: impl Into<String>) -> Self
pub fn space_name(self, input: impl Into<String>) -> Self
The name of the space.
This field is required.sourcepub fn set_space_name(self, input: Option<String>) -> Self
pub fn set_space_name(self, input: Option<String>) -> Self
The name of the space.
sourcepub fn get_space_name(&self) -> &Option<String>
pub fn get_space_name(&self) -> &Option<String>
The name of the space.
sourcepub fn project_name(self, input: impl Into<String>) -> Self
pub fn project_name(self, input: impl Into<String>) -> Self
The name of the project in the space.
This field is required.sourcepub fn set_project_name(self, input: Option<String>) -> Self
pub fn set_project_name(self, input: Option<String>) -> Self
The name of the project in the space.
sourcepub fn get_project_name(&self) -> &Option<String>
pub fn get_project_name(&self) -> &Option<String>
The name of the project in the space.
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The system-generated unique ID of the Dev Environment.
This field is required.sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The system-generated unique ID of the Dev Environment.
sourcepub fn ides(self, input: IdeConfiguration) -> Self
pub fn ides(self, input: IdeConfiguration) -> Self
Appends an item to ides
.
To override the contents of this collection use set_ides
.
Information about the integrated development environment (IDE) configured for a Dev Environment.
sourcepub fn set_ides(self, input: Option<Vec<IdeConfiguration>>) -> Self
pub fn set_ides(self, input: Option<Vec<IdeConfiguration>>) -> Self
Information about the integrated development environment (IDE) configured for a Dev Environment.
sourcepub fn get_ides(&self) -> &Option<Vec<IdeConfiguration>>
pub fn get_ides(&self) -> &Option<Vec<IdeConfiguration>>
Information about the integrated development environment (IDE) configured for a Dev Environment.
sourcepub fn instance_type(self, input: InstanceType) -> Self
pub fn instance_type(self, input: InstanceType) -> Self
The Amazon EC2 instace type to use for the Dev Environment.
sourcepub fn set_instance_type(self, input: Option<InstanceType>) -> Self
pub fn set_instance_type(self, input: Option<InstanceType>) -> Self
The Amazon EC2 instace type to use for the Dev Environment.
sourcepub fn get_instance_type(&self) -> &Option<InstanceType>
pub fn get_instance_type(&self) -> &Option<InstanceType>
The Amazon EC2 instace type to use for the Dev Environment.
sourcepub fn inactivity_timeout_minutes(self, input: i32) -> Self
pub fn inactivity_timeout_minutes(self, input: i32) -> Self
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.
sourcepub fn set_inactivity_timeout_minutes(self, input: Option<i32>) -> Self
pub fn set_inactivity_timeout_minutes(self, input: Option<i32>) -> Self
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.
sourcepub fn get_inactivity_timeout_minutes(&self) -> &Option<i32>
pub fn get_inactivity_timeout_minutes(&self) -> &Option<i32>
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.
sourcepub fn build(self) -> Result<StartDevEnvironmentInput, BuildError>
pub fn build(self) -> Result<StartDevEnvironmentInput, BuildError>
Consumes the builder and constructs a StartDevEnvironmentInput
.
source§impl StartDevEnvironmentInputBuilder
impl StartDevEnvironmentInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<StartDevEnvironmentOutput, SdkError<StartDevEnvironmentError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<StartDevEnvironmentOutput, SdkError<StartDevEnvironmentError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for StartDevEnvironmentInputBuilder
impl Clone for StartDevEnvironmentInputBuilder
source§fn clone(&self) -> StartDevEnvironmentInputBuilder
fn clone(&self) -> StartDevEnvironmentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for StartDevEnvironmentInputBuilder
impl Default for StartDevEnvironmentInputBuilder
source§fn default() -> StartDevEnvironmentInputBuilder
fn default() -> StartDevEnvironmentInputBuilder
source§impl PartialEq for StartDevEnvironmentInputBuilder
impl PartialEq for StartDevEnvironmentInputBuilder
source§fn eq(&self, other: &StartDevEnvironmentInputBuilder) -> bool
fn eq(&self, other: &StartDevEnvironmentInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.