interface S3Property
This page is available in another version. Click here for the v2 documentation.
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MSK.CfnCluster.S3Property |
![]() | software.amazon.awscdk.services.msk.CfnCluster.S3Property |
![]() | aws_cdk.aws_msk.CfnCluster.S3Property |
![]() | @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.