Class: Aws::ConfigService::Types::ComplianceContributorCount

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-configservice/types.rb

Overview

The number of AWS resources or AWS Config rules responsible for the current compliance of the item, up to a maximum number.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cap_exceededBoolean

Indicates whether the maximum count is reached.

Returns:

  • (Boolean)


772
773
774
775
776
777
# File 'lib/aws-sdk-configservice/types.rb', line 772

class ComplianceContributorCount < Struct.new(
  :capped_count,
  :cap_exceeded)
  SENSITIVE = []
  include Aws::Structure
end

#capped_countInteger

The number of AWS resources or AWS Config rules responsible for the current compliance of the item.

Returns:

  • (Integer)


772
773
774
775
776
777
# File 'lib/aws-sdk-configservice/types.rb', line 772

class ComplianceContributorCount < Struct.new(
  :capped_count,
  :cap_exceeded)
  SENSITIVE = []
  include Aws::Structure
end