Struct cfn::aws::cloud9::EnvironmentEC2Properties [] [src]

pub struct EnvironmentEC2Properties {
    pub automatic_stop_time_minutes: Option<Value<u32>>,
    pub description: Option<Value<String>>,
    pub instance_type: Value<String>,
    pub name: Option<Value<String>>,
    pub owner_arn: Option<Value<String>>,
    pub repositories: Option<ValueList<Repository>>,
    pub subnet_id: Option<Value<String>>,
}

Properties for the EnvironmentEC2 resource.

Fields

Property AutomaticStopTimeMinutes.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Description.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property InstanceType.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Name.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property OwnerArn.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Repositories.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property SubnetId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Trait Implementations

impl Debug for EnvironmentEC2Properties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for EnvironmentEC2Properties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for EnvironmentEC2Properties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<EnvironmentEC2Properties> for EnvironmentEC2
[src]

[src]

Performs the conversion.

Auto Trait Implementations