[−][src]Struct rusoto_emr::JobFlowDetail
A description of a cluster (job flow).
Fields
ami_version: Option<String>
Applies only to Amazon EMR AMI versions 3.x and 2.x. For Amazon EMR releases 4.0 and later, ReleaseLabel
is used. To specify a custom AMI, use CustomAmiID
.
auto_scaling_role: Option<String>
An IAM role for automatic scaling policies. The default role is EMR_AutoScaling_DefaultRole
. The IAM role provides a way for the automatic scaling feature to get the required permissions it needs to launch and terminate EC2 instances in an instance group.
bootstrap_actions: Option<Vec<BootstrapActionDetail>>
A list of the bootstrap actions run by the job flow.
execution_status_detail: JobFlowExecutionStatusDetail
Describes the execution status of the job flow.
instances: JobFlowInstancesDetail
Describes the Amazon EC2 instances of the job flow.
job_flow_id: String
The job flow identifier.
job_flow_role: Option<String>
The IAM role that was specified when the job flow was launched. The EC2 instances of the job flow assume this role.
log_uri: Option<String>
The location in Amazon S3 where log files for the job are stored.
name: String
The name of the job flow.
scale_down_behavior: Option<String>
The way that individual Amazon EC2 instances terminate when an automatic scale-in activity occurs or an instance group is resized. TERMINATE_AT_INSTANCE_HOUR
indicates that Amazon EMR terminates nodes at the instance-hour boundary, regardless of when the request to terminate the instance was submitted. This option is only available with Amazon EMR 5.1.0 and later and is the default for clusters created using that version. TERMINATE_AT_TASK_COMPLETION
indicates that Amazon EMR blacklists and drains tasks from nodes before terminating the Amazon EC2 instances, regardless of the instance-hour boundary. With either behavior, Amazon EMR removes the least active nodes first and blocks instance termination if it could lead to HDFS corruption. TERMINATE_AT_TASK_COMPLETION
available only in Amazon EMR version 4.1.0 and later, and is the default for versions of Amazon EMR earlier than 5.1.0.
service_role: Option<String>
The IAM role that will be assumed by the Amazon EMR service to access AWS resources on your behalf.
steps: Option<Vec<StepDetail>>
A list of steps run by the job flow.
supported_products: Option<Vec<String>>
A list of strings set by third party software when the job flow is launched. If you are not using third party software to manage the job flow this value is empty.
visible_to_all_users: Option<bool>
Specifies whether the cluster is visible to all IAM users of the AWS account associated with the cluster. If this value is set to true
, all IAM users of that AWS account can view and (if they have the proper policy permissions set) manage the cluster. If it is set to false
, only the IAM user that created the cluster can view and manage it. This value can be changed using the SetVisibleToAllUsers action.
Trait Implementations
impl PartialEq<JobFlowDetail> for JobFlowDetail
[src]
fn eq(&self, other: &JobFlowDetail) -> bool
[src]
fn ne(&self, other: &JobFlowDetail) -> bool
[src]
impl Default for JobFlowDetail
[src]
fn default() -> JobFlowDetail
[src]
impl Clone for JobFlowDetail
[src]
fn clone(&self) -> JobFlowDetail
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for JobFlowDetail
[src]
impl<'de> Deserialize<'de> for JobFlowDetail
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for JobFlowDetail
impl Sync for JobFlowDetail
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self