Class: Aws::CodeDeploy::Types::ListDeploymentTargetsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ListDeploymentTargetsInput
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The unique ID of a deployment.
-
#next_token ⇒ String
A token identifier returned from the previous
ListDeploymentTargets
call. -
#target_filters ⇒ Hash<String,Array<String>>
A key used to filter the returned targets.
Instance Attribute Details
#deployment_id ⇒ String
The unique ID of a deployment.
3700 3701 3702 3703 3704 3705 3706 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3700 class ListDeploymentTargetsInput < Struct.new( :deployment_id, :next_token, :target_filters) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token identifier returned from the previous
ListDeploymentTargets
call. It can be used to return the next set
of deployment targets in the list.
3700 3701 3702 3703 3704 3705 3706 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3700 class ListDeploymentTargetsInput < Struct.new( :deployment_id, :next_token, :target_filters) SENSITIVE = [] include Aws::Structure end |
#target_filters ⇒ Hash<String,Array<String>>
A key used to filter the returned targets. The two valid values are:
TargetStatus
- ATargetStatus
filter string can beFailed
,InProgress
,Pending
,Ready
,Skipped
,Succeeded
, orUnknown
.ServerInstanceLabel
- AServerInstanceLabel
filter string can beBlue
orGreen
.
3700 3701 3702 3703 3704 3705 3706 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3700 class ListDeploymentTargetsInput < Struct.new( :deployment_id, :next_token, :target_filters) SENSITIVE = [] include Aws::Structure end |