Class: Aws::DynamoDB::Types::ListTagsOfResourceInput

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

Overview

Note:

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

{
  resource_arn: "ResourceArnString", # required
  next_token: "NextTokenString",
}

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

An optional string that, if supplied, must be copied from the output of a previous call to ListTagOfResource. When provided in this manner, this API fetches the next page of results.

Returns:

  • (String)


4047
4048
4049
4050
4051
# File 'lib/aws-sdk-dynamodb/types.rb', line 4047

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

#resource_arnString

The Amazon DynamoDB resource with tags to be listed. This value is an Amazon Resource Name (ARN).

Returns:

  • (String)


4047
4048
4049
4050
4051
# File 'lib/aws-sdk-dynamodb/types.rb', line 4047

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