interface S3LogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnChannel.S3LogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnChannel_S3LogDestinationProperty |
Java | software.amazon.awscdk.services.msk.CfnChannel.S3LogDestinationProperty |
Python | aws_cdk.aws_msk.CfnChannel.S3LogDestinationProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnChannel » S3LogDestinationProperty |
S3 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-lib';
const s3LogDestinationProperty: msk.CfnChannel.S3LogDestinationProperty = {
enabled: false,
// the properties below are optional
bucket: 'bucket',
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | IResolvable | Whether S3 logging is enabled. |
| bucket? | string | The name of the S3 bucket for log delivery. |
| prefix? | string | The S3 prefix for log delivery. |
enabled
Type:
boolean | IResolvable
Whether S3 logging is enabled.
bucket?
Type:
string
(optional)
The name of the S3 bucket for log delivery.
prefix?
Type:
string
(optional)
The S3 prefix for log delivery.

.NET
Go
Java
Python
TypeScript