Show / Hide Table of Contents

Interface CfnCacheCluster.IDestinationDetailsProperty

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

Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCacheCluster.IDestinationDetailsProperty
Syntax (vb)
Public Interface CfnCacheCluster.IDestinationDetailsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cachecluster-destinationdetails.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 destinationDetailsProperty = new DestinationDetailsProperty {
                 CloudWatchLogsDetails = new CloudWatchLogsDestinationDetailsProperty {
                     LogGroup = "logGroup"
                 },
                 KinesisFirehoseDetails = new KinesisFirehoseDestinationDetailsProperty {
                     DeliveryStream = "deliveryStream"
                 }
             };

Synopsis

Properties

CloudWatchLogsDetails

The configuration details of the CloudWatch Logs destination.

KinesisFirehoseDetails

The configuration details of the Kinesis Data Firehose destination.

Properties

CloudWatchLogsDetails

The configuration details of the CloudWatch Logs destination.

object? CloudWatchLogsDetails { get; }
Property Value

object

Remarks

Note that this field is marked as required but only if CloudWatch Logs was chosen as the destination.

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

Type union: either IResolvable or CfnCacheCluster.ICloudWatchLogsDestinationDetailsProperty

KinesisFirehoseDetails

The configuration details of the Kinesis Data Firehose destination.

object? KinesisFirehoseDetails { get; }
Property Value

object

Remarks

Note that this field is marked as required but only if Kinesis Data Firehose was chosen as the destination.

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

Type union: either IResolvable or CfnCacheCluster.IKinesisFirehoseDestinationDetailsProperty

Back to top Generated by DocFX