Struct aws_sdk_codecatalyst::operation::update_dev_environment::builders::UpdateDevEnvironmentFluentBuilder
source · pub struct UpdateDevEnvironmentFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateDevEnvironment
.
Changes one or more values for a Dev Environment. Updating certain values of the Dev Environment will cause a restart.
Implementations§
source§impl UpdateDevEnvironmentFluentBuilder
impl UpdateDevEnvironmentFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateDevEnvironment, AwsResponseRetryClassifier>, SdkError<UpdateDevEnvironmentError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateDevEnvironment, AwsResponseRetryClassifier>, SdkError<UpdateDevEnvironmentError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateDevEnvironmentOutput, SdkError<UpdateDevEnvironmentError>>
pub async fn send( self ) -> Result<UpdateDevEnvironmentOutput, SdkError<UpdateDevEnvironmentError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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.
Trait Implementations§
source§impl Clone for UpdateDevEnvironmentFluentBuilder
impl Clone for UpdateDevEnvironmentFluentBuilder
source§fn clone(&self) -> UpdateDevEnvironmentFluentBuilder
fn clone(&self) -> UpdateDevEnvironmentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more