[][src]Struct rusoto_appconfig::DeploymentStrategy

pub struct DeploymentStrategy {
    pub deployment_duration_in_minutes: Option<i64>,
    pub description: Option<String>,
    pub final_bake_time_in_minutes: Option<i64>,
    pub growth_factor: Option<f32>,
    pub growth_type: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub replicate_to: Option<String>,
}

Fields

deployment_duration_in_minutes: Option<i64>

Total amount of time the deployment lasted.

description: Option<String>

The description of the deployment strategy.

final_bake_time_in_minutes: Option<i64>

The amount of time AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic roll back.

growth_factor: Option<f32>

The percentage of targets that received a deployed configuration during each interval.

growth_type: Option<String>

The algorithm used to define how percentage grew over time.

id: Option<String>

The deployment strategy ID.

name: Option<String>

The name of the deployment strategy.

replicate_to: Option<String>

Save the deployment strategy to a Systems Manager (SSM) document.

Trait Implementations

impl Clone for DeploymentStrategy[src]

impl Debug for DeploymentStrategy[src]

impl Default for DeploymentStrategy[src]

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

impl PartialEq<DeploymentStrategy> for DeploymentStrategy[src]

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