Class: Aws::Athena::Types::TagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::TagResourceInput
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Note:
When making an API call, you may pass TagResourceInput data as a hash:
{
resource_arn: "AmazonResourceName", # required
tags: [ # required
{
key: "TagKey",
value: "TagValue",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
Specifies the ARN of the Athena resource (workgroup or data catalog) to which tags are to be added.
-
#tags ⇒ Array<Types::Tag>
A collection of one or more tags, separated by commas, to be added to an Athena workgroup or data catalog resource.
Instance Attribute Details
#resource_arn ⇒ String
Specifies the ARN of the Athena resource (workgroup or data catalog) to which tags are to be added.
2825 2826 2827 2828 2829 2830 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2825 class TagResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A collection of one or more tags, separated by commas, to be added to an Athena workgroup or data catalog resource.
2825 2826 2827 2828 2829 2830 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2825 class TagResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |