aws-cdk-lib.aws_msk.CfnCluster.S3Property

interface S3Property

LanguageType name
.NETAmazon.CDK.AWS.MSK.CfnCluster.S3Property
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnCluster_S3Property
Javasoftware.amazon.awscdk.services.msk.CfnCluster.S3Property
Pythonaws_cdk.aws_msk.CfnCluster.S3Property
TypeScript aws-cdk-lib » 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 { aws_msk as msk } from 'aws-cdk-lib';
const s3Property: msk.CfnCluster.S3Property = {
  enabled: false,

  // the properties below are optional
  bucket: 'bucket',
  prefix: 'prefix',
};

Properties

NameTypeDescription
enabledboolean | IResolvableSpecifies whether broker logs get sent to the specified Amazon S3 destination.
bucket?stringThe name of the S3 bucket that is the destination for broker logs.
prefix?stringThe 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.