pub struct BatchGetDeploymentTargetsOutput {
pub deployment_targets: Option<Vec<DeploymentTarget>>,
}
Fields§
§deployment_targets: Option<Vec<DeploymentTarget>>
A list of target objects for a deployment. Each target object contains details about the target, such as its status and lifecycle events. The type of the target objects depends on the deployment' compute platform.
-
EC2/On-premises: Each target object is an EC2 or on-premises instance.
-
AWS Lambda: The target object is a specific version of an AWS Lambda function.
-
Amazon ECS: The target object is an Amazon ECS service.
-
CloudFormation: The target object is an AWS CloudFormation blue/green deployment.
Trait Implementations§
Source§impl Clone for BatchGetDeploymentTargetsOutput
impl Clone for BatchGetDeploymentTargetsOutput
Source§fn clone(&self) -> BatchGetDeploymentTargetsOutput
fn clone(&self) -> BatchGetDeploymentTargetsOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for BatchGetDeploymentTargetsOutput
impl Default for BatchGetDeploymentTargetsOutput
Source§fn default() -> BatchGetDeploymentTargetsOutput
fn default() -> BatchGetDeploymentTargetsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchGetDeploymentTargetsOutput
impl<'de> Deserialize<'de> for BatchGetDeploymentTargetsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BatchGetDeploymentTargetsOutput
impl PartialEq for BatchGetDeploymentTargetsOutput
Source§fn eq(&self, other: &BatchGetDeploymentTargetsOutput) -> bool
fn eq(&self, other: &BatchGetDeploymentTargetsOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchGetDeploymentTargetsOutput
Auto Trait Implementations§
impl Freeze for BatchGetDeploymentTargetsOutput
impl RefUnwindSafe for BatchGetDeploymentTargetsOutput
impl Send for BatchGetDeploymentTargetsOutput
impl Sync for BatchGetDeploymentTargetsOutput
impl Unpin for BatchGetDeploymentTargetsOutput
impl UnwindSafe for BatchGetDeploymentTargetsOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more