Class: Aws::ECS::Types::EBSTagSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::EBSTagSpecification
- Includes:
- Structure
- Defined in:
- 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.
4738 4739 4740 4741 4742 4743 4744 |
# File 'lib/aws-sdk-ecs/types.rb', line 4738 class EBSTagSpecification < Struct.new( :resource_type, :tags, :propagate_tags) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of volume resource.
4738 4739 4740 4741 4742 4743 4744 |
# File 'lib/aws-sdk-ecs/types.rb', line 4738 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.
4738 4739 4740 4741 4742 4743 4744 |
# File 'lib/aws-sdk-ecs/types.rb', line 4738 class EBSTagSpecification < Struct.new( :resource_type, :tags, :propagate_tags) SENSITIVE = [] include Aws::Structure end |