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.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.621Z") @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: