Interface CfnInfluxDBInstance.LogDeliveryConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInfluxDBInstance.LogDeliveryConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnInfluxDBInstance
@Stability(Stable)
public static interface CfnInfluxDBInstance.LogDeliveryConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for sending InfluxDB engine logs to a specified S3 bucket.
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 forCfnInfluxDBInstance.LogDeliveryConfigurationPropertystatic final classAn implementation forCfnInfluxDBInstance.LogDeliveryConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Configuration
Configuration for S3 bucket log delivery.Returns union: either
IResolvableorCfnInfluxDBInstance.S3ConfigurationProperty- See Also:
-
builder
-