Class: Aws::ConfigService::Types::ConformancePackRuleCompliance

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

Overview

Compliance information of one or more AWS Config rules within a conformance pack. You can filter using AWS Config rule names and compliance types.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#compliance_typeString

Compliance of the AWS Config rule.

The allowed values are ‘COMPLIANT`, `NON_COMPLIANT`, and `INSUFFICIENT_DATA`.

Returns:

  • (String)


1807
1808
1809
1810
1811
1812
1813
# File 'lib/aws-sdk-configservice/types.rb', line 1807

class ConformancePackRuleCompliance < Struct.new(
  :config_rule_name,
  :compliance_type,
  :controls)
  SENSITIVE = []
  include Aws::Structure
end

#config_rule_nameString

Name of the config rule.

Returns:

  • (String)


1807
1808
1809
1810
1811
1812
1813
# File 'lib/aws-sdk-configservice/types.rb', line 1807

class ConformancePackRuleCompliance < Struct.new(
  :config_rule_name,
  :compliance_type,
  :controls)
  SENSITIVE = []
  include Aws::Structure
end

#controlsArray<String>

Controls for the conformance pack. A control is a process to prevent or detect problems while meeting objectives. A control can align with a specific compliance regime or map to internal controls defined by an organization.

Returns:

  • (Array<String>)


1807
1808
1809
1810
1811
1812
1813
# File 'lib/aws-sdk-configservice/types.rb', line 1807

class ConformancePackRuleCompliance < Struct.new(
  :config_rule_name,
  :compliance_type,
  :controls)
  SENSITIVE = []
  include Aws::Structure
end