[][src]Struct rusoto_emr::JobFlowInstancesDetail

pub struct JobFlowInstancesDetail {
    pub ec_2_key_name: Option<String>,
    pub ec_2_subnet_id: Option<String>,
    pub hadoop_version: Option<String>,
    pub instance_count: i64,
    pub instance_groups: Option<Vec<InstanceGroupDetail>>,
    pub keep_job_flow_alive_when_no_steps: Option<bool>,
    pub master_instance_id: Option<String>,
    pub master_instance_type: String,
    pub master_public_dns_name: Option<String>,
    pub normalized_instance_hours: Option<i64>,
    pub placement: Option<PlacementType>,
    pub slave_instance_type: String,
    pub termination_protected: Option<bool>,
}

Specify the type of Amazon EC2 instances that the cluster (job flow) runs on.

Fields

The name of an Amazon EC2 key pair that can be used to ssh to the master node.

For clusters launched within Amazon Virtual Private Cloud, this is the identifier of the subnet where the cluster was launched.

The Hadoop version for the cluster.

The number of Amazon EC2 instances in the cluster. If the value is 1, the same instance serves as both the master and slave node. If the value is greater than 1, one instance is the master node and all others are slave nodes.

Details about the instance groups in a cluster.

Specifies whether the cluster should remain available after completing all steps.

The Amazon EC2 instance identifier of the master node.

The Amazon EC2 master node instance type.

The DNS name of the master node. If the cluster is on a private subnet, this is the private DNS name. On a public subnet, this is the public DNS name.

An approximation of the cost of the cluster, represented in m1.small/hours. This value is incremented one time for every hour that an m1.small runs. Larger instances are weighted more, so an Amazon EC2 instance that is roughly four times more expensive would result in the normalized instance hours being incremented by four. This result is only an approximation and does not reflect the actual billing rate.

The Amazon EC2 Availability Zone for the cluster.

The Amazon EC2 slave node instance type.

Specifies whether the Amazon EC2 instances in the cluster are protected from termination by API calls, user intervention, or in the event of a job-flow error.

Trait Implementations

impl Default for JobFlowInstancesDetail
[src]

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

impl PartialEq<JobFlowInstancesDetail> for JobFlowInstancesDetail
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for JobFlowInstancesDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobFlowInstancesDetail
[src]

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T