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

pub struct InstanceFleetConfigProperties {
    pub cluster_id: Value<String>,
    pub instance_fleet_type: Value<String>,
    pub instance_type_configs: Option<ValueList<InstanceTypeConfig>>,
    pub launch_specifications: Option<Value<InstanceFleetProvisioningSpecifications>>,
    pub name: Option<Value<String>>,
    pub target_on_demand_capacity: Option<Value<u32>>,
    pub target_spot_capacity: Option<Value<u32>>,
}

Properties for the InstanceFleetConfig resource.

Fields

Property ClusterId.

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

Property InstanceFleetType.

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

Property InstanceTypeConfigs.

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

Property LaunchSpecifications.

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

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

Property TargetSpotCapacity.

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

Trait Implementations

impl Debug for InstanceFleetConfigProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for InstanceFleetConfigProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<InstanceFleetConfigProperties> for InstanceFleetConfig
[src]

[src]

Performs the conversion.

Auto Trait Implementations