[][src]Struct rusoto_config::ConformancePackEvaluationFilters

pub struct ConformancePackEvaluationFilters {
    pub compliance_type: Option<String>,
    pub config_rule_names: Option<Vec<String>>,
    pub resource_ids: Option<Vec<String>>,
    pub resource_type: Option<String>,
}

Filters a conformance pack by AWS Config rule names, compliance types, AWS resource types, and resource IDs.

Fields

compliance_type: Option<String>

Filters the results by compliance.

The allowed values are COMPLIANT and NON_COMPLIANT.

config_rule_names: Option<Vec<String>>

Filters the results by AWS Config rule names.

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.

resource_type: Option<String>

Filters the results by the resource type (for example, "AWS::EC2::Instance").

Trait Implementations

impl Clone for ConformancePackEvaluationFilters[src]

impl Debug for ConformancePackEvaluationFilters[src]

impl Default for ConformancePackEvaluationFilters[src]

impl PartialEq<ConformancePackEvaluationFilters> for ConformancePackEvaluationFilters[src]

impl Serialize for ConformancePackEvaluationFilters[src]

impl StructuralPartialEq for ConformancePackEvaluationFilters[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.