[][src]Struct rusoto_codedeploy::CloudFormationTarget

pub struct CloudFormationTarget {
    pub deployment_id: Option<String>,
    pub last_updated_at: Option<f64>,
    pub lifecycle_events: Option<Vec<LifecycleEvent>>,
    pub resource_type: Option<String>,
    pub status: Option<String>,
    pub target_id: Option<String>,
    pub target_version_weight: Option<f64>,
}

Information about the target to be updated by an AWS CloudFormation blue/green deployment. This target type is used for all deployments initiated by a CloudFormation stack update.

Fields

deployment_id: Option<String>

The unique ID of an AWS CloudFormation blue/green deployment.

last_updated_at: Option<f64>

The date and time when the target application was updated by an AWS CloudFormation blue/green deployment.

lifecycle_events: Option<Vec<LifecycleEvent>>

The lifecycle events of the AWS CloudFormation blue/green deployment to this target application.

resource_type: Option<String>

The resource type for the AWS CloudFormation blue/green deployment.

status: Option<String>

The status of an AWS CloudFormation blue/green deployment's target application.

target_id: Option<String>

The unique ID of a deployment target that has a type of CloudFormationTarget.

target_version_weight: Option<f64>

The percentage of production traffic that the target version of an AWS CloudFormation blue/green deployment receives.

Trait Implementations

impl Clone for CloudFormationTarget[src]

impl Debug for CloudFormationTarget[src]

impl Default for CloudFormationTarget[src]

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

impl PartialEq<CloudFormationTarget> for CloudFormationTarget[src]

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