Interface CfnCacheClusterPropsMixin.ILogDeliveryConfigurationRequestProperty
Specifies the destination, format and type of the logs.
Namespace: Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnCacheClusterPropsMixin.ILogDeliveryConfigurationRequestProperty
Syntax (vb)
Public Interface CfnCacheClusterPropsMixin.ILogDeliveryConfigurationRequestProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins;
var logDeliveryConfigurationRequestProperty = new LogDeliveryConfigurationRequestProperty {
DestinationDetails = new DestinationDetailsProperty {
CloudWatchLogsDetails = new CloudWatchLogsDestinationDetailsProperty {
LogGroup = "logGroup"
},
KinesisFirehoseDetails = new KinesisFirehoseDestinationDetailsProperty {
DeliveryStream = "deliveryStream"
}
},
DestinationType = "destinationType",
LogFormat = "logFormat",
LogType = "logType"
};
Synopsis
Properties
| DestinationDetails | Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination. |
| DestinationType | Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type. |
| LogFormat | Valid values are either |
| LogType | Valid value is either |
Properties
DestinationDetails
Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.
object? DestinationDetails { get; }
Property Value
Remarks
Type union: either IResolvable or CfnCacheClusterPropsMixin.IDestinationDetailsProperty
DestinationType
Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type.
string? DestinationType { get; }
Property Value
Remarks
Valid values are either cloudwatch-logs or kinesis-firehose .
LogFormat
Valid values are either json or text .
string? LogFormat { get; }
Property Value
Remarks
LogType
Valid value is either slow-log , which refers to slow-log or engine-log .
string? LogType { get; }