interface LogDeliveryConfigurationRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnCacheClusterPropsMixin.LogDeliveryConfigurationRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnCacheClusterPropsMixin_LogDeliveryConfigurationRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnCacheClusterPropsMixin.LogDeliveryConfigurationRequestProperty |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnCacheClusterPropsMixin.LogDeliveryConfigurationRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnCacheClusterPropsMixin » 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 { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const logDeliveryConfigurationRequestProperty: elasticache_mixins.CfnCacheClusterPropsMixin.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
(optional)
Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.
destinationType?
Type:
string
(optional)
Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type.
Valid values are either cloudwatch-logs or kinesis-firehose .
logFormat?
Type:
string
(optional)
Valid values are either json or text .
logType?
Type:
string
(optional)
Valid value is either slow-log , which refers to slow-log or engine-log .

.NET
Go
Java
Python
TypeScript