interface ChannelLoggingInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnChannelPropsMixin.ChannelLoggingInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnChannelPropsMixin_ChannelLoggingInfoProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnChannelPropsMixin.ChannelLoggingInfoProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnChannelPropsMixin.ChannelLoggingInfoProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnChannelPropsMixin » ChannelLoggingInfoProperty |
Log configuration details for Channel.
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 channelLoggingInfoProperty: msk.CfnChannelPropsMixin.ChannelLoggingInfoProperty = {
cloudWatchLogs: {
enabled: false,
logGroup: 'logGroup',
},
firehose: {
deliveryStream: 'deliveryStream',
enabled: false,
},
s3: {
bucket: 'bucket',
enabled: false,
prefix: 'prefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | CloudWatch Logs log destination details. |
| firehose? | IResolvable | Firehose | Firehose log destination details. |
| s3? | IResolvable | S3 | S3 log destination details. |
cloudWatchLogs?
Type:
IResolvable | Cloud
(optional)
CloudWatch Logs log destination details.
firehose?
Type:
IResolvable | Firehose
(optional)
Firehose log destination details.
s3?
Type:
IResolvable | S3
(optional)
S3 log destination details.

.NET
Go
Java
Python
TypeScript