Struct rusoto_config::ConfigRuleComplianceFilters[][src]

pub struct ConfigRuleComplianceFilters {
    pub account_id: Option<String>,
    pub aws_region: Option<String>,
    pub compliance_type: Option<String>,
    pub config_rule_name: Option<String>,
}

Filters the compliance results based on account ID, region, compliance type, and rule name.

Fields

The 12-digit account ID of the source account.

The source region where the data is aggregated.

The rule compliance status.

For the ConfigRuleComplianceFilters data type, AWS Config supports only COMPLIANT and NON_COMPLIANT. AWS Config does not support the NOT_APPLICABLE and the INSUFFICIENT_DATA values.

The name of the AWS Config rule.

Trait Implementations

impl Default for ConfigRuleComplianceFilters
[src]

Returns the "default value" for a type. Read more

impl Debug for ConfigRuleComplianceFilters
[src]

Formats the value using the given formatter. Read more

impl Clone for ConfigRuleComplianceFilters
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ConfigRuleComplianceFilters
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations