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

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

Instance Attribute Details

#countInteger

The number of resources.

Returns:

  • (Integer)


8367
8368
8369
8370
8371
8372
# File 'lib/aws-sdk-configservice/types.rb', line 8367

class ResourceCount < Struct.new(
  :resource_type,
  :count)
  SENSITIVE = []
  include Aws::Structure
end

#resource_typeString

The resource type (for example, ‘“AWS::EC2::Instance”`).

Returns:

  • (String)


8367
8368
8369
8370
8371
8372
# File 'lib/aws-sdk-configservice/types.rb', line 8367

class ResourceCount < Struct.new(
  :resource_type,
  :count)
  SENSITIVE = []
  include Aws::Structure
end