interface FirehoseProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.FirehoseProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_FirehoseProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.FirehoseProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.FirehoseProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnClusterPropsMixin » FirehoseProperty |
Firehose details for BrokerLogs.
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.CfnClusterPropsMixin.FirehoseProperty = {
deliveryStream: 'deliveryStream',
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | string | The Kinesis Data Firehose delivery stream that is the destination for broker logs. |
| enabled? | boolean | IResolvable | Specifies whether broker logs get send to the specified Kinesis Data Firehose delivery stream. |
deliveryStream?
Type:
string
(optional)
The Kinesis Data Firehose delivery stream that is the destination for broker logs.
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether broker logs get send to the specified Kinesis Data Firehose delivery stream.

.NET
Go
Java
Python
TypeScript