interface ChannelLoggingInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnChannel.ChannelLoggingInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnChannel_ChannelLoggingInfoProperty |
Java | software.amazon.awscdk.services.msk.CfnChannel.ChannelLoggingInfoProperty |
Python | aws_cdk.aws_msk.CfnChannel.ChannelLoggingInfoProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnChannel » 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-lib';
const channelLoggingInfoProperty: msk.CfnChannel.ChannelLoggingInfoProperty = {
cloudWatchLogs: {
enabled: false,
// the properties below are optional
logGroup: 'logGroup',
},
firehose: {
enabled: false,
// the properties below are optional
deliveryStream: 'deliveryStream',
},
s3: {
enabled: false,
// the properties below are optional
bucket: 'bucket',
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