[][src]Struct rusoto_emr::InstanceGroupDetail

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: Option<String>

The maximum Spot price your are willing to pay for EC2 instances.

An optional, nullable field that applies if the MarketType for the instance group is specified as SPOT. Specified in USD. If the value is NULL and SPOT is specified, the maximum Spot price is set equal to the On-Demand price.

creation_date_time: f64

The date/time the instance group was created.

end_date_time: Option<f64>

The date/time the instance group was terminated.

instance_group_id: Option<String>

Unique identifier for the instance group.

instance_request_count: i64

Target number of instances to run in the instance group.

instance_role: String

Instance group role in the cluster

instance_running_count: i64

Actual count of running instances.

instance_type: String

EC2 instance type.

last_state_change_reason: Option<String>

Details regarding the state of the instance group.

market: String

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

name: Option<String>

Friendly name for the instance group.

ready_date_time: Option<f64>

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

start_date_time: Option<f64>

The date/time the instance group was started.

state: String

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

Trait Implementations

impl PartialEq<InstanceGroupDetail> for InstanceGroupDetail[src]

impl Default for InstanceGroupDetail[src]

impl Clone for InstanceGroupDetail[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InstanceGroupDetail[src]

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

Auto Trait Implementations

impl Send for InstanceGroupDetail

impl Sync for InstanceGroupDetail

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self