Interface CfnInfluxDBInstance.S3ConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInfluxDBInstance.S3ConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnInfluxDBInstance
@Stability(Stable)
public static interface CfnInfluxDBInstance.S3ConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for S3 bucket log delivery.
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.*;
S3ConfigurationProperty s3ConfigurationProperty = S3ConfigurationProperty.builder()
.bucketName("bucketName")
.enabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInfluxDBInstance.S3ConfigurationPropertystatic final classAn implementation forCfnInfluxDBInstance.S3ConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The bucket name of the customer S3 bucket.Indicates whether log delivery to the S3 bucket is enabled.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The bucket name of the customer S3 bucket.- See Also:
-
getEnabled
Indicates whether log delivery to the S3 bucket is enabled.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-