interface FirehoseProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnReplicatorPropsMixin.FirehoseProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnReplicatorPropsMixin_FirehoseProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnReplicatorPropsMixin.FirehoseProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnReplicatorPropsMixin.FirehoseProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnReplicatorPropsMixin » FirehoseProperty |
Details about delivering logs to Firehose.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const firehoseProperty: msk.CfnReplicatorPropsMixin.FirehoseProperty = {
deliveryStream: 'deliveryStream',
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | string | The Firehose delivery stream that is the destination for log delivery. |
| enabled? | boolean | IResolvable | Whether log delivery to Firehose is enabled. |
deliveryStream?
Type:
string
(optional)
The Firehose delivery stream that is the destination for log delivery.
enabled?
Type:
boolean | IResolvable
(optional)
Whether log delivery to Firehose is enabled.

.NET
Go
Java
Python
TypeScript