Class: Aws::ConfigService::Types::ResourceCount
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ResourceCount
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
An object that contains the resource type and the number of resources.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#count ⇒ Integer
The number of resources.
-
#resource_type ⇒ String
The resource type (for example, ‘“AWS::EC2::Instance”`).
Instance Attribute Details
#count ⇒ Integer
The number of resources.
7885 7886 7887 7888 7889 7890 |
# File 'lib/aws-sdk-configservice/types.rb', line 7885 class ResourceCount < Struct.new( :resource_type, :count) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The resource type (for example, ‘“AWS::EC2::Instance”`).
7885 7886 7887 7888 7889 7890 |
# File 'lib/aws-sdk-configservice/types.rb', line 7885 class ResourceCount < Struct.new( :resource_type, :count) SENSITIVE = [] include Aws::Structure end |