pub struct CodeDeployEventDetail {
    pub instance_group_id: Option<String>,
    pub instance_id: Option<String>,
    pub region: Option<String>,
    pub application: Option<String>,
    pub deployment_id: Option<String>,
    pub state: CodeDeployDeploymentState,
    pub deployment_group: Option<String>,
}

Fields

instance_group_id: Option<String>

InstanceGroupID is the ID of the instance group.

instance_id: Option<String>

InstanceID is the id of the instance. This field is non-empty only if the DetailType of the complete event is CodeDeployInstanceEventDetailType.

region: Option<String>

Region is the AWS region that the event originated from.

application: Option<String>

Application is the name of the CodeDeploy application.

deployment_id: Option<String>

DeploymentID is the id of the deployment.

state: CodeDeployDeploymentState

State is the new state of the deployment.

deployment_group: Option<String>

DeploymentGroup is the name of the deployment group.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.