Show / Hide Table of Contents

Class CfnConnectorPropsMixin.WorkerLogDeliveryProperty

Workers can send worker logs to different destination types.

Inheritance
object
CfnConnectorPropsMixin.WorkerLogDeliveryProperty
Implements
CfnConnectorPropsMixin.IWorkerLogDeliveryProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnConnectorPropsMixin.WorkerLogDeliveryProperty : CfnConnectorPropsMixin.IWorkerLogDeliveryProperty
Syntax (vb)
Public Class CfnConnectorPropsMixin.WorkerLogDeliveryProperty Implements CfnConnectorPropsMixin.IWorkerLogDeliveryProperty
Remarks

This configuration specifies the details of these destinations.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-workerlogdelivery.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.Mixins.Preview.AWS.KafkaConnect.Mixins;

             var workerLogDeliveryProperty = new WorkerLogDeliveryProperty {
                 CloudWatchLogs = new CloudWatchLogsLogDeliveryProperty {
                     Enabled = false,
                     LogGroup = "logGroup"
                 },
                 Firehose = new FirehoseLogDeliveryProperty {
                     DeliveryStream = "deliveryStream",
                     Enabled = false
                 },
                 S3 = new S3LogDeliveryProperty {
                     Bucket = "bucket",
                     Enabled = false,
                     Prefix = "prefix"
                 }
             };

Synopsis

Constructors

WorkerLogDeliveryProperty()

Workers can send worker logs to different destination types.

Properties

CloudWatchLogs

Details about delivering logs to Amazon CloudWatch Logs.

Firehose

Details about delivering logs to Amazon Kinesis Data Firehose.

S3

Details about delivering logs to Amazon S3.

Constructors

WorkerLogDeliveryProperty()

Workers can send worker logs to different destination types.

public WorkerLogDeliveryProperty()
Remarks

This configuration specifies the details of these destinations.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-workerlogdelivery.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.Mixins.Preview.AWS.KafkaConnect.Mixins;

             var workerLogDeliveryProperty = new WorkerLogDeliveryProperty {
                 CloudWatchLogs = new CloudWatchLogsLogDeliveryProperty {
                     Enabled = false,
                     LogGroup = "logGroup"
                 },
                 Firehose = new FirehoseLogDeliveryProperty {
                     DeliveryStream = "deliveryStream",
                     Enabled = false
                 },
                 S3 = new S3LogDeliveryProperty {
                     Bucket = "bucket",
                     Enabled = false,
                     Prefix = "prefix"
                 }
             };

Properties

CloudWatchLogs

Details about delivering logs to Amazon CloudWatch Logs.

public object? CloudWatchLogs { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-workerlogdelivery.html#cfn-kafkaconnect-connector-workerlogdelivery-cloudwatchlogs

Type union: either IResolvable or CfnConnectorPropsMixin.ICloudWatchLogsLogDeliveryProperty

Firehose

Details about delivering logs to Amazon Kinesis Data Firehose.

public object? Firehose { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-workerlogdelivery.html#cfn-kafkaconnect-connector-workerlogdelivery-firehose

Type union: either IResolvable or CfnConnectorPropsMixin.IFirehoseLogDeliveryProperty

S3

Details about delivering logs to Amazon S3.

public object? S3 { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-workerlogdelivery.html#cfn-kafkaconnect-connector-workerlogdelivery-s3

Type union: either IResolvable or CfnConnectorPropsMixin.IS3LogDeliveryProperty

Implements

CfnConnectorPropsMixin.IWorkerLogDeliveryProperty
Back to top Generated by DocFX