interface S3Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.S3Property |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_S3Property |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.S3Property |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.S3Property |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnClusterPropsMixin » S3Property |
The details of the Amazon S3 destination for broker logs.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html
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/cfn-property-mixins';
const s3Property: msk.CfnClusterPropsMixin.S3Property = {
bucket: 'bucket',
enabled: false,
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the S3 bucket that is the destination for broker logs. |
| enabled? | boolean | IResolvable | Specifies whether broker logs get sent to the specified Amazon S3 destination. |
| prefix? | string | The S3 prefix that is the destination for broker logs. |
bucket?
Type:
string
(optional)
The name of the S3 bucket that is the destination for broker logs.
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether broker logs get sent to the specified Amazon S3 destination.
prefix?
Type:
string
(optional)
The S3 prefix that is the destination for broker logs.

.NET
Go
Java
Python
TypeScript