Class CfnCluster.S3Property
The details of the Amazon S3 destination for broker logs.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCluster.S3Property : CfnCluster.IS3Property
Syntax (vb)
Public Class CfnCluster.S3Property Implements CfnCluster.IS3Property
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MSK;
var s3Property = new S3Property {
Enabled = false,
// the properties below are optional
Bucket = "bucket",
Prefix = "prefix"
};
Synopsis
Constructors
| S3Property() | The details of the Amazon S3 destination for broker logs. |
Properties
| Bucket | The name of the S3 bucket that is the destination for broker logs. |
| Enabled | Specifies whether broker logs get sent to the specified Amazon S3 destination. |
| Prefix | The S3 prefix that is the destination for broker logs. |
Constructors
S3Property()
The details of the Amazon S3 destination for broker logs.
public S3Property()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MSK;
var s3Property = new S3Property {
Enabled = false,
// the properties below are optional
Bucket = "bucket",
Prefix = "prefix"
};
Properties
Bucket
The name of the S3 bucket that is the destination for broker logs.
public string? Bucket { get; set; }
Property Value
Remarks
Enabled
Specifies whether broker logs get sent to the specified Amazon S3 destination.
public object Enabled { get; set; }
Property Value
Remarks
Prefix
The S3 prefix that is the destination for broker logs.
public string? Prefix { get; set; }