Class: Aws::ConfigService::Types::ResourceCount
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ResourceCount
- Defined in:
- gems/aws-sdk-configservice/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.
7886 7887 7888 7889 7890 7891 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7886 class ResourceCount < Struct.new( :resource_type, :count) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The resource type (for example, "AWS::EC2::Instance"
).
7886 7887 7888 7889 7890 7891 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7886 class ResourceCount < Struct.new( :resource_type, :count) SENSITIVE = [] include Aws::Structure end |