Class: Aws::FMS::Types::EvaluationResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::EvaluationResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fms/types.rb
Overview
Describes the compliance status for the account. An account is considered noncompliant if it includes resources that are not protected by the specified policy or that don’t comply with the policy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compliance_status ⇒ String
Describes an Amazon Web Services account’s compliance with the Firewall Manager policy.
-
#evaluation_limit_exceeded ⇒ Boolean
Indicates that over 100 resources are noncompliant with the Firewall Manager policy.
-
#violator_count ⇒ Integer
The number of resources that are noncompliant with the specified policy.
Instance Attribute Details
#compliance_status ⇒ String
Describes an Amazon Web Services account’s compliance with the Firewall Manager policy.
1227 1228 1229 1230 1231 1232 1233 |
# File 'lib/aws-sdk-fms/types.rb', line 1227 class EvaluationResult < Struct.new( :compliance_status, :violator_count, :evaluation_limit_exceeded) SENSITIVE = [] include Aws::Structure end |
#evaluation_limit_exceeded ⇒ Boolean
Indicates that over 100 resources are noncompliant with the Firewall Manager policy.
1227 1228 1229 1230 1231 1232 1233 |
# File 'lib/aws-sdk-fms/types.rb', line 1227 class EvaluationResult < Struct.new( :compliance_status, :violator_count, :evaluation_limit_exceeded) SENSITIVE = [] include Aws::Structure end |
#violator_count ⇒ Integer
The number of resources that are noncompliant with the specified policy. For WAF and Shield Advanced policies, a resource is considered noncompliant if it is not associated with the policy. For security group policies, a resource is considered noncompliant if it doesn’t comply with the rules of the policy and remediation is disabled or not possible.
1227 1228 1229 1230 1231 1232 1233 |
# File 'lib/aws-sdk-fms/types.rb', line 1227 class EvaluationResult < Struct.new( :compliance_status, :violator_count, :evaluation_limit_exceeded) SENSITIVE = [] include Aws::Structure end |