Show / Hide Table of Contents

Class CfnCluster.S3Property

The details of the Amazon S3 destination for broker logs.

Inheritance
object
CfnCluster.S3Property
Implements
CfnCluster.IS3Property
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket

Enabled

Specifies whether broker logs get sent to the specified Amazon S3 destination.

public object Enabled { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled

Type union: either bool or IResolvable

Prefix

The S3 prefix that is the destination for broker logs.

public string? Prefix { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix

Implements

CfnCluster.IS3Property
Back to top Generated by DocFX