Interface CfnReplicationGroup.DestinationDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicationGroup.DestinationDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnReplicationGroup
@Stability(Stable)
public static interface CfnReplicationGroup.DestinationDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnReplicationGroup.DestinationDetailsProperty
static final class
An implementation forCfnReplicationGroup.DestinationDetailsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudWatchLogsDetails
The configuration details of the CloudWatch Logs destination.Note that this field is marked as required but only if CloudWatch Logs was chosen as the destination.
-
getKinesisFirehoseDetails
The configuration details of the Kinesis Data Firehose destination.Note that this field is marked as required but only if Kinesis Data Firehose was chosen as the destination.
-
builder
-