@Stability(value=Stable)
public static interface CfnLifecyclePolicy.EventSourceProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getParameters()
Information about the event.
|
String |
getType()
The source of the event.
|
@Stability(value=Stable) @NotNull String getType()
Currently only managed CloudWatch Events rules are supported.
@Stability(value=Stable) @Nullable default Object getParameters()
@Stability(value=Stable) static CfnLifecyclePolicy.EventSourceProperty.Builder builder()
Copyright © 2022. All rights reserved.