pub struct CodePipelineCloudWatchEvent {
pub version: Option<String>,
pub id: Option<String>,
pub detail_type: Option<String>,
pub source: Option<String>,
pub account_id: Option<String>,
pub time: DateTime<Utc>,
pub region: Option<String>,
pub resources: Vec<String>,
pub detail: CodePipelineEventDetail,
}Expand description
CodePipelineEvent is documented at: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/EventTypes.html#codepipeline_event_type
Fields
version: Option<String>Version is the version of the event’s schema.
id: Option<String>ID is the GUID of this event.
detail_type: Option<String>DetailType informs the schema of the Detail field. For deployment state-change events, the value should be equal to CodePipelineDeploymentEventDetailType. For instance state-change events, the value should be equal to CodePipelineInstanceEventDetailType.
source: Option<String>Source should be equal to CodePipelineEventSource.
account_id: Option<String>AccountID is the id of the AWS account from which the event originated.
time: DateTime<Utc>Time is the event’s timestamp.
region: Option<String>Region is the AWS region from which the event originated.
resources: Vec<String>Resources is a list of ARNs of CodePipeline applications and deployment groups that this event pertains to.
detail: CodePipelineEventDetailDetail contains information specific to a deployment event.
Trait Implementations
sourceimpl Clone for CodePipelineCloudWatchEvent
impl Clone for CodePipelineCloudWatchEvent
sourcefn clone(&self) -> CodePipelineCloudWatchEvent
fn clone(&self) -> CodePipelineCloudWatchEvent
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more