Class: Aws::ConfigService::Types::GetDiscoveredResourceCountsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::GetDiscoveredResourceCountsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The maximum number of ResourceCount objects returned on each page.
-
#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.
-
#resource_types ⇒ Array<String>
The comma-separated list that specifies the resource types that you want Config to return (for example, ‘“AWS::EC2::Instance”`, `“AWS::IAM::User”`).
Instance Attribute Details
#limit ⇒ Integer
The maximum number of ResourceCount objects returned on each page. The default is 100. You cannot specify a number greater than 100. If you specify 0, Config uses the default.
4490 4491 4492 4493 4494 4495 4496 |
# File 'lib/aws-sdk-configservice/types.rb', line 4490 class GetDiscoveredResourceCountsRequest < Struct.new( :resource_types, :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.
4490 4491 4492 4493 4494 4495 4496 |
# File 'lib/aws-sdk-configservice/types.rb', line 4490 class GetDiscoveredResourceCountsRequest < Struct.new( :resource_types, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#resource_types ⇒ Array<String>
The comma-separated list that specifies the resource types that you want Config to return (for example, ‘“AWS::EC2::Instance”`, `“AWS::IAM::User”`).
If a value for ‘resourceTypes` is not specified, Config returns all resource types that Config is recording in the region for your account.
<note markdown=“1”> If the configuration recorder is turned off, Config returns an empty list of ResourceCount objects. If the configuration recorder is not recording a specific resource type (for example, S3 buckets), that resource type is not returned in the list of ResourceCount objects.
</note>
4490 4491 4492 4493 4494 4495 4496 |
# File 'lib/aws-sdk-configservice/types.rb', line 4490 class GetDiscoveredResourceCountsRequest < Struct.new( :resource_types, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |