Interface CfnConfigRule.CustomPolicyDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigRule.CustomPolicyDetailsProperty.Jsii$Proxy
Enclosing class:
CfnConfigRule

@Stability(Stable) public static interface CfnConfigRule.CustomPolicyDetailsProperty extends software.amazon.jsii.JsiiSerializable
Provides the CustomPolicyDetails, the rule owner ( AWS for managed rules, CUSTOM_POLICY for Custom Policy rules, and CUSTOM_LAMBDA for Custom Lambda rules), the rule identifier, and the events that cause the evaluation of your AWS resources.

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.*;
 CustomPolicyDetailsProperty customPolicyDetailsProperty = CustomPolicyDetailsProperty.builder()
         .enableDebugLogDelivery(false)
         .policyRuntime("policyRuntime")
         .policyText("policyText")
         .build();
 

See Also: