Class CfnConnectorPropsMixin.WorkerLogDeliveryProperty
Workers can send worker logs to different destination types.
Implements
Inherited Members
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.
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.
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
Remarks
Firehose
Details about delivering logs to Amazon Kinesis Data Firehose.
public object? Firehose { get; set; }
Property Value
Remarks
S3
Details about delivering logs to Amazon S3.
public object? S3 { get; set; }