Struct aws_sdk_cloud9::model::Environment
source · [−]#[non_exhaustive]pub struct Environment { /* private fields */ }
Expand description
Information about an Cloud9 development environment.
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
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more