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.
2115 2116 2117 2118 2119 2120 2121 2122 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2115 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.
2115 2116 2117 2118 2119 2120 2121 2122 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2115 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.
2115 2116 2117 2118 2119 2120 2121 2122 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2115 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"
).
2115 2116 2117 2118 2119 2120 2121 2122 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2115 class ConformancePackEvaluationFilters < Struct.new( :config_rule_names, :compliance_type, :resource_type, :resource_ids) SENSITIVE = [] include Aws::Structure end |