Struct rusoto_emr::AutoScalingPolicyStateChangeReason[][src]

pub struct AutoScalingPolicyStateChangeReason {
    pub code: Option<String>,
    pub message: Option<String>,
}

The reason for an AutoScalingPolicyStatus change.

Fields

The code indicating the reason for the change in status.USER_REQUEST indicates that the scaling policy status was changed by a user. PROVISION_FAILURE indicates that the status change was because the policy failed to provision. CLEANUP_FAILURE indicates an error.

A friendly, more verbose message that accompanies an automatic scaling policy state change.

Trait Implementations

impl Default for AutoScalingPolicyStateChangeReason
[src]

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

impl Debug for AutoScalingPolicyStateChangeReason
[src]

Formats the value using the given formatter. Read more

impl Clone for AutoScalingPolicyStateChangeReason
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AutoScalingPolicyStateChangeReason
[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