Struct cfn::aws::emr::InstanceGroupConfigProperties [] [src]

pub struct InstanceGroupConfigProperties {
    pub auto_scaling_policy: Option<Value<AutoScalingPolicy>>,
    pub bid_price: Option<Value<String>>,
    pub configurations: Option<ValueList<Configuration>>,
    pub ebs_configuration: Option<Value<EbsConfiguration>>,
    pub instance_count: Value<u32>,
    pub instance_role: Value<String>,
    pub instance_type: Value<String>,
    pub job_flow_id: Value<String>,
    pub market: Option<Value<String>>,
    pub name: Option<Value<String>>,
}

Properties for the InstanceGroupConfig resource.

Fields

Property AutoScalingPolicy.

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

Property BidPrice.

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

Property Configurations.

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

Property EbsConfiguration.

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

Property InstanceCount.

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

Property InstanceRole.

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 JobFlowId.

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

Property Market.

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.

Trait Implementations

impl Debug for InstanceGroupConfigProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for InstanceGroupConfigProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<InstanceGroupConfigProperties> for InstanceGroupConfig
[src]

[src]

Performs the conversion.

Auto Trait Implementations