Interface CfnConfigRule.SourceDetailProperty

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

@Stability(Stable) public static interface CfnConfigRule.SourceDetailProperty extends software.amazon.jsii.JsiiSerializable
Provides the source and the message types that trigger AWS Config to evaluate your AWS resources against a rule.

It also provides the frequency with which you want AWS Config to run evaluations for the rule if the trigger type is periodic. You can specify the parameter values for SourceDetail only for custom rules.

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.*;
 SourceDetailProperty sourceDetailProperty = SourceDetailProperty.builder()
         .eventSource("eventSource")
         .messageType("messageType")
         // the properties below are optional
         .maximumExecutionFrequency("maximumExecutionFrequency")
         .build();
 

See Also: