Interface CfnCacheCluster.LogDeliveryConfigurationRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCacheCluster.LogDeliveryConfigurationRequestProperty.Jsii$Proxy
- Enclosing class:
CfnCacheCluster
@Stability(Stable)
public static interface CfnCacheCluster.LogDeliveryConfigurationRequestProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the destination, format and type of the logs.
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.*; LogDeliveryConfigurationRequestProperty logDeliveryConfigurationRequestProperty = LogDeliveryConfigurationRequestProperty.builder() .destinationDetails(DestinationDetailsProperty.builder() .cloudWatchLogsDetails(CloudWatchLogsDestinationDetailsProperty.builder() .logGroup("logGroup") .build()) .kinesisFirehoseDetails(KinesisFirehoseDestinationDetailsProperty.builder() .deliveryStream("deliveryStream") .build()) .build()) .destinationType("destinationType") .logFormat("logFormat") .logType("logType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCacheCluster.LogDeliveryConfigurationRequestProperty
static final class
An implementation forCfnCacheCluster.LogDeliveryConfigurationRequestProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type.Valid values are eitherjson
ortext
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationDetails
Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.- See Also:
-
getDestinationType
Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type.Valid values are either
cloudwatch-logs
orkinesis-firehose
.- See Also:
-
getLogFormat
Valid values are eitherjson
ortext
.- See Also:
-
getLogType
- See Also:
-
builder
-