interface S3Property
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.MSK.CfnCluster.S3Property | 
|  Java | software.amazon.awscdk.services.msk.CfnCluster.S3Property | 
|  Python | aws_cdk.aws_msk.CfnCluster.S3Property | 
|  TypeScript | @aws-cdk/aws-msk»CfnCluster»S3Property | 
The details of the Amazon S3 destination for broker logs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as msk from '@aws-cdk/aws-msk';
const s3Property: msk.CfnCluster.S3Property = {
  enabled: false,
  // the properties below are optional
  bucket: 'bucket',
  prefix: 'prefix',
};
Properties
| Name | Type | Description | 
|---|---|---|
| enabled | boolean | IResolvable | Specifies whether broker logs get sent to the specified Amazon S3 destination. | 
| bucket? | string | The name of the S3 bucket that is the destination for broker logs. | 
| prefix? | string | The S3 prefix that is the destination for broker logs. | 
enabled
Type:
boolean | IResolvable
Specifies whether broker logs get sent to the specified Amazon S3 destination.
bucket?
Type:
string
(optional)
The name of the S3 bucket that is the destination for broker logs.
prefix?
Type:
string
(optional)
The S3 prefix that is the destination for broker logs.
