Class: Aws::ConfigService::Types::ConfigRuleComplianceFilters
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ConfigRuleComplianceFilters
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass ConfigRuleComplianceFilters data as a hash:
{
config_rule_name: "ConfigRuleName",
compliance_type: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT, NOT_APPLICABLE, INSUFFICIENT_DATA
account_id: "AccountId",
aws_region: "AwsRegion",
}
Filters the compliance results based on account ID, region, compliance type, and rule name.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The 12-digit account ID of the source account.
-
#aws_region ⇒ String
The source region where the data is aggregated.
-
#compliance_type ⇒ String
The rule compliance status.
-
#config_rule_name ⇒ String
The name of the Config rule.
Instance Attribute Details
#account_id ⇒ String
The 12-digit account ID of the source account.
1079 1080 1081 1082 1083 1084 1085 1086 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1079 class ConfigRuleComplianceFilters < Struct.new( :config_rule_name, :compliance_type, :account_id, :aws_region) SENSITIVE = [] include Aws::Structure end |
#aws_region ⇒ String
The source region where the data is aggregated.
1079 1080 1081 1082 1083 1084 1085 1086 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1079 class ConfigRuleComplianceFilters < Struct.new( :config_rule_name, :compliance_type, :account_id, :aws_region) SENSITIVE = [] include Aws::Structure end |
#compliance_type ⇒ String
The rule compliance status.
For the ConfigRuleComplianceFilters
data type, Config supports
only COMPLIANT
and NON_COMPLIANT
. Config does not support the
NOT_APPLICABLE
and the INSUFFICIENT_DATA
values.
1079 1080 1081 1082 1083 1084 1085 1086 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1079 class ConfigRuleComplianceFilters < Struct.new( :config_rule_name, :compliance_type, :account_id, :aws_region) SENSITIVE = [] include Aws::Structure end |
#config_rule_name ⇒ String
The name of the Config rule.
1079 1080 1081 1082 1083 1084 1085 1086 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1079 class ConfigRuleComplianceFilters < Struct.new( :config_rule_name, :compliance_type, :account_id, :aws_region) SENSITIVE = [] include Aws::Structure end |