interface FirehoseProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.FirehoseProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_FirehoseProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.FirehoseProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.FirehoseProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » 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 { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const firehoseProperty: msk_mixins.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