Class: Aws::ConfigService::Types::ListTagsForResourceRequest

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

Overview

Note:

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

{
  resource_arn: "AmazonResourceName", # required
  limit: 1,
  next_token: "NextToken",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

The maximum number of tags returned on each page. The limit maximum is 50. You cannot specify a number greater than 50. If you specify 0, AWS Config uses the default.

Returns:

  • (Integer)


5381
5382
5383
5384
5385
5386
5387
# File 'lib/aws-sdk-configservice/types.rb', line 5381

class ListTagsForResourceRequest < Struct.new(
  :resource_arn,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The ‘nextToken` string returned on a previous page that you use to get the next page of results in a paginated response.

Returns:

  • (String)


5381
5382
5383
5384
5385
5386
5387
# File 'lib/aws-sdk-configservice/types.rb', line 5381

class ListTagsForResourceRequest < Struct.new(
  :resource_arn,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#resource_arnString

The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. Currently, the supported resources are ‘ConfigRule`, `ConfigurationAggregator` and `AggregatorAuthorization`.

Returns:

  • (String)


5381
5382
5383
5384
5385
5386
5387
# File 'lib/aws-sdk-configservice/types.rb', line 5381

class ListTagsForResourceRequest < Struct.new(
  :resource_arn,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end