@Stability(value=Stable)
public static interface CfnCacheCluster.DestinationDetailsProperty
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.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 |
CfnCacheCluster.DestinationDetailsProperty.Builder
A builder for
CfnCacheCluster.DestinationDetailsProperty |
static class |
CfnCacheCluster.DestinationDetailsProperty.Jsii$Proxy
An implementation for
CfnCacheCluster.DestinationDetailsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCacheCluster.DestinationDetailsProperty.Builder |
builder() |
default Object |
getCloudWatchLogsDetails()
The configuration details of the CloudWatch Logs destination.
|
default Object |
getKinesisFirehoseDetails()
The configuration details of the Kinesis Data Firehose destination.
|
@Stability(value=Stable) @Nullable default Object getCloudWatchLogsDetails()
Note that this field is marked as required but only if CloudWatch Logs was chosen as the destination.
@Stability(value=Stable) @Nullable default Object getKinesisFirehoseDetails()
Note that this field is marked as required but only if Kinesis Data Firehose was chosen as the destination.
@Stability(value=Stable) static CfnCacheCluster.DestinationDetailsProperty.Builder builder()
Copyright © 2022. All rights reserved.