Interface CfnCacheCluster.DestinationDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCacheCluster.DestinationDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnCacheCluster
@Stability(Stable)
public static interface CfnCacheCluster.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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCacheCluster.DestinationDetailsProperty
static final class
An implementation forCfnCacheCluster.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.
- See Also:
-
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.
- See Also:
-
builder
-