Interface CfnConfigRule.ScopeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigRule.ScopeProperty.Jsii$Proxy
Enclosing class:
CfnConfigRule

@Stability(Stable) public static interface CfnConfigRule.ScopeProperty extends software.amazon.jsii.JsiiSerializable
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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.config.*;
 ScopeProperty scopeProperty = ScopeProperty.builder()
         .complianceResourceId("complianceResourceId")
         .complianceResourceTypes(List.of("complianceResourceTypes"))
         .tagKey("tagKey")
         .tagValue("tagValue")
         .build();
 

See Also: