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
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
Remarks
Note that this field is marked as required but only if CloudWatch Logs was chosen as the destination.
Type union: either IResolvable or CfnCacheCluster.ICloudWatchLogsDestinationDetailsProperty
KinesisFirehoseDetails
The configuration details of the Kinesis Data Firehose destination.
object? KinesisFirehoseDetails { get; }
Property Value
Remarks
Note that this field is marked as required but only if Kinesis Data Firehose was chosen as the destination.
Type union: either IResolvable or CfnCacheCluster.IKinesisFirehoseDestinationDetailsProperty