Class: Aws::Transfer::Types::ListTagsForResourceRequest

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

Overview

Note:

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

{
  arn: "Arn", # required
  max_results: 1,
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

Requests the tags associated with a particular Amazon Resource Name (ARN). An ARN is an identifier for a specific AWS resource, such as a server, user, or role.

Returns:

  • (String)


903
904
905
906
907
908
# File 'lib/aws-sdk-transfer/types.rb', line 903

class ListTagsForResourceRequest < Struct.new(
  :arn,
  :max_results,
  :next_token)
  include Aws::Structure
end

#max_resultsInteger

Specifies the number of tags to return as a response to the ‘ListTagsForResource` request.

Returns:

  • (Integer)


903
904
905
906
907
908
# File 'lib/aws-sdk-transfer/types.rb', line 903

class ListTagsForResourceRequest < Struct.new(
  :arn,
  :max_results,
  :next_token)
  include Aws::Structure
end

#next_tokenString

When you request additional results from the ‘ListTagsForResource` operation, a `NextToken` parameter is returned in the input. You can then pass in a subsequent command to the `NextToken` parameter to continue listing additional tags.

Returns:

  • (String)


903
904
905
906
907
908
# File 'lib/aws-sdk-transfer/types.rb', line 903

class ListTagsForResourceRequest < Struct.new(
  :arn,
  :max_results,
  :next_token)
  include Aws::Structure
end