Struct cfn::aws::opsworks::InstanceProperties [] [src]

pub struct InstanceProperties {
    pub agent_version: Option<Value<String>>,
    pub ami_id: Option<Value<String>>,
    pub architecture: Option<Value<String>>,
    pub auto_scaling_type: Option<Value<String>>,
    pub availability_zone: Option<Value<String>>,
    pub block_device_mappings: Option<ValueList<BlockDeviceMapping>>,
    pub ebs_optimized: Option<Value<bool>>,
    pub elastic_ips: Option<ValueList<String>>,
    pub hostname: Option<Value<String>>,
    pub install_updates_on_boot: Option<Value<bool>>,
    pub instance_type: Value<String>,
    pub layer_ids: ValueList<String>,
    pub os: Option<Value<String>>,
    pub root_device_type: Option<Value<String>>,
    pub ssh_key_name: Option<Value<String>>,
    pub stack_id: Value<String>,
    pub subnet_id: Option<Value<String>>,
    pub tenancy: Option<Value<String>>,
    pub time_based_auto_scaling: Option<Value<TimeBasedAutoScaling>>,
    pub virtualization_type: Option<Value<String>>,
    pub volumes: Option<ValueList<String>>,
}

Properties for the Instance resource.

Fields

Property AgentVersion.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property AmiId.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Architecture.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property AutoScalingType.

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

Property AvailabilityZone.

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

Property BlockDeviceMappings.

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

Property EbsOptimized.

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

Property ElasticIps.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Hostname.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property InstallUpdatesOnBoot.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property InstanceType.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property LayerIds.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Os.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property RootDeviceType.

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

Property SshKeyName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property StackId.

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.

Property Tenancy.

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

Property TimeBasedAutoScaling.

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

Property VirtualizationType.

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

Property Volumes.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for InstanceProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for InstanceProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<InstanceProperties> for Instance
[src]

[src]

Performs the conversion.

Auto Trait Implementations