Class CfnCacheCluster.KinesisFirehoseDestinationDetailsProperty
The configuration details of the Kinesis Data Firehose destination.
Inherited Members
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCacheCluster.KinesisFirehoseDestinationDetailsProperty : CfnCacheCluster.IKinesisFirehoseDestinationDetailsProperty
Syntax (vb)
Public Class CfnCacheCluster.KinesisFirehoseDestinationDetailsProperty Implements CfnCacheCluster.IKinesisFirehoseDestinationDetailsProperty
Remarks
Note that this field is marked as required but only if Kinesis Data Firehose was chosen as the destination.
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 kinesisFirehoseDestinationDetailsProperty = new KinesisFirehoseDestinationDetailsProperty {
DeliveryStream = "deliveryStream"
};
Synopsis
Constructors
| KinesisFirehoseDestinationDetailsProperty() | The configuration details of the Kinesis Data Firehose destination. |
Properties
| DeliveryStream | The name of the Kinesis Data Firehose delivery stream. |
Constructors
KinesisFirehoseDestinationDetailsProperty()
The configuration details of the Kinesis Data Firehose destination.
public KinesisFirehoseDestinationDetailsProperty()
Remarks
Note that this field is marked as required but only if Kinesis Data Firehose was chosen as the destination.
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 kinesisFirehoseDestinationDetailsProperty = new KinesisFirehoseDestinationDetailsProperty {
DeliveryStream = "deliveryStream"
};
Properties
DeliveryStream
The name of the Kinesis Data Firehose delivery stream.
public string DeliveryStream { get; set; }