Class: Aws::CodeDeploy::Types::BatchGetDeploymentTargetsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::BatchGetDeploymentTargetsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The unique ID of a deployment.
-
#target_ids ⇒ Array<String>
The unique IDs of the deployment targets.
Instance Attribute Details
#deployment_id ⇒ String
The unique ID of a deployment.
450 451 452 453 454 455 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 450 class BatchGetDeploymentTargetsInput < Struct.new( :deployment_id, :target_ids) SENSITIVE = [] include Aws::Structure end |
#target_ids ⇒ Array<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 Amazon EC2 or on-premises instances IDs, and their target type is ‘instanceTarget`.
-
For deployments that use the 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 is `ecsTarget`.
-
For deployments that are deployed with CloudFormation, the target IDs are CloudFormation stack IDs. Their target type is ‘cloudFormationTarget`.
450 451 452 453 454 455 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 450 class BatchGetDeploymentTargetsInput < Struct.new( :deployment_id, :target_ids) SENSITIVE = [] include Aws::Structure end |