Class: Aws::ConfigService::Types::GetDiscoveredResourceCountsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::GetDiscoveredResourceCountsResponse
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The string that you use in a subsequent request to get the next page of results in a paginated response.
-
#resource_counts ⇒ Array<Types::ResourceCount>
The list of
ResourceCount
objects. -
#total_discovered_resources ⇒ Integer
The total number of resources that AWS Config is recording in the region for your account.
Instance Attribute Details
#next_token ⇒ String
The string that you use in a subsequent request to get the next page of results in a paginated response.
4388 4389 4390 4391 4392 4393 4394 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4388 class GetDiscoveredResourceCountsResponse < Struct.new( :total_discovered_resources, :resource_counts, :next_token) SENSITIVE = [] include Aws::Structure end |
#resource_counts ⇒ Array<Types::ResourceCount>
The list of ResourceCount
objects. Each object is listed in
descending order by the number of resources.
4388 4389 4390 4391 4392 4393 4394 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4388 class GetDiscoveredResourceCountsResponse < Struct.new( :total_discovered_resources, :resource_counts, :next_token) SENSITIVE = [] include Aws::Structure end |
#total_discovered_resources ⇒ Integer
The total number of resources that AWS Config is recording in the region for your account. If you specify resource types in the request, AWS Config returns only the total number of resources for those resource types.
Example
AWS Config is recording three resource types in the US East (Ohio) Region for your account: 25 EC2 instances, 20 IAM users, and 15 S3 buckets, for a total of 60 resources.
You make a call to the
GetDiscoveredResourceCounts
action and specify the resource type,"AWS::EC2::Instances"
, in the request.AWS Config returns 25 for
totalDiscoveredResources
.
4388 4389 4390 4391 4392 4393 4394 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4388 class GetDiscoveredResourceCountsResponse < Struct.new( :total_discovered_resources, :resource_counts, :next_token) SENSITIVE = [] include Aws::Structure end |