Interface CfnTable.MagneticStoreWritePropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.MagneticStoreWritePropertiesProperty.Jsii$Proxy
- Enclosing class:
- CfnTable
@Stability(Stable)
public static interface CfnTable.MagneticStoreWritePropertiesProperty
extends software.amazon.jsii.JsiiSerializable
The set of properties on a table for configuring magnetic store writes.
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.*;
MagneticStoreWritePropertiesProperty magneticStoreWritePropertiesProperty = MagneticStoreWritePropertiesProperty.builder()
.enableMagneticStoreWrites(false)
// the properties below are optional
.magneticStoreRejectedDataLocation(MagneticStoreRejectedDataLocationProperty.builder()
.s3Configuration(S3ConfigurationProperty.builder()
.bucketName("bucketName")
.encryptionOption("encryptionOption")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.objectKeyPrefix("objectKeyPrefix")
.build())
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.MagneticStoreWritePropertiesPropertystatic final classAn implementation forCfnTable.MagneticStoreWritePropertiesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnableMagneticStoreWrites
A flag to enable magnetic store writes. -
getMagneticStoreRejectedDataLocation
The location to write error reports for records rejected asynchronously during magnetic store writes. -
builder
-