interface S3LogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnChannelPropsMixin.S3LogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnChannelPropsMixin_S3LogDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnChannelPropsMixin.S3LogDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnChannelPropsMixin.S3LogDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnChannelPropsMixin » S3LogDestinationProperty |
S3 log destination details.
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 s3LogDestinationProperty: msk.CfnChannelPropsMixin.S3LogDestinationProperty = {
bucket: 'bucket',
enabled: false,
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the S3 bucket for log delivery. |
| enabled? | boolean | IResolvable | Whether S3 logging is enabled. |
| prefix? | string | The S3 prefix for log delivery. |
bucket?
Type:
string
(optional)
The name of the S3 bucket for log delivery.
enabled?
Type:
boolean | IResolvable
(optional)
Whether S3 logging is enabled.
prefix?
Type:
string
(optional)
The S3 prefix for log delivery.

.NET
Go
Java
Python
TypeScript