interface LogDeliveryConfigurationRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnCacheCluster.LogDeliveryConfigurationRequestProperty |
Java | software.amazon.awscdk.services.elasticache.CfnCacheCluster.LogDeliveryConfigurationRequestProperty |
Python | aws_cdk.aws_elasticache.CfnCacheCluster.LogDeliveryConfigurationRequestProperty |
TypeScript | @aws-cdk/aws-elasticache » CfnCacheCluster » LogDeliveryConfigurationRequestProperty |
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 * as elasticache from '@aws-cdk/aws-elasticache';
const logDeliveryConfigurationRequestProperty: elasticache.CfnCacheCluster.LogDeliveryConfigurationRequestProperty = {
destinationDetails: {
cloudWatchLogsDetails: {
logGroup: 'logGroup',
},
kinesisFirehoseDetails: {
deliveryStream: 'deliveryStream',
},
},
destinationType: 'destinationType',
logFormat: 'logFormat',
logType: 'logType',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | IResolvable | Destination | Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination. |
| destination | string | Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type. |
| log | string | Valid values are either json or text . |
| log | string | Valid value is either slow-log , which refers to slow-log or engine-log . |
destinationDetails
Type:
IResolvable | Destination
Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.
destinationType
Type:
string
Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type.
Valid values are either cloudwatch-logs or kinesis-firehose .
logFormat
Type:
string
Valid values are either json or text .
logType
Type:
string
Valid value is either slow-log , which refers to slow-log or engine-log .

.NET
Java
Python
TypeScript