Class: Aws::ConfigService::Types::ListTagsForResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ListTagsForResourceRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The maximum number of tags returned on each page.
-
#next_token ⇒ String
The
nextTokenstring returned on a previous page that you use to get the next page of results in a paginated response. -
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the resource for which to list the tags.
Instance Attribute Details
#limit ⇒ Integer
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, Config uses the default.
5803 5804 5805 5806 5807 5808 5809 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 5803 class ListTagsForResourceRequest < Struct.new( :resource_arn, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken string returned on a previous page that you use to
get the next page of results in a paginated response.
5803 5804 5805 5806 5807 5808 5809 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 5803 class ListTagsForResourceRequest < Struct.new( :resource_arn, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. The following resources are supported:
ConfigurationRecorderConfigRuleOrganizationConfigRuleConformancePackOrganizationConformancePackConfigurationAggregatorAggregationAuthorizationStoredQuery
5803 5804 5805 5806 5807 5808 5809 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 5803 class ListTagsForResourceRequest < Struct.new( :resource_arn, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |