Class: Aws::Athena::Types::ListTagsForResourceInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-athena/types.rb

Overview

Note:

When making an API call, you may pass ListTagsForResourceInput data as a hash:

{
  resource_arn: "AmazonResourceName", # required
  next_token: "Token",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of results to be returned per request that lists the tags for the workgroup resource.

Returns:

  • (Integer)


637
638
639
640
641
642
# File 'lib/aws-sdk-athena/types.rb', line 637

class ListTagsForResourceInput < Struct.new(
  :resource_arn,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

The token for the next set of results, or null if there are no additional results for this request, where the request lists the tags for the workgroup resource with the specified ARN.

Returns:

  • (String)


637
638
639
640
641
642
# File 'lib/aws-sdk-athena/types.rb', line 637

class ListTagsForResourceInput < Struct.new(
  :resource_arn,
  :next_token,
  :max_results)
  include Aws::Structure
end

#resource_arnString

Lists the tags for the workgroup resource with the specified ARN.

Returns:

  • (String)


637
638
639
640
641
642
# File 'lib/aws-sdk-athena/types.rb', line 637

class ListTagsForResourceInput < Struct.new(
  :resource_arn,
  :next_token,
  :max_results)
  include Aws::Structure
end