Class CfnCacheCluster.LogDeliveryConfigurationRequestProperty
Specifies the destination, format and type of the logs.
Inherited Members
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCacheCluster.LogDeliveryConfigurationRequestProperty : CfnCacheCluster.ILogDeliveryConfigurationRequestProperty
Syntax (vb)
Public Class CfnCacheCluster.LogDeliveryConfigurationRequestProperty Implements CfnCacheCluster.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.AWS.ElastiCache;
var logDeliveryConfigurationRequestProperty = new LogDeliveryConfigurationRequestProperty {
DestinationDetails = new DestinationDetailsProperty {
CloudWatchLogsDetails = new CloudWatchLogsDestinationDetailsProperty {
LogGroup = "logGroup"
},
KinesisFirehoseDetails = new KinesisFirehoseDestinationDetailsProperty {
DeliveryStream = "deliveryStream"
}
},
DestinationType = "destinationType",
LogFormat = "logFormat",
LogType = "logType"
};
Synopsis
Constructors
| LogDeliveryConfigurationRequestProperty() | Specifies the destination, format and type of the logs. |
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 |
Constructors
LogDeliveryConfigurationRequestProperty()
Specifies the destination, format and type of the logs.
public LogDeliveryConfigurationRequestProperty()
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.AWS.ElastiCache;
var logDeliveryConfigurationRequestProperty = new LogDeliveryConfigurationRequestProperty {
DestinationDetails = new DestinationDetailsProperty {
CloudWatchLogsDetails = new CloudWatchLogsDestinationDetailsProperty {
LogGroup = "logGroup"
},
KinesisFirehoseDetails = new KinesisFirehoseDestinationDetailsProperty {
DeliveryStream = "deliveryStream"
}
},
DestinationType = "destinationType",
LogFormat = "logFormat",
LogType = "logType"
};
Properties
DestinationDetails
Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.
public object DestinationDetails { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnCacheCluster.IDestinationDetailsProperty
DestinationType
Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type.
public string DestinationType { get; set; }
Property Value
Remarks
Valid values are either cloudwatch-logs or kinesis-firehose .
LogFormat
Valid values are either json or text .
public string LogFormat { get; set; }
Property Value
Remarks
LogType
Valid value is either slow-log , which refers to slow-log or engine-log .
public string LogType { get; set; }