Struct rusoto_config::EvaluationResultQualifier[][src]

pub struct EvaluationResultQualifier {
    pub config_rule_name: Option<String>,
    pub resource_id: Option<String>,
    pub resource_type: Option<String>,
}

Identifies an AWS Config rule that evaluated an AWS resource, and provides the type and ID of the resource that the rule evaluated.

Fields

The name of the AWS Config rule that was used in the evaluation.

The ID of the evaluated AWS resource.

The type of AWS resource that was evaluated.

Trait Implementations

impl Default for EvaluationResultQualifier
[src]

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

impl Debug for EvaluationResultQualifier
[src]

Formats the value using the given formatter. Read more

impl Clone for EvaluationResultQualifier
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EvaluationResultQualifier
[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