[][src]Struct rusoto_cloud9::CreateEnvironmentEC2Request

pub struct CreateEnvironmentEC2Request {
    pub automatic_stop_time_minutes: Option<i64>,
    pub client_request_token: Option<String>,
    pub description: Option<String>,
    pub instance_type: String,
    pub name: String,
    pub owner_arn: Option<String>,
    pub subnet_id: Option<String>,
}

Fields

automatic_stop_time_minutes: Option<i64>

The number of minutes until the running instance is shut down after the environment has last been used.

client_request_token: Option<String>

A unique, case-sensitive string that helps AWS Cloud9 to ensure this operation completes no more than one time.

For more information, see Client Tokens in the Amazon EC2 API Reference.

description: Option<String>

The description of the environment to create.

instance_type: String

The type of instance to connect to the environment (for example, t2.micro).

name: String

The name of the environment to create.

This name is visible to other AWS IAM users in the same AWS account.

owner_arn: Option<String>

The Amazon Resource Name (ARN) of the environment owner. This ARN can be the ARN of any AWS IAM principal. If this value is not specified, the ARN defaults to this environment's creator.

subnet_id: Option<String>

The ID of the subnet in Amazon VPC that AWS Cloud9 will use to communicate with the Amazon EC2 instance.

Trait Implementations

impl Clone for CreateEnvironmentEC2Request[src]

impl Debug for CreateEnvironmentEC2Request[src]

impl Default for CreateEnvironmentEC2Request[src]

impl PartialEq<CreateEnvironmentEC2Request> for CreateEnvironmentEC2Request[src]

impl Serialize for CreateEnvironmentEC2Request[src]

impl StructuralPartialEq for CreateEnvironmentEC2Request[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> 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> 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.