Interface CfnInfluxDBCluster.LogDeliveryConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInfluxDBCluster.LogDeliveryConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnInfluxDBCluster
@Stability(Stable)
public static interface CfnInfluxDBCluster.LogDeliveryConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for sending logs to customer account from the InfluxDB cluster.
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.timestream.*;
LogDeliveryConfigurationProperty logDeliveryConfigurationProperty = LogDeliveryConfigurationProperty.builder()
.s3Configuration(S3ConfigurationProperty.builder()
.bucketName("bucketName")
.enabled(false)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInfluxDBCluster.LogDeliveryConfigurationPropertystatic final classAn implementation forCfnInfluxDBCluster.LogDeliveryConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()S3 configuration for sending logs to customer account from the InfluxDB cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Configuration
S3 configuration for sending logs to customer account from the InfluxDB cluster.Returns union: either
IResolvableorCfnInfluxDBCluster.S3ConfigurationProperty- See Also:
-
builder
-