@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.720Z") @Stability(value=Stable) public interface CfnConfigRuleProps extends software.amazon.jsii.JsiiSerializable
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.*;
Object inputParameters;
CfnConfigRuleProps cfnConfigRuleProps = CfnConfigRuleProps.builder()
.source(SourceProperty.builder()
.owner("owner")
// the properties below are optional
.customPolicyDetails(CustomPolicyDetailsProperty.builder()
.enableDebugLogDelivery(false)
.policyRuntime("policyRuntime")
.policyText("policyText")
.build())
.sourceDetails(List.of(SourceDetailProperty.builder()
.eventSource("eventSource")
.messageType("messageType")
// the properties below are optional
.maximumExecutionFrequency("maximumExecutionFrequency")
.build()))
.sourceIdentifier("sourceIdentifier")
.build())
// the properties below are optional
.configRuleName("configRuleName")
.description("description")
.inputParameters(inputParameters)
.maximumExecutionFrequency("maximumExecutionFrequency")
.scope(ScopeProperty.builder()
.complianceResourceId("complianceResourceId")
.complianceResourceTypes(List.of("complianceResourceTypes"))
.tagKey("tagKey")
.tagValue("tagValue")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConfigRuleProps.Builder
A builder for
CfnConfigRuleProps |
static class |
CfnConfigRuleProps.Jsii$Proxy
An implementation for
CfnConfigRuleProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnConfigRuleProps.Builder |
builder() |
default String |
getConfigRuleName()
A name for the AWS Config rule.
|
default String |
getDescription()
The description that you provide for the AWS Config rule.
|
default Object |
getInputParameters()
A string, in JSON format, that is passed to the AWS Config rule Lambda function.
|
default String |
getMaximumExecutionFrequency()
The maximum frequency with which AWS Config runs evaluations for a rule.
|
default Object |
getScope()
Defines which resources can trigger an evaluation for the rule.
|
Object |
getSource()
Provides the rule owner ( AWS or customer), the rule identifier, and the notifications that cause the function to evaluate your AWS resources.
|
@Stability(value=Stable) @NotNull Object getSource()
@Stability(value=Stable) @Nullable default String getConfigRuleName()
If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the rule name. For more information, see Name Type .
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getInputParameters()
@Stability(value=Stable) @Nullable default String getMaximumExecutionFrequency()
You can specify a value for MaximumExecutionFrequency when:
By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the
MaximumExecutionFrequencyparameter.
@Stability(value=Stable) @Nullable default Object getScope()
The scope can include one or more resource types, a combination of one resource type and one resource ID, or a combination of a tag key and value. Specify a scope to constrain the resources that can trigger an evaluation for the rule. If you do not specify a scope, evaluations are triggered when any resource in the recording group changes.
The scope can be empty.
@Stability(value=Stable) static CfnConfigRuleProps.Builder builder()
CfnConfigRuleProps.Builder of CfnConfigRulePropsCopyright © 2022. All rights reserved.