public static interface CfnReplicationGroup.DestinationDetailsProperty
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.elasticache.*; DestinationDetailsProperty destinationDetailsProperty = DestinationDetailsProperty.builder() .cloudWatchLogsDetails(CloudWatchLogsDestinationDetailsProperty.builder() .logGroup("logGroup") .build()) .kinesisFirehoseDetails(KinesisFirehoseDestinationDetailsProperty.builder() .deliveryStream("deliveryStream") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnReplicationGroup.DestinationDetailsProperty.Builder
A builder for
CfnReplicationGroup.DestinationDetailsProperty |
static class |
CfnReplicationGroup.DestinationDetailsProperty.Jsii$Proxy
An implementation for
CfnReplicationGroup.DestinationDetailsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnReplicationGroup.DestinationDetailsProperty.Builder |
builder() |
default java.lang.Object |
getCloudWatchLogsDetails()
The configuration details of the CloudWatch Logs destination.
|
default java.lang.Object |
getKinesisFirehoseDetails()
The configuration details of the Kinesis Data Firehose destination.
|
default java.lang.Object getCloudWatchLogsDetails()
Note that this field is marked as required but only if CloudWatch Logs was chosen as the destination.
default java.lang.Object getKinesisFirehoseDetails()
Note that this field is marked as required but only if Kinesis Data Firehose was chosen as the destination.
static CfnReplicationGroup.DestinationDetailsProperty.Builder builder()