[][src]Struct rusoto_emr::InstanceResizePolicy

pub struct InstanceResizePolicy {
    pub instance_termination_timeout: Option<i64>,
    pub instances_to_protect: Option<Vec<String>>,
    pub instances_to_terminate: Option<Vec<String>>,
}

Custom policy for requesting termination protection or termination of specific instances when shrinking an instance group.

Fields

instance_termination_timeout: Option<i64>

Decommissioning timeout override for the specific list of instances to be terminated.

instances_to_protect: Option<Vec<String>>

Specific list of instances to be protected when shrinking an instance group.

instances_to_terminate: Option<Vec<String>>

Specific list of instances to be terminated when shrinking an instance group.

Trait Implementations

impl Clone for InstanceResizePolicy[src]

impl Debug for InstanceResizePolicy[src]

impl Default for InstanceResizePolicy[src]

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

impl PartialEq<InstanceResizePolicy> for InstanceResizePolicy[src]

impl Serialize for InstanceResizePolicy[src]

impl StructuralPartialEq for InstanceResizePolicy[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.