#[non_exhaustive]pub struct UpdateDevEnvironmentInput { /* private fields */ }
Implementations§
source§impl UpdateDevEnvironmentInput
impl UpdateDevEnvironmentInput
sourcepub fn space_name(&self) -> Option<&str>
pub fn space_name(&self) -> Option<&str>
The name of the space.
sourcepub fn project_name(&self) -> Option<&str>
pub fn project_name(&self) -> Option<&str>
The name of the project in the space.
sourcepub fn alias(&self) -> Option<&str>
pub fn alias(&self) -> Option<&str>
The user-specified alias for the Dev Environment. Changing this value will not cause a restart.
sourcepub fn ides(&self) -> Option<&[IdeConfiguration]>
pub fn ides(&self) -> Option<&[IdeConfiguration]>
Information about the integrated development environment (IDE) configured for a Dev Environment.
sourcepub fn instance_type(&self) -> Option<&InstanceType>
pub fn instance_type(&self) -> Option<&InstanceType>
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) -> i32
pub fn inactivity_timeout_minutes(&self) -> 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.
Changing this value will cause a restart of the Dev Environment if it is running.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
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.
source§impl UpdateDevEnvironmentInput
impl UpdateDevEnvironmentInput
sourcepub fn builder() -> UpdateDevEnvironmentInputBuilder
pub fn builder() -> UpdateDevEnvironmentInputBuilder
Creates a new builder-style object to manufacture UpdateDevEnvironmentInput
.
source§impl UpdateDevEnvironmentInput
impl UpdateDevEnvironmentInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateDevEnvironment, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateDevEnvironment, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateDevEnvironment
>
Trait Implementations§
source§impl Clone for UpdateDevEnvironmentInput
impl Clone for UpdateDevEnvironmentInput
source§fn clone(&self) -> UpdateDevEnvironmentInput
fn clone(&self) -> UpdateDevEnvironmentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateDevEnvironmentInput
impl Debug for UpdateDevEnvironmentInput
source§impl PartialEq<UpdateDevEnvironmentInput> for UpdateDevEnvironmentInput
impl PartialEq<UpdateDevEnvironmentInput> for UpdateDevEnvironmentInput
source§fn eq(&self, other: &UpdateDevEnvironmentInput) -> bool
fn eq(&self, other: &UpdateDevEnvironmentInput) -> bool
self
and other
values to be equal, and is used
by ==
.