Class: Aws::DAX::Types::ListTagsRequest

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

Overview

Note:

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

{
  resource_name: "String", # required
  next_token: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token.

Returns:

  • (String)


981
982
983
984
985
# File 'lib/aws-sdk-dax/types.rb', line 981

class ListTagsRequest < Struct.new(
  :resource_name,
  :next_token)
  include Aws::Structure
end

#resource_nameString

The name of the DAX resource to which the tags belong.

Returns:

  • (String)


981
982
983
984
985
# File 'lib/aws-sdk-dax/types.rb', line 981

class ListTagsRequest < Struct.new(
  :resource_name,
  :next_token)
  include Aws::Structure
end