@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.757Z") @Stability(value=Stable) public interface RuleProps 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;
RuleScope ruleScope;
RuleProps ruleProps = RuleProps.builder()
.configRuleName("configRuleName")
.description("description")
.inputParameters(Map.of(
"inputParametersKey", inputParameters))
.maximumExecutionFrequency(MaximumExecutionFrequency.ONE_HOUR)
.ruleScope(ruleScope)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
RuleProps.Builder
A builder for
RuleProps |
static class |
RuleProps.Jsii$Proxy
An implementation for
RuleProps |
| Modifier and Type | Method and Description |
|---|---|
static RuleProps.Builder |
builder() |
default String |
getConfigRuleName()
A name for the AWS Config rule.
|
default String |
getDescription()
A description about this AWS Config rule.
|
default Map<String,Object> |
getInputParameters()
Input parameter values that are passed to the AWS Config rule.
|
default MaximumExecutionFrequency |
getMaximumExecutionFrequency()
The maximum frequency at which the AWS Config rule runs evaluations.
|
default RuleScope |
getRuleScope()
Defines which resources trigger an evaluation for an AWS Config rule.
|
@Stability(value=Stable) @Nullable default String getConfigRuleName()
Default: - CloudFormation generated name
@Stability(value=Stable) @Nullable default String getDescription()
Default: - No description
@Stability(value=Stable) @Nullable default Map<String,Object> getInputParameters()
Default: - No input parameters
@Stability(value=Stable) @Nullable default MaximumExecutionFrequency getMaximumExecutionFrequency()
Default: MaximumExecutionFrequency.TWENTY_FOUR_HOURS
@Stability(value=Stable) @Nullable default RuleScope getRuleScope()
Default: - evaluations for the rule are triggered when any resource in the recording group changes.
@Stability(value=Stable) static RuleProps.Builder builder()
RuleProps.Builder of RulePropsCopyright © 2022. All rights reserved.