Class ManagedRuleIdentifiers

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.config.ManagedRuleIdentifiers
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:04.845Z") @Stability(Stable) public class ManagedRuleIdentifiers extends software.amazon.jsii.JsiiObject
Managed rules that are supported by AWS Config.

Example:

 // https://docs.aws.amazon.com/config/latest/developerguide/access-keys-rotated.html
 // https://docs.aws.amazon.com/config/latest/developerguide/access-keys-rotated.html
 ManagedRule.Builder.create(this, "AccessKeysRotated")
         .identifier(ManagedRuleIdentifiers.ACCESS_KEYS_ROTATED)
         .inputParameters(Map.of(
                 "maxAccessKeyAge", 60))
         // default is 24 hours
         .maximumExecutionFrequency(MaximumExecutionFrequency.TWELVE_HOURS)
         .build();
 

See Also: