Interface CfnTablePropsMixin.MagneticStoreRejectedDataLocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTablePropsMixin.MagneticStoreRejectedDataLocationProperty.Jsii$Proxy
- Enclosing class:
CfnTablePropsMixin
@Stability(Stable)
public static interface CfnTablePropsMixin.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.cfnpropertymixins.services.timestream.*;
MagneticStoreRejectedDataLocationProperty magneticStoreRejectedDataLocationProperty = MagneticStoreRejectedDataLocationProperty.builder()
.s3Configuration(S3ConfigurationProperty.builder()
.bucketName("bucketName")
.encryptionOption("encryptionOption")
.kmsKeyId("kmsKeyId")
.objectKeyPrefix("objectKeyPrefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTablePropsMixin.MagneticStoreRejectedDataLocationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Configuration
Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes.Returns union: either
IResolvableorCfnTablePropsMixin.S3ConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnTablePropsMixin.MagneticStoreRejectedDataLocationProperty.Builder builder()
-