Interface CfnLifecyclePolicy.EventParametersProperty

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

@Stability(Stable) public static interface CfnLifecyclePolicy.EventParametersProperty extends software.amazon.jsii.JsiiSerializable
[Event-based policies only] Specifies an event that activates an event-based policy.

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.dlm.*;
 EventParametersProperty eventParametersProperty = EventParametersProperty.builder()
         .eventType("eventType")
         .snapshotOwner(List.of("snapshotOwner"))
         // the properties below are optional
         .descriptionRegex("descriptionRegex")
         .build();
 

See Also: