Class: Aws::Route53::Types::ResourceTagSet
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::ResourceTagSet
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
A complex type containing a resource and its associated tags.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_id ⇒ String
The ID for the specified resource.
-
#resource_type ⇒ String
The type of the resource.
-
#tags ⇒ Array<Types::Tag>
The tags associated with the specified resource.
Instance Attribute Details
#resource_id ⇒ String
The ID for the specified resource.
6794 6795 6796 6797 6798 6799 6800 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 6794 class ResourceTagSet < Struct.new( :resource_type, :resource_id, :tags) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of the resource.
The resource type for health checks is
healthcheck
.The resource type for hosted zones is
hostedzone
.
6794 6795 6796 6797 6798 6799 6800 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 6794 class ResourceTagSet < Struct.new( :resource_type, :resource_id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags associated with the specified resource.
6794 6795 6796 6797 6798 6799 6800 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 6794 class ResourceTagSet < Struct.new( :resource_type, :resource_id, :tags) SENSITIVE = [] include Aws::Structure end |