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)


7858
7859
7860
7861
7862
7863
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7858

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

#resource_typeString

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

Returns:

  • (String)


7858
7859
7860
7861
7862
7863
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7858

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