Show / Hide Table of Contents

Class CfnCacheCluster.LogDeliveryConfigurationRequestProperty

Specifies the destination, format and type of the logs.

Inheritance
object
CfnCacheCluster.LogDeliveryConfigurationRequestProperty
Implements
CfnCacheCluster.ILogDeliveryConfigurationRequestProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cachecluster-logdeliveryconfigurationrequest.html

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 json or text .

LogType

Valid value is either slow-log , which refers to slow-log or engine-log .

Constructors

LogDeliveryConfigurationRequestProperty()

Specifies the destination, format and type of the logs.

public LogDeliveryConfigurationRequestProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cachecluster-logdeliveryconfigurationrequest.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cachecluster-logdeliveryconfigurationrequest.html#cfn-elasticache-cachecluster-logdeliveryconfigurationrequest-destinationdetails

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

string

Remarks

Valid values are either cloudwatch-logs or kinesis-firehose .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cachecluster-logdeliveryconfigurationrequest.html#cfn-elasticache-cachecluster-logdeliveryconfigurationrequest-destinationtype

LogFormat

Valid values are either json or text .

public string LogFormat { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cachecluster-logdeliveryconfigurationrequest.html#cfn-elasticache-cachecluster-logdeliveryconfigurationrequest-logformat

LogType

Valid value is either slow-log , which refers to slow-log or engine-log .

public string LogType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cachecluster-logdeliveryconfigurationrequest.html#cfn-elasticache-cachecluster-logdeliveryconfigurationrequest-logtype

Implements

CfnCacheCluster.ILogDeliveryConfigurationRequestProperty
Back to top Generated by DocFX