Class: Aws::ECS::Types::EBSTagSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::EBSTagSpecification
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The tag specifications of an Amazon EBS volume.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#propagate_tags ⇒ String
Determines whether to propagate the tags from the task definition to the Amazon EBS volume.
-
#resource_type ⇒ String
The type of volume resource.
-
#tags ⇒ Array<Types::Tag>
The tags applied to this Amazon EBS volume.
Instance Attribute Details
#propagate_tags ⇒ String
Determines whether to propagate the tags from the task definition to
the Amazon EBS volume. Tags can only propagate to a SERVICE
specified in
ServiceVolumeConfiguration
. If no value is
specified, the tags aren't
propagated.
4748 4749 4750 4751 4752 4753 4754 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4748 class EBSTagSpecification < Struct.new( :resource_type, :tags, :propagate_tags) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of volume resource.
4748 4749 4750 4751 4752 4753 4754 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4748 class EBSTagSpecification < Struct.new( :resource_type, :tags, :propagate_tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags applied to this Amazon EBS volume. AmazonECSCreated
and
AmazonECSManaged
are reserved tags that can't be used.
4748 4749 4750 4751 4752 4753 4754 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4748 class EBSTagSpecification < Struct.new( :resource_type, :tags, :propagate_tags) SENSITIVE = [] include Aws::Structure end |