Class: Aws::Redshift::Types::TaggedResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::TaggedResource
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
A tag and its associated resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_name ⇒ String
The Amazon Resource Name (ARN) with which the tag is associated, for example:
arn:aws:redshift:us-east-2:123456789:cluster:t1
. -
#resource_type ⇒ String
The type of resource with which the tag is associated.
-
#tag ⇒ Types::Tag
The tag for the resource.
Instance Attribute Details
#resource_name ⇒ String
The Amazon Resource Name (ARN) with which the tag is associated, for
example: arn:aws:redshift:us-east-2:123456789:cluster:t1
.
12131 12132 12133 12134 12135 12136 12137 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 12131 class TaggedResource < Struct.new( :tag, :resource_name, :resource_type) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of resource with which the tag is associated. Valid resource types are:
Cluster
CIDR/IP
EC2 security group
Snapshot
Cluster security group
Subnet group
HSM connection
HSM certificate
Parameter group
For more information about Amazon Redshift resource types and constructing ARNs, go to Constructing an Amazon Redshift Amazon Resource Name (ARN) in the Amazon Redshift Cluster Management Guide.
12131 12132 12133 12134 12135 12136 12137 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 12131 class TaggedResource < Struct.new( :tag, :resource_name, :resource_type) SENSITIVE = [] include Aws::Structure end |
#tag ⇒ Types::Tag
The tag for the resource.
12131 12132 12133 12134 12135 12136 12137 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 12131 class TaggedResource < Struct.new( :tag, :resource_name, :resource_type) SENSITIVE = [] include Aws::Structure end |