Class: Aws::ConfigService::Types::GroupedResourceCount
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::GroupedResourceCount
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
The count of resources that are grouped by the group name.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_name ⇒ String
The name of the group that can be region, account ID, or resource type.
-
#resource_count ⇒ Integer
The number of resources in the group.
Instance Attribute Details
#group_name ⇒ String
The name of the group that can be region, account ID, or resource
type. For example, region1, region2 if the region was chosen as
GroupByKey
.
5243 5244 5245 5246 5247 5248 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 5243 class GroupedResourceCount < Struct.new( :group_name, :resource_count) SENSITIVE = [] include Aws::Structure end |
#resource_count ⇒ Integer
The number of resources in the group.
5243 5244 5245 5246 5247 5248 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 5243 class GroupedResourceCount < Struct.new( :group_name, :resource_count) SENSITIVE = [] include Aws::Structure end |