@Stability(value=Stable)
public static interface CfnConnector.S3LogDeliveryProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kafkaconnect.*;
S3LogDeliveryProperty s3LogDeliveryProperty = S3LogDeliveryProperty.builder()
.enabled(false)
// the properties below are optional
.bucket("bucket")
.prefix("prefix")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnector.S3LogDeliveryProperty.Builder
A builder for
CfnConnector.S3LogDeliveryProperty |
static class |
CfnConnector.S3LogDeliveryProperty.Jsii$Proxy
An implementation for
CfnConnector.S3LogDeliveryProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnector.S3LogDeliveryProperty.Builder |
builder() |
default String |
getBucket()
The name of the S3 bucket that is the destination for log delivery.
|
Object |
getEnabled()
Specifies whether connector logs get sent to the specified Amazon S3 destination.
|
default String |
getPrefix()
The S3 prefix that is the destination for log delivery.
|
@Stability(value=Stable) @NotNull Object getEnabled()
@Stability(value=Stable) @Nullable default String getBucket()
@Stability(value=Stable) @Nullable default String getPrefix()
@Stability(value=Stable) static CfnConnector.S3LogDeliveryProperty.Builder builder()
Copyright © 2022. All rights reserved.