pub struct BatchGetDeploymentTargetsInput {
pub deployment_id: Option<String>,
pub target_ids: Option<Vec<String>>,
}
Fields§
§deployment_id: Option<String>
The unique ID of a deployment.
target_ids: Option<Vec<String>>
The unique IDs of the deployment targets. The compute platform of the deployment determines the type of the targets and their formats. The maximum number of deployment target IDs you can specify is 25.
-
For deployments that use the EC2/On-premises compute platform, the target IDs are EC2 or on-premises instances IDs, and their target type is
instanceTarget
. -
For deployments that use the AWS Lambda compute platform, the target IDs are the names of Lambda functions, and their target type is
instanceTarget
. -
For deployments that use the Amazon ECS compute platform, the target IDs are pairs of Amazon ECS clusters and services specified using the format
<clustername>:<servicename>
. Their target type isecsTarget
. -
For deployments that are deployed with AWS CloudFormation, the target IDs are CloudFormation stack IDs. Their target type is
cloudFormationTarget
.
Trait Implementations§
Source§impl Clone for BatchGetDeploymentTargetsInput
impl Clone for BatchGetDeploymentTargetsInput
Source§fn clone(&self) -> BatchGetDeploymentTargetsInput
fn clone(&self) -> BatchGetDeploymentTargetsInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for BatchGetDeploymentTargetsInput
impl Default for BatchGetDeploymentTargetsInput
Source§fn default() -> BatchGetDeploymentTargetsInput
fn default() -> BatchGetDeploymentTargetsInput
Source§impl PartialEq for BatchGetDeploymentTargetsInput
impl PartialEq for BatchGetDeploymentTargetsInput
Source§fn eq(&self, other: &BatchGetDeploymentTargetsInput) -> bool
fn eq(&self, other: &BatchGetDeploymentTargetsInput) -> bool
self
and other
values to be equal, and is used by ==
.