pub struct DeploymentTarget {
pub cloud_formation_target: Option<CloudFormationTarget>,
pub deployment_target_type: Option<String>,
pub ecs_target: Option<ECSTarget>,
pub instance_target: Option<InstanceTarget>,
pub lambda_target: Option<LambdaTarget>,
}
Expand description
Information about the deployment target.
Fields§
§cloud_formation_target: Option<CloudFormationTarget>
§deployment_target_type: Option<String>
The deployment type that is specific to the deployment's compute platform or deployments initiated by a CloudFormation stack update.
ecs_target: Option<ECSTarget>
Information about the target for a deployment that uses the Amazon ECS compute platform.
instance_target: Option<InstanceTarget>
Information about the target for a deployment that uses the EC2/On-premises compute platform.
lambda_target: Option<LambdaTarget>
Information about the target for a deployment that uses the AWS Lambda compute platform.
Trait Implementations§
Source§impl Clone for DeploymentTarget
impl Clone for DeploymentTarget
Source§fn clone(&self) -> DeploymentTarget
fn clone(&self) -> DeploymentTarget
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 Debug for DeploymentTarget
impl Debug for DeploymentTarget
Source§impl Default for DeploymentTarget
impl Default for DeploymentTarget
Source§fn default() -> DeploymentTarget
fn default() -> DeploymentTarget
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentTarget
impl<'de> Deserialize<'de> for DeploymentTarget
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 DeploymentTarget
impl PartialEq for DeploymentTarget
impl StructuralPartialEq for DeploymentTarget
Auto Trait Implementations§
impl Freeze for DeploymentTarget
impl RefUnwindSafe for DeploymentTarget
impl Send for DeploymentTarget
impl Sync for DeploymentTarget
impl Unpin for DeploymentTarget
impl UnwindSafe for DeploymentTarget
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