Show / Hide Table of Contents

Class CfnConnectorPropsMixin.S3LogDeliveryProperty

Details about delivering logs to Amazon S3.

Inheritance
object
CfnConnectorPropsMixin.S3LogDeliveryProperty
Implements
CfnConnectorPropsMixin.IS3LogDeliveryProperty
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.S3LogDeliveryProperty : CfnConnectorPropsMixin.IS3LogDeliveryProperty
Syntax (vb)
Public Class CfnConnectorPropsMixin.S3LogDeliveryProperty Implements CfnConnectorPropsMixin.IS3LogDeliveryProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-s3logdelivery.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-s3logdelivery.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 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

string

Remarks

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

Enabled

Specifies whether connector 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-kafkaconnect-connector-s3logdelivery.html#cfn-kafkaconnect-connector-s3logdelivery-enabled

Type union: either bool or IResolvable

Prefix

The S3 prefix that is the destination for log delivery.

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

string

Remarks

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

Implements

CfnConnectorPropsMixin.IS3LogDeliveryProperty
Back to top Generated by DocFX