Interface CfnConnector.S3LogDeliveryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.S3LogDeliveryProperty.Jsii$Proxy
- Enclosing class:
CfnConnector
@Stability(Stable)
public static interface CfnConnector.S3LogDeliveryProperty
extends software.amazon.jsii.JsiiSerializable
Details about delivering logs to Amazon S3.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnector.S3LogDeliveryProperty
static final class
An implementation forCfnConnector.S3LogDeliveryProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Specifies whether connector logs get sent to the specified Amazon S3 destination.- See Also:
-
getBucket
The name of the S3 bucket that is the destination for log delivery.- See Also:
-
getPrefix
The S3 prefix that is the destination for log delivery.- See Also:
-
builder
-