Struct rusoto_config::Scope [] [src]

pub struct Scope {
    pub compliance_resource_id: Option<String>,
    pub compliance_resource_types: Option<Vec<String>>,
    pub tag_key: Option<String>,
    pub tag_value: Option<String>,
}

Defines which resources trigger an evaluation for an AWS Config rule. The scope can include one or more resource types, a combination of a tag key and value, or a combination of one resource type and one resource ID. Specify a scope to constrain which resources trigger an evaluation for a rule. Otherwise, evaluations for the rule are triggered when any resource in your recording group changes in configuration.

Fields

The IDs of the only AWS resource that you want to trigger an evaluation for the rule. If you specify a resource ID, you must specify one resource type for ComplianceResourceTypes.

The resource types of only those AWS resources that you want to trigger an evaluation for the rule. You can only specify one type if you also specify a resource ID for ComplianceResourceId.

The tag key that is applied to only those AWS resources that you want you want to trigger an evaluation for the rule.

The tag value applied to only those AWS resources that you want to trigger an evaluation for the rule. If you specify a value for TagValue, you must also specify a value for TagKey.

Trait Implementations

impl Default for Scope
[src]

[src]

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

impl Debug for Scope
[src]

[src]

Formats the value using the given formatter.

impl Clone for Scope
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more