Struct rusoto_emr::InstanceGroupDetail [] [src]

pub struct InstanceGroupDetail {
    pub bid_price: Option<String>,
    pub creation_date_time: f64,
    pub end_date_time: Option<f64>,
    pub instance_group_id: Option<String>,
    pub instance_request_count: i64,
    pub instance_role: String,
    pub instance_running_count: i64,
    pub instance_type: String,
    pub last_state_change_reason: Option<String>,
    pub market: String,
    pub name: Option<String>,
    pub ready_date_time: Option<f64>,
    pub start_date_time: Option<f64>,
    pub state: String,
}

Detailed information about an instance group.

Fields

Bid price for EC2 Instances when launching nodes as Spot Instances, expressed in USD.

The date/time the instance group was created.

The date/time the instance group was terminated.

Unique identifier for the instance group.

Target number of instances to run in the instance group.

Instance group role in the cluster

Actual count of running instances.

EC2 instance type.

Details regarding the state of the instance group.

Market type of the EC2 instances used to create a cluster node.

Friendly name for the instance group.

The date/time the instance group was available to the cluster.

The date/time the instance group was started.

State of instance group. The following values are deprecated: STARTING, TERMINATED, and FAILED.

Trait Implementations

impl Default for InstanceGroupDetail
[src]

[src]

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

impl Debug for InstanceGroupDetail
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceGroupDetail
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations