Class: Aws::ConfigService::Types::ConformancePackComplianceFilters
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ConformancePackComplianceFilters
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Filters the conformance pack by compliance types and Config rule names.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compliance_type ⇒ String
Filters the results by compliance.
-
#config_rule_names ⇒ Array<String>
Filters the results by Config rule names.
Instance Attribute Details
#compliance_type ⇒ String
Filters the results by compliance.
The allowed values are COMPLIANT
and NON_COMPLIANT
.
INSUFFICIENT_DATA
is not supported.
1625 1626 1627 1628 1629 1630 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1625 class ConformancePackComplianceFilters < Struct.new( :config_rule_names, :compliance_type) SENSITIVE = [] include Aws::Structure end |
#config_rule_names ⇒ Array<String>
Filters the results by Config rule names.
1625 1626 1627 1628 1629 1630 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1625 class ConformancePackComplianceFilters < Struct.new( :config_rule_names, :compliance_type) SENSITIVE = [] include Aws::Structure end |