Interface CfnTablePropsMixin.MagneticStoreWritePropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTablePropsMixin.MagneticStoreWritePropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnTablePropsMixin
@Stability(Stable)
public static interface CfnTablePropsMixin.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.cfnpropertymixins.services.timestream.*;
MagneticStoreWritePropertiesProperty magneticStoreWritePropertiesProperty = MagneticStoreWritePropertiesProperty.builder()
.enableMagneticStoreWrites(false)
.magneticStoreRejectedDataLocation(MagneticStoreRejectedDataLocationProperty.builder()
.s3Configuration(S3ConfigurationProperty.builder()
.bucketName("bucketName")
.encryptionOption("encryptionOption")
.kmsKeyId("kmsKeyId")
.objectKeyPrefix("objectKeyPrefix")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTablePropsMixin.MagneticStoreWritePropertiesPropertystatic final classAn implementation forCfnTablePropsMixin.MagneticStoreWritePropertiesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnableMagneticStoreWrites
A flag to enable magnetic store writes.Returns union: either
BooleanorIResolvable- See Also:
-
getMagneticStoreRejectedDataLocation
The location to write error reports for records rejected asynchronously during magnetic store writes.Returns union: either
IResolvableorCfnTablePropsMixin.MagneticStoreRejectedDataLocationProperty- See Also:
-
builder
-