Class: Aws::EC2::Types::SpotFleetTagSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::SpotFleetTagSpecification
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
The tags for a Spot Fleet resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_type ⇒ String
The type of resource.
-
#tags ⇒ Array<Types::Tag>
The tags.
Instance Attribute Details
#resource_type ⇒ String
The type of resource. Currently, the only resource type that is
supported is instance
. To tag the Spot Fleet request on creation,
use the TagSpecifications
parameter in
SpotFleetRequestConfigData
.
64487 64488 64489 64490 64491 64492 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 64487 class SpotFleetTagSpecification < Struct.new( :resource_type, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags.
64487 64488 64489 64490 64491 64492 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 64487 class SpotFleetTagSpecification < Struct.new( :resource_type, :tags) SENSITIVE = [] include Aws::Structure end |