Struct aws_sdk_cloud9::model::Environment
source · [−]#[non_exhaustive]pub struct Environment {
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub type: Option<EnvironmentType>,
pub connection_type: Option<ConnectionType>,
pub arn: Option<String>,
pub owner_arn: Option<String>,
pub lifecycle: Option<EnvironmentLifecycle>,
pub managed_credentials_status: Option<ManagedCredentialsStatus>,
}
Expand description
Information about an Cloud9 development environment.
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 ID of the environment.
name: Option<String>
The name of the environment.
description: Option<String>
The description for the environment.
type: Option<EnvironmentType>
The type of environment. Valid values include the following:
-
ec2
: An Amazon Elastic Compute Cloud (Amazon EC2) instance connects to the environment. -
ssh
: Your own server connects to the environment.
connection_type: Option<ConnectionType>
The connection type used for connecting to an Amazon EC2 environment. CONNECT_SSH
is selected by default.
arn: Option<String>
The Amazon Resource Name (ARN) of the environment.
owner_arn: Option<String>
The Amazon Resource Name (ARN) of the environment owner.
lifecycle: Option<EnvironmentLifecycle>
The state of the environment in its creation or deletion lifecycle.
managed_credentials_status: Option<ManagedCredentialsStatus>
Describes the status of Amazon Web Services managed temporary credentials for the Cloud9 environment. Available values are:
-
ENABLED_ON_CREATE
-
ENABLED_BY_OWNER
-
DISABLED_BY_DEFAULT
-
DISABLED_BY_OWNER
-
DISABLED_BY_COLLABORATOR
-
PENDING_REMOVAL_BY_COLLABORATOR
-
PENDING_REMOVAL_BY_OWNER
-
FAILED_REMOVAL_BY_COLLABORATOR
-
ENABLED_BY_OWNER
-
DISABLED_BY_DEFAULT
Implementations
sourceimpl Environment
impl Environment
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for the environment.
sourcepub fn type(&self) -> Option<&EnvironmentType>
pub fn type(&self) -> Option<&EnvironmentType>
The type of environment. Valid values include the following:
-
ec2
: An Amazon Elastic Compute Cloud (Amazon EC2) instance connects to the environment. -
ssh
: Your own server connects to the environment.
sourcepub fn connection_type(&self) -> Option<&ConnectionType>
pub fn connection_type(&self) -> Option<&ConnectionType>
The connection type used for connecting to an Amazon EC2 environment. CONNECT_SSH
is selected by default.
sourcepub fn owner_arn(&self) -> Option<&str>
pub fn owner_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the environment owner.
sourcepub fn lifecycle(&self) -> Option<&EnvironmentLifecycle>
pub fn lifecycle(&self) -> Option<&EnvironmentLifecycle>
The state of the environment in its creation or deletion lifecycle.
sourcepub fn managed_credentials_status(&self) -> Option<&ManagedCredentialsStatus>
pub fn managed_credentials_status(&self) -> Option<&ManagedCredentialsStatus>
Describes the status of Amazon Web Services managed temporary credentials for the Cloud9 environment. Available values are:
-
ENABLED_ON_CREATE
-
ENABLED_BY_OWNER
-
DISABLED_BY_DEFAULT
-
DISABLED_BY_OWNER
-
DISABLED_BY_COLLABORATOR
-
PENDING_REMOVAL_BY_COLLABORATOR
-
PENDING_REMOVAL_BY_OWNER
-
FAILED_REMOVAL_BY_COLLABORATOR
-
ENABLED_BY_OWNER
-
DISABLED_BY_DEFAULT
sourceimpl Environment
impl Environment
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture Environment
Trait Implementations
sourceimpl Clone for Environment
impl Clone for Environment
sourcefn clone(&self) -> Environment
fn clone(&self) -> Environment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Environment
impl Debug for Environment
sourceimpl PartialEq<Environment> for Environment
impl PartialEq<Environment> for Environment
sourcefn eq(&self, other: &Environment) -> bool
fn eq(&self, other: &Environment) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Environment) -> bool
fn ne(&self, other: &Environment) -> bool
This method tests for !=
.
impl StructuralPartialEq for Environment
Auto Trait Implementations
impl RefUnwindSafe for Environment
impl Send for Environment
impl Sync for Environment
impl Unpin for Environment
impl UnwindSafe for Environment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more