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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.MagneticStoreRejectedDataLocationPropertystatic final classAn implementation forCfnTable.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
IResolvableorCfnTable.S3ConfigurationProperty- See Also:
-
builder
-