Class: Aws::ConfigService::Types::ResourceCount

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#countInteger

The number of resources.

Returns:

  • (Integer)


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_typeString

The resource type (for example, "AWS::EC2::Instance").

Returns:

  • (String)


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