Class CfnConnectorPropsMixin.S3LogDeliveryProperty
Details about delivering logs to Amazon S3.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnConnectorPropsMixin.S3LogDeliveryProperty : CfnConnectorPropsMixin.IS3LogDeliveryProperty
Syntax (vb)
Public Class CfnConnectorPropsMixin.S3LogDeliveryProperty Implements CfnConnectorPropsMixin.IS3LogDeliveryProperty
Remarks
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 s3LogDeliveryProperty = new S3LogDeliveryProperty {
Bucket = "bucket",
Enabled = false,
Prefix = "prefix"
};
Synopsis
Constructors
| S3LogDeliveryProperty() | Details about delivering logs to Amazon S3. |
Properties
| Bucket | The name of the S3 bucket that is the destination for log delivery. |
| Enabled | Specifies whether connector logs get sent to the specified Amazon S3 destination. |
| Prefix | The S3 prefix that is the destination for log delivery. |
Constructors
S3LogDeliveryProperty()
Details about delivering logs to Amazon S3.
public S3LogDeliveryProperty()
Remarks
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 s3LogDeliveryProperty = new S3LogDeliveryProperty {
Bucket = "bucket",
Enabled = false,
Prefix = "prefix"
};
Properties
Bucket
The name of the S3 bucket that is the destination for log delivery.
public string? Bucket { get; set; }
Property Value
Remarks
Enabled
Specifies whether connector 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 log delivery.
public string? Prefix { get; set; }