@Stability(value=Stable)
public static interface CfnConfigRule.ScopeProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConfigRule.ScopeProperty.Builder
A builder for
CfnConfigRule.ScopeProperty |
static class |
CfnConfigRule.ScopeProperty.Jsii$Proxy
An implementation for
CfnConfigRule.ScopeProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConfigRule.ScopeProperty.Builder |
builder() |
default String |
getComplianceResourceId()
The ID of the only AWS resource that you want to trigger an evaluation for the rule.
|
default List<String> |
getComplianceResourceTypes()
The resource types of only those AWS resources that you want to trigger an evaluation for the rule.
|
default String |
getTagKey()
The tag key that is applied to only those AWS resources that you want to trigger an evaluation for the rule.
|
default String |
getTagValue()
The tag value applied to only those AWS resources that you want to trigger an evaluation for the rule.
|
@Stability(value=Stable) @Nullable default String getComplianceResourceId()
If you specify a resource ID, you must specify one resource type for ComplianceResourceTypes .
@Stability(value=Stable) @Nullable default List<String> getComplianceResourceTypes()
You can only specify one type if you also specify a resource ID for ComplianceResourceId .
@Stability(value=Stable) @Nullable default String getTagKey()
@Stability(value=Stable) @Nullable default String getTagValue()
If you specify a value for TagValue , you must also specify a value for TagKey .
@Stability(value=Stable) static CfnConfigRule.ScopeProperty.Builder builder()
Copyright © 2022. All rights reserved.