[][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 bid price for each EC2 Spot instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

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 Clone for InstanceGroupDetail[src]

impl Debug for InstanceGroupDetail[src]

impl Default for InstanceGroupDetail[src]

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

impl PartialEq<InstanceGroupDetail> for InstanceGroupDetail[src]

impl StructuralPartialEq for InstanceGroupDetail[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.