Struct aws_sdk_codedeploy::input::BatchGetDeploymentTargetsInput [−][src]
#[non_exhaustive]pub struct BatchGetDeploymentTargetsInput {
pub deployment_id: Option<String>,
pub target_ids: Option<Vec<String>>,
}
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 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
. Their target type is: ecsTarget
. -
For deployments that are deployed with AWS CloudFormation, the target IDs are CloudFormation stack IDs. Their target type is
cloudFormationTarget
.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchGetDeploymentTargets, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchGetDeploymentTargets, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<BatchGetDeploymentTargets
>
Creates a new builder-style object to manufacture BatchGetDeploymentTargetsInput
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 Send for BatchGetDeploymentTargetsInput
impl Sync for BatchGetDeploymentTargetsInput
impl Unpin for BatchGetDeploymentTargetsInput
impl UnwindSafe for BatchGetDeploymentTargetsInput
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