Class: Aws::ConfigService::Types::ConformancePackEvaluationFilters
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ConformancePackEvaluationFilters
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Filters a conformance pack by Config rule names, compliance types, Amazon Web Services resource types, and resource IDs.
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.
-
#resource_ids ⇒ Array<String>
Filters the results by resource IDs.
-
#resource_type ⇒ String
Filters the results by the resource type (for example,
"AWS::EC2::Instance"
).
Instance Attribute Details
#compliance_type ⇒ String
Filters the results by compliance.
The allowed values are COMPLIANT
and NON_COMPLIANT
.
INSUFFICIENT_DATA
is not supported.
1801 1802 1803 1804 1805 1806 1807 1808 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1801 class ConformancePackEvaluationFilters < Struct.new( :config_rule_names, :compliance_type, :resource_type, :resource_ids) SENSITIVE = [] include Aws::Structure end |
#config_rule_names ⇒ Array<String>
Filters the results by Config rule names.
1801 1802 1803 1804 1805 1806 1807 1808 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1801 class ConformancePackEvaluationFilters < Struct.new( :config_rule_names, :compliance_type, :resource_type, :resource_ids) SENSITIVE = [] include Aws::Structure end |
#resource_ids ⇒ Array<String>
Filters the results by resource IDs.
1801 1802 1803 1804 1805 1806 1807 1808 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1801 class ConformancePackEvaluationFilters < Struct.new( :config_rule_names, :compliance_type, :resource_type, :resource_ids) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
Filters the results by the resource type (for example,
"AWS::EC2::Instance"
).
1801 1802 1803 1804 1805 1806 1807 1808 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1801 class ConformancePackEvaluationFilters < Struct.new( :config_rule_names, :compliance_type, :resource_type, :resource_ids) SENSITIVE = [] include Aws::Structure end |