Class: Aws::ResourceExplorer2::Types::ResourceCount
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceExplorer2::Types::ResourceCount
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resourceexplorer2/types.rb
Overview
Information about the number of results that match the query. At this time, Amazon Web Services Resource Explorer doesn’t count more than 1,000 matches for any query. This structure provides information about whether the query exceeded this limit.
This field is included in every page when you paginate the results.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#complete ⇒ Boolean
Indicates whether the ‘TotalResources` value represents an exhaustive count of search results.
-
#total_resources ⇒ Integer
The number of resources that match the search query.
Instance Attribute Details
#complete ⇒ Boolean
Indicates whether the ‘TotalResources` value represents an exhaustive count of search results.
-
If ‘True`, it indicates that the search was exhaustive. Every resource that matches the query was counted.
-
If ‘False`, then the search reached the limit of 1,000 matching results, and stopped counting.
1283 1284 1285 1286 1287 1288 |
# File 'lib/aws-sdk-resourceexplorer2/types.rb', line 1283 class ResourceCount < Struct.new( :complete, :total_resources) SENSITIVE = [] include Aws::Structure end |
#total_resources ⇒ Integer
The number of resources that match the search query. This value can’t exceed 1,000. If there are more than 1,000 resources that match the query, then only 1,000 are counted and the ‘Complete` field is set to false. We recommend that you refine your query to return a smaller number of results.
1283 1284 1285 1286 1287 1288 |
# File 'lib/aws-sdk-resourceexplorer2/types.rb', line 1283 class ResourceCount < Struct.new( :complete, :total_resources) SENSITIVE = [] include Aws::Structure end |