#[non_exhaustive]pub struct StartDevEnvironmentInput { /* private fields */ }
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) -> 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.
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.
source§impl StartDevEnvironmentInput
impl StartDevEnvironmentInput
sourcepub fn builder() -> StartDevEnvironmentInputBuilder
pub fn builder() -> StartDevEnvironmentInputBuilder
Creates a new builder-style object to manufacture StartDevEnvironmentInput
.
source§impl StartDevEnvironmentInput
impl StartDevEnvironmentInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartDevEnvironment, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<StartDevEnvironment, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartDevEnvironment
>
Trait Implementations§
source§impl Clone for StartDevEnvironmentInput
impl Clone for StartDevEnvironmentInput
source§fn clone(&self) -> StartDevEnvironmentInput
fn clone(&self) -> StartDevEnvironmentInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for StartDevEnvironmentInput
impl Debug for StartDevEnvironmentInput
source§impl PartialEq<StartDevEnvironmentInput> for StartDevEnvironmentInput
impl PartialEq<StartDevEnvironmentInput> for StartDevEnvironmentInput
source§fn eq(&self, other: &StartDevEnvironmentInput) -> bool
fn eq(&self, other: &StartDevEnvironmentInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.