Struct rusoto_codedeploy::AutoRollbackConfiguration[][src]

pub struct AutoRollbackConfiguration {
    pub enabled: Option<bool>,
    pub events: Option<Vec<String>>,
}

Information about a configuration for automatically rolling back to a previous version of an application revision when a deployment doesn't complete successfully.

Fields

Indicates whether a defined automatic rollback configuration is currently enabled.

The event type or types that trigger a rollback.

Trait Implementations

impl Default for AutoRollbackConfiguration
[src]

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

impl Debug for AutoRollbackConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for AutoRollbackConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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