interface S3LoggingConfiguration
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MSK.S3LoggingConfiguration |
![]() | software.amazon.awscdk.services.msk.S3LoggingConfiguration |
![]() | aws_cdk.aws_msk.S3LoggingConfiguration |
![]() | @aws-cdk/aws-msk » S3LoggingConfiguration |
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';
import * as s3 from '@aws-cdk/aws-s3';
declare const bucket: s3.Bucket;
const s3LoggingConfiguration: msk.S3LoggingConfiguration = {
bucket: bucket,
// the properties below are optional
prefix: 'prefix',
};
Properties
Name | Type | Description |
---|---|---|
bucket | IBucket | The S3 bucket that is the destination for broker logs. |
prefix? | string | The S3 prefix that is the destination for broker logs. |
bucket
Type:
IBucket
The S3 bucket that is the destination for broker logs.
prefix?
Type:
string
(optional, default: no prefix)
The S3 prefix that is the destination for broker logs.