#[non_exhaustive]pub struct UpdateDevEnvironmentOutput {
pub id: Option<String>,
pub space_name: Option<String>,
pub project_name: Option<String>,
pub alias: Option<String>,
pub ides: Option<Vec<IdeConfiguration>>,
pub instance_type: Option<InstanceType>,
pub inactivity_timeout_minutes: i32,
pub client_token: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
The system-generated unique ID of the Dev Environment.
space_name: Option<String>
The name of the space.
project_name: Option<String>
The name of the project in the space.
alias: Option<String>
The user-specified alias for the Dev Environment.
ides: Option<Vec<IdeConfiguration>>
Information about the integrated development environment (IDE) configured for the Dev Environment.
instance_type: Option<InstanceType>
The Amazon EC2 instace type to use for the Dev Environment.
inactivity_timeout_minutes: i32
The amount of time the Dev Environment will run without any activity detected before stopping, in minutes.
client_token: Option<String>
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.
Implementations§
source§impl UpdateDevEnvironmentOutput
impl UpdateDevEnvironmentOutput
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 ides(&self) -> Option<&[IdeConfiguration]>
pub fn ides(&self) -> Option<&[IdeConfiguration]>
Information about the integrated development environment (IDE) configured for the 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.
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.
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 UpdateDevEnvironmentOutput
impl UpdateDevEnvironmentOutput
sourcepub fn builder() -> UpdateDevEnvironmentOutputBuilder
pub fn builder() -> UpdateDevEnvironmentOutputBuilder
Creates a new builder-style object to manufacture UpdateDevEnvironmentOutput
.
Trait Implementations§
source§impl Clone for UpdateDevEnvironmentOutput
impl Clone for UpdateDevEnvironmentOutput
source§fn clone(&self) -> UpdateDevEnvironmentOutput
fn clone(&self) -> UpdateDevEnvironmentOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateDevEnvironmentOutput
impl Debug for UpdateDevEnvironmentOutput
source§impl PartialEq for UpdateDevEnvironmentOutput
impl PartialEq for UpdateDevEnvironmentOutput
source§fn eq(&self, other: &UpdateDevEnvironmentOutput) -> bool
fn eq(&self, other: &UpdateDevEnvironmentOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateDevEnvironmentOutput
impl RequestId for UpdateDevEnvironmentOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.