Interface CfnTable.MagneticStoreRejectedDataLocationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTable.MagneticStoreRejectedDataLocationProperty.Jsii$Proxy
Enclosing class:
CfnTable

@Stability(Stable) public static interface CfnTable.MagneticStoreRejectedDataLocationProperty extends software.amazon.jsii.JsiiSerializable
The location to write error reports for records rejected, asynchronously, during 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.*;
 MagneticStoreRejectedDataLocationProperty magneticStoreRejectedDataLocationProperty = MagneticStoreRejectedDataLocationProperty.builder()
         .s3Configuration(S3ConfigurationProperty.builder()
                 .bucketName("bucketName")
                 .encryptionOption("encryptionOption")
                 // the properties below are optional
                 .kmsKeyId("kmsKeyId")
                 .objectKeyPrefix("objectKeyPrefix")
                 .build())
         .build();
 

See Also: