Struct aws_sdk_codecatalyst::operation::update_dev_environment::builders::UpdateDevEnvironmentOutputBuilder    
source · #[non_exhaustive]pub struct UpdateDevEnvironmentOutputBuilder { /* private fields */ }Expand description
A builder for UpdateDevEnvironmentOutput.
Implementations§
source§impl UpdateDevEnvironmentOutputBuilder
 
impl UpdateDevEnvironmentOutputBuilder
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.
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 space_name(self, input: impl Into<String>) -> Self
 
pub fn space_name(self, input: impl Into<String>) -> Self
The name of the space.
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 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.
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 alias(self, input: impl Into<String>) -> Self
 
pub fn alias(self, input: impl Into<String>) -> Self
The user-specified alias for the Dev Environment.
sourcepub fn set_alias(self, input: Option<String>) -> Self
 
pub fn set_alias(self, input: Option<String>) -> Self
The user-specified alias for 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 the 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 the 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 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.
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.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
 
pub fn client_token(self, input: impl Into<String>) -> Self
A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
 
pub fn set_client_token(self, input: Option<String>) -> Self
A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.
sourcepub fn build(self) -> UpdateDevEnvironmentOutput
 
pub fn build(self) -> UpdateDevEnvironmentOutput
Consumes the builder and constructs a UpdateDevEnvironmentOutput.
Trait Implementations§
source§impl Clone for UpdateDevEnvironmentOutputBuilder
 
impl Clone for UpdateDevEnvironmentOutputBuilder
source§fn clone(&self) -> UpdateDevEnvironmentOutputBuilder
 
fn clone(&self) -> UpdateDevEnvironmentOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateDevEnvironmentOutputBuilder
 
impl Default for UpdateDevEnvironmentOutputBuilder
source§fn default() -> UpdateDevEnvironmentOutputBuilder
 
fn default() -> UpdateDevEnvironmentOutputBuilder
source§impl PartialEq<UpdateDevEnvironmentOutputBuilder> for UpdateDevEnvironmentOutputBuilder
 
impl PartialEq<UpdateDevEnvironmentOutputBuilder> for UpdateDevEnvironmentOutputBuilder
source§fn eq(&self, other: &UpdateDevEnvironmentOutputBuilder) -> bool
 
fn eq(&self, other: &UpdateDevEnvironmentOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.