#[non_exhaustive]pub struct StartDevEnvironmentInput {
pub space_name: Option<String>,
pub project_name: Option<String>,
pub id: Option<String>,
pub ides: Option<Vec<IdeConfiguration>>,
pub instance_type: Option<InstanceType>,
pub inactivity_timeout_minutes: Option<i32>,
}
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.space_name: Option<String>
The name of the space.
project_name: Option<String>
The name of the project in the space.
id: Option<String>
The system-generated unique ID of the Dev Environment.
ides: Option<Vec<IdeConfiguration>>
Information about the integrated development environment (IDE) configured for a Dev Environment.
instance_type: Option<InstanceType>
The Amazon EC2 instace type to use for the Dev Environment.
inactivity_timeout_minutes: Option<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.
Implementations§
source§impl StartDevEnvironmentInput
impl StartDevEnvironmentInput
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) -> &[IdeConfiguration]
pub fn ides(&self) -> &[IdeConfiguration]
Information about the integrated development environment (IDE) configured for a Dev Environment.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ides.is_none()
.
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) -> Option<i32>
pub fn inactivity_timeout_minutes(&self) -> Option<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.
source§impl StartDevEnvironmentInput
impl StartDevEnvironmentInput
sourcepub fn builder() -> StartDevEnvironmentInputBuilder
pub fn builder() -> StartDevEnvironmentInputBuilder
Creates a new builder-style object to manufacture StartDevEnvironmentInput
.
Trait Implementations§
source§impl Clone for StartDevEnvironmentInput
impl Clone for StartDevEnvironmentInput
source§fn clone(&self) -> StartDevEnvironmentInput
fn clone(&self) -> StartDevEnvironmentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StartDevEnvironmentInput
impl Debug for StartDevEnvironmentInput
source§impl PartialEq for StartDevEnvironmentInput
impl PartialEq for StartDevEnvironmentInput
source§fn eq(&self, other: &StartDevEnvironmentInput) -> bool
fn eq(&self, other: &StartDevEnvironmentInput) -> bool
self
and other
values to be equal, and is used
by ==
.