#[non_exhaustive]pub struct ConformancePackEvaluationFilters {
pub config_rule_names: Option<Vec<String>>,
pub compliance_type: Option<ConformancePackComplianceType>,
pub resource_type: Option<String>,
pub resource_ids: Option<Vec<String>>,
}Expand description
Filters a conformance pack by Config rule names, compliance types, Amazon Web Services resource types, and resource IDs.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.config_rule_names: Option<Vec<String>>Filters the results by Config rule names.
compliance_type: Option<ConformancePackComplianceType>Filters the results by compliance.
The allowed values are COMPLIANT and NON_COMPLIANT. INSUFFICIENT_DATA is not supported.
resource_type: Option<String>Filters the results by the resource type (for example, "AWS::EC2::Instance").
resource_ids: Option<Vec<String>>Filters the results by resource IDs.
This is valid only when you provide resource type. If there is no resource type, you will see an error.
Implementations
Filters the results by compliance.
The allowed values are COMPLIANT and NON_COMPLIANT. INSUFFICIENT_DATA is not supported.
Filters the results by the resource type (for example, "AWS::EC2::Instance").
Creates a new builder-style object to manufacture ConformancePackEvaluationFilters
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for ConformancePackEvaluationFilters
impl Sync for ConformancePackEvaluationFilters
impl Unpin for ConformancePackEvaluationFilters
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more