[][src]Struct rusoto_appconfig::DeploymentEvent

pub struct DeploymentEvent {
    pub description: Option<String>,
    pub event_type: Option<String>,
    pub occurred_at: Option<f64>,
    pub triggered_by: Option<String>,
}

An object that describes a deployment event.

Fields

description: Option<String>

A description of the deployment event. Descriptions include, but are not limited to, the user account or the CloudWatch alarm ARN that initiated a rollback, the percentage of hosts that received the deployment, or in the case of an internal error, a recommendation to attempt a new deployment.

event_type: Option<String>

The type of deployment event. Deployment event types include the start, stop, or completion of a deployment; a percentage update; the start or stop of a bake period; the start or completion of a rollback.

occurred_at: Option<f64>

The date and time the event occurred.

triggered_by: Option<String>

The entity that triggered the deployment event. Events can be triggered by a user, AWS AppConfig, an Amazon CloudWatch alarm, or an internal error.

Trait Implementations

impl Clone for DeploymentEvent[src]

impl Debug for DeploymentEvent[src]

impl Default for DeploymentEvent[src]

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

impl PartialEq<DeploymentEvent> for DeploymentEvent[src]

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