Class: Aws::IoT::Types::ListTagsForResourceRequest

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

Overview

Note:

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

{
  resource_arn: "ResourceArn", # required
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

The token to retrieve the next set of results.

Returns:

  • (String)


7122
7123
7124
7125
7126
# File 'lib/aws-sdk-iot/types.rb', line 7122

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

#resource_arnString

The ARN of the resource.

Returns:

  • (String)


7122
7123
7124
7125
7126
# File 'lib/aws-sdk-iot/types.rb', line 7122

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