Class: Aws::CodeDeploy::Types::TargetInstances
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::TargetInstances
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
When making an API call, you may pass TargetInstances data as a hash:
{
tag_filters: [
{
key: "Key",
value: "Value",
type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
},
],
auto_scaling_groups: ["AutoScalingGroupName"],
ec2_tag_set: {
ec2_tag_set_list: [
[
{
key: "Key",
value: "Value",
type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
},
],
],
},
}
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 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.
5524 5525 5526 5527 5528 5529 5530 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 5524 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 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
.
5524 5525 5526 5527 5528 5529 5530 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 5524 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
.
5524 5525 5526 5527 5528 5529 5530 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 5524 class TargetInstances < Struct.new( :tag_filters, :auto_scaling_groups, :ec2_tag_set) SENSITIVE = [] include Aws::Structure end |