[][src]Struct rusoto_cloud9::Environment

pub struct Environment {
    pub arn: Option<String>,
    pub description: Option<String>,
    pub id: Option<String>,
    pub lifecycle: Option<EnvironmentLifecycle>,
    pub name: Option<String>,
    pub owner_arn: Option<String>,
    pub type_: Option<String>,
}

Information about an AWS Cloud9 development environment.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the environment.

description: Option<String>

The description for the environment.

id: Option<String>

The ID of the environment.

lifecycle: Option<EnvironmentLifecycle>

The state of the environment in its creation or deletion lifecycle.

name: Option<String>

The name of the environment.

owner_arn: Option<String>

The Amazon Resource Name (ARN) of the environment owner.

type_: Option<String>

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.

Trait Implementations

impl Clone for Environment[src]

impl Debug for Environment[src]

impl Default for Environment[src]

impl<'de> Deserialize<'de> for Environment[src]

impl PartialEq<Environment> for Environment[src]

impl StructuralPartialEq for Environment[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.