[][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 PartialEq<CreateEnvironmentEC2Request> for CreateEnvironmentEC2Request[src]

impl Default for CreateEnvironmentEC2Request[src]

impl Clone for CreateEnvironmentEC2Request[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateEnvironmentEC2Request[src]

impl Serialize for CreateEnvironmentEC2Request[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self