public static interface CfnLifecyclePolicy.EventSourceProperty
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.*; EventSourceProperty eventSourceProperty = EventSourceProperty.builder() .type("type") // the properties below are optional .parameters(EventParametersProperty.builder() .eventType("eventType") .snapshotOwner(List.of("snapshotOwner")) // the properties below are optional .descriptionRegex("descriptionRegex") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnLifecyclePolicy.EventSourceProperty.Builder
A builder for
CfnLifecyclePolicy.EventSourceProperty |
static class |
CfnLifecyclePolicy.EventSourceProperty.Jsii$Proxy
An implementation for
CfnLifecyclePolicy.EventSourceProperty |
Modifier and Type | Method and Description |
---|---|
static CfnLifecyclePolicy.EventSourceProperty.Builder |
builder() |
default java.lang.Object |
getParameters()
Information about the event.
|
java.lang.String |
getType()
The source of the event.
|
java.lang.String getType()
Currently only managed CloudWatch Events rules are supported.
default java.lang.Object getParameters()
static CfnLifecyclePolicy.EventSourceProperty.Builder builder()