Class: Aws::AutoScaling::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::Tag
- Defined in:
- gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb
Overview
Describes a tag for an Auto Scaling group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The tag key.
-
#propagate_at_launch ⇒ Boolean
Determines whether the tag is added to new instances as they are launched in the group.
-
#resource_id ⇒ String
The name of the Auto Scaling group.
-
#resource_type ⇒ String
The type of resource.
-
#value ⇒ String
The tag value.
Instance Attribute Details
#key ⇒ String
The tag key.
7211 7212 7213 7214 7215 7216 7217 7218 7219 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 7211 class Tag < Struct.new( :resource_id, :resource_type, :key, :value, :propagate_at_launch) SENSITIVE = [] include Aws::Structure end |
#propagate_at_launch ⇒ Boolean
Determines whether the tag is added to new instances as they are launched in the group.
7211 7212 7213 7214 7215 7216 7217 7218 7219 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 7211 class Tag < Struct.new( :resource_id, :resource_type, :key, :value, :propagate_at_launch) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
The name of the Auto Scaling group.
7211 7212 7213 7214 7215 7216 7217 7218 7219 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 7211 class Tag < Struct.new( :resource_id, :resource_type, :key, :value, :propagate_at_launch) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of resource. The only supported value is
auto-scaling-group
.
7211 7212 7213 7214 7215 7216 7217 7218 7219 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 7211 class Tag < Struct.new( :resource_id, :resource_type, :key, :value, :propagate_at_launch) SENSITIVE = [] include Aws::Structure end |