#[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 ==
.impl StructuralPartialEq for StartDevEnvironmentInput
Auto Trait Implementations§
impl Freeze for StartDevEnvironmentInput
impl RefUnwindSafe for StartDevEnvironmentInput
impl Send for StartDevEnvironmentInput
impl Sync for StartDevEnvironmentInput
impl Unpin for StartDevEnvironmentInput
impl UnwindSafe for StartDevEnvironmentInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more