Class: Aws::AutoScaling::Types::TagDescription

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-autoscaling/types.rb

Overview

Describes a tag for an Auto Scaling group.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag key.

Returns:

  • (String)


4464
4465
4466
4467
4468
4469
4470
4471
# File 'lib/aws-sdk-autoscaling/types.rb', line 4464

class TagDescription < Struct.new(
  :resource_id,
  :resource_type,
  :key,
  :value,
  :propagate_at_launch)
  include Aws::Structure
end

#propagate_at_launchBoolean

Determines whether the tag is added to new instances as they are launched in the group.

Returns:

  • (Boolean)


4464
4465
4466
4467
4468
4469
4470
4471
# File 'lib/aws-sdk-autoscaling/types.rb', line 4464

class TagDescription < Struct.new(
  :resource_id,
  :resource_type,
  :key,
  :value,
  :propagate_at_launch)
  include Aws::Structure
end

#resource_idString

The name of the group.

Returns:

  • (String)


4464
4465
4466
4467
4468
4469
4470
4471
# File 'lib/aws-sdk-autoscaling/types.rb', line 4464

class TagDescription < Struct.new(
  :resource_id,
  :resource_type,
  :key,
  :value,
  :propagate_at_launch)
  include Aws::Structure
end

#resource_typeString

The type of resource. The only supported value is ‘auto-scaling-group`.

Returns:

  • (String)


4464
4465
4466
4467
4468
4469
4470
4471
# File 'lib/aws-sdk-autoscaling/types.rb', line 4464

class TagDescription < Struct.new(
  :resource_id,
  :resource_type,
  :key,
  :value,
  :propagate_at_launch)
  include Aws::Structure
end

#valueString

The tag value.

Returns:

  • (String)


4464
4465
4466
4467
4468
4469
4470
4471
# File 'lib/aws-sdk-autoscaling/types.rb', line 4464

class TagDescription < Struct.new(
  :resource_id,
  :resource_type,
  :key,
  :value,
  :propagate_at_launch)
  include Aws::Structure
end