interface KinesisFirehoseDestinationDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnCacheClusterPropsMixin.KinesisFirehoseDestinationDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnCacheClusterPropsMixin_KinesisFirehoseDestinationDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnCacheClusterPropsMixin.KinesisFirehoseDestinationDetailsProperty |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnCacheClusterPropsMixin.KinesisFirehoseDestinationDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnCacheClusterPropsMixin » KinesisFirehoseDestinationDetailsProperty |
The configuration details of the Kinesis Data Firehose destination.
Note that this field is marked as required but only if Kinesis Data Firehose was chosen as the destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const kinesisFirehoseDestinationDetailsProperty: elasticache_mixins.CfnCacheClusterPropsMixin.KinesisFirehoseDestinationDetailsProperty = {
deliveryStream: 'deliveryStream',
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | string | The name of the Kinesis Data Firehose delivery stream. |
deliveryStream?
Type:
string
(optional)
The name of the Kinesis Data Firehose delivery stream.

.NET
Go
Java
Python
TypeScript