Struct aws_sdk_codedeploy::model::CloudFormationTarget [−][src]
#[non_exhaustive]pub struct CloudFormationTarget {
pub deployment_id: Option<String>,
pub target_id: Option<String>,
pub last_updated_at: Option<DateTime>,
pub lifecycle_events: Option<Vec<LifecycleEvent>>,
pub status: Option<TargetStatus>,
pub resource_type: Option<String>,
pub target_version_weight: f64,
}
Expand description
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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.deployment_id: Option<String>
The unique ID of an AWS CloudFormation blue/green deployment.
target_id: Option<String>
The unique ID of a deployment target that has a type
of CloudFormationTarget
.
last_updated_at: Option<DateTime>
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.
status: Option<TargetStatus>
The status of an AWS CloudFormation blue/green deployment's target application.
resource_type: Option<String>
The resource type for the AWS CloudFormation blue/green deployment.
target_version_weight: f64
The percentage of production traffic that the target version of an AWS CloudFormation blue/green deployment receives.
Implementations
The unique ID of an AWS CloudFormation blue/green deployment.
The unique ID of a deployment target that has a type
of CloudFormationTarget
.
The date and time when the target application was updated by an AWS CloudFormation blue/green deployment.
The lifecycle events of the AWS CloudFormation blue/green deployment to this target application.
The status of an AWS CloudFormation blue/green deployment's target application.
The resource type for the AWS CloudFormation blue/green deployment.
The percentage of production traffic that the target version of an AWS CloudFormation blue/green deployment receives.
Creates a new builder-style object to manufacture CloudFormationTarget
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CloudFormationTarget
impl Send for CloudFormationTarget
impl Sync for CloudFormationTarget
impl Unpin for CloudFormationTarget
impl UnwindSafe for CloudFormationTarget
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more