interface S3Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.S3Property |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_S3Property |
Java | software.amazon.awscdk.services.msk.CfnReplicator.S3Property |
Python | aws_cdk.aws_msk.CfnReplicator.S3Property |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » S3Property |
Details about delivering logs to S3.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-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-lib';
const s3Property: msk.CfnReplicator.S3Property = {
enabled: false,
// the properties below are optional
bucket: 'bucket',
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | IResolvable | Whether log delivery to S3 is enabled. |
| bucket? | string | The S3 bucket that is the destination for log delivery. |
| prefix? | string | The S3 prefix that is the destination for log delivery. |
enabled
Type:
boolean | IResolvable
Whether log delivery to S3 is enabled.
bucket?
Type:
string
(optional)
The S3 bucket that is the destination for log delivery.
prefix?
Type:
string
(optional)
The S3 prefix that is the destination for log delivery.

.NET
Go
Java
Python
TypeScript