Show / Hide Table of Contents

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

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

LogType

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

Properties

DestinationDetails

Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

object? DestinationDetails { get; }
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 CfnCacheClusterPropsMixin.IDestinationDetailsProperty

DestinationType

Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type.

string? DestinationType { get; }
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 .

string? LogFormat { get; }
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 .

string? LogType { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX