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();