Struct aws_sdk_codecatalyst::operation::update_dev_environment::builders::UpdateDevEnvironmentInputBuilder
source · #[non_exhaustive]pub struct UpdateDevEnvironmentInputBuilder { /* private fields */ }
Expand description
A builder for UpdateDevEnvironmentInput
.
Implementations§
source§impl UpdateDevEnvironmentInputBuilder
impl UpdateDevEnvironmentInputBuilder
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 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 alias(self, input: impl Into<String>) -> Self
pub fn alias(self, input: impl Into<String>) -> Self
The user-specified alias for the Dev Environment. Changing this value will not cause a restart.
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. Changing this value will not cause a restart.
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 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.
Changing this value will cause a restart of the Dev Environment if it is running.
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.
Changing this value will cause a restart of the Dev Environment if it is running.
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.
Changing this value will cause a restart of the Dev Environment if it is 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.
Changing this value will cause a restart of the Dev Environment if it is running.
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) -> Result<UpdateDevEnvironmentInput, BuildError>
pub fn build(self) -> Result<UpdateDevEnvironmentInput, BuildError>
Consumes the builder and constructs a UpdateDevEnvironmentInput
.
Trait Implementations§
source§impl Clone for UpdateDevEnvironmentInputBuilder
impl Clone for UpdateDevEnvironmentInputBuilder
source§fn clone(&self) -> UpdateDevEnvironmentInputBuilder
fn clone(&self) -> UpdateDevEnvironmentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateDevEnvironmentInputBuilder
impl Default for UpdateDevEnvironmentInputBuilder
source§fn default() -> UpdateDevEnvironmentInputBuilder
fn default() -> UpdateDevEnvironmentInputBuilder
source§impl PartialEq<UpdateDevEnvironmentInputBuilder> for UpdateDevEnvironmentInputBuilder
impl PartialEq<UpdateDevEnvironmentInputBuilder> for UpdateDevEnvironmentInputBuilder
source§fn eq(&self, other: &UpdateDevEnvironmentInputBuilder) -> bool
fn eq(&self, other: &UpdateDevEnvironmentInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.