Class: Aws::CodeDeploy::Types::TargetInstances
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::TargetInstances
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Information about the instances to be used in the replacement environment in a blue/green deployment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaling_groups ⇒ Array<String>
The names of one or more Auto Scaling groups to identify a replacement environment for a blue/green deployment.
-
#ec2_tag_set ⇒ Types::EC2TagSet
Information about the groups of Amazon EC2 instance tags that an instance must be identified by in order for it to be included in the replacement environment for a blue/green deployment.
-
#tag_filters ⇒ Array<Types::EC2TagFilter>
The tag filter key, type, and value used to identify Amazon EC2 instances in a replacement environment for a blue/green deployment.
Instance Attribute Details
#auto_scaling_groups ⇒ Array<String>
The names of one or more Auto Scaling groups to identify a replacement environment for a blue/green deployment.
4759 4760 4761 4762 4763 4764 4765 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4759 class TargetInstances < Struct.new( :tag_filters, :auto_scaling_groups, :ec2_tag_set) SENSITIVE = [] include Aws::Structure end |
#ec2_tag_set ⇒ Types::EC2TagSet
Information about the groups of Amazon EC2 instance tags that an instance must be identified by in order for it to be included in the replacement environment for a blue/green deployment. Cannot be used in the same call as ‘tagFilters`.
4759 4760 4761 4762 4763 4764 4765 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4759 class TargetInstances < Struct.new( :tag_filters, :auto_scaling_groups, :ec2_tag_set) SENSITIVE = [] include Aws::Structure end |
#tag_filters ⇒ Array<Types::EC2TagFilter>
The tag filter key, type, and value used to identify Amazon EC2 instances in a replacement environment for a blue/green deployment. Cannot be used in the same call as ‘ec2TagSet`.
4759 4760 4761 4762 4763 4764 4765 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4759 class TargetInstances < Struct.new( :tag_filters, :auto_scaling_groups, :ec2_tag_set) SENSITIVE = [] include Aws::Structure end |