interface FirehoseLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnChannelPropsMixin.FirehoseLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnChannelPropsMixin_FirehoseLogDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnChannelPropsMixin.FirehoseLogDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnChannelPropsMixin.FirehoseLogDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnChannelPropsMixin » FirehoseLogDestinationProperty |
Firehose log destination details.
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 firehoseLogDestinationProperty: msk.CfnChannelPropsMixin.FirehoseLogDestinationProperty = {
deliveryStream: 'deliveryStream',
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | string | The Firehose delivery stream for log delivery. |
| enabled? | boolean | IResolvable | Whether Firehose logging is enabled. |
deliveryStream?
Type:
string
(optional)
The Firehose delivery stream for log delivery.
enabled?
Type:
boolean | IResolvable
(optional)
Whether Firehose logging is enabled.

.NET
Go
Java
Python
TypeScript