package awsmsk // The broker logs configuration for this MSK cluster. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // brokerLogsProperty := &BrokerLogsProperty{ // CloudWatchLogs: &CloudWatchLogsProperty{ // Enabled: jsii.Boolean(false), // // // the properties below are optional // LogGroup: jsii.String("logGroup"), // }, // Firehose: &FirehoseProperty{ // Enabled: jsii.Boolean(false), // // // the properties below are optional // DeliveryStream: jsii.String("deliveryStream"), // }, // S3: &S3Property{ // Enabled: jsii.Boolean(false), // // // the properties below are optional // Bucket: jsii.String("bucket"), // Prefix: jsii.String("prefix"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokerlogs.html // type CfnCluster_BrokerLogsProperty struct { // Details of the CloudWatch Logs destination for broker logs. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokerlogs.html#cfn-msk-cluster-brokerlogs-cloudwatchlogs // CloudWatchLogs interface{} `field:"optional" json:"cloudWatchLogs" yaml:"cloudWatchLogs"` // Details of the Kinesis Data Firehose delivery stream that is the destination for broker logs. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokerlogs.html#cfn-msk-cluster-brokerlogs-firehose // Firehose interface{} `field:"optional" json:"firehose" yaml:"firehose"` // Details of the Amazon S3 destination for broker logs. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokerlogs.html#cfn-msk-cluster-brokerlogs-s3 // S3 interface{} `field:"optional" json:"s3" yaml:"s3"` }