Class: Aws::CodeDeploy::Types::BatchGetDeploymentTargetsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::BatchGetDeploymentTargetsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_targets ⇒ Array<Types::DeploymentTarget>
A list of target objects for a deployment.
Instance Attribute Details
#deployment_targets ⇒ Array<Types::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 Amazon EC2 or on-premises instance.
-
Lambda: The target object is a specific version of an Lambda function.
-
**Amazon ECS**: The target object is an Amazon ECS service.
-
CloudFormation: The target object is an CloudFormation blue/green deployment.
477 478 479 480 481 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 477 class BatchGetDeploymentTargetsOutput < Struct.new( :deployment_targets) SENSITIVE = [] include Aws::Structure end |