Struct rusoto_emr::SetTerminationProtectionInput[][src]

pub struct SetTerminationProtectionInput {
    pub job_flow_ids: Vec<String>,
    pub termination_protected: bool,
}

The input argument to the TerminationProtection operation.

Fields

A list of strings that uniquely identify the clusters to protect. This identifier is returned by RunJobFlow and can also be obtained from DescribeJobFlows .

A Boolean that indicates whether to protect the cluster and prevent the Amazon EC2 instances in the cluster from shutting down due to API calls, user intervention, or job-flow error.

Trait Implementations

impl Default for SetTerminationProtectionInput
[src]

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

impl Debug for SetTerminationProtectionInput
[src]

Formats the value using the given formatter. Read more

impl Clone for SetTerminationProtectionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SetTerminationProtectionInput
[src]

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

This method tests for !=.

Auto Trait Implementations