interface MagneticStoreRejectedDataLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnTablePropsMixin.MagneticStoreRejectedDataLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnTablePropsMixin_MagneticStoreRejectedDataLocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnTablePropsMixin.MagneticStoreRejectedDataLocationProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnTablePropsMixin.MagneticStoreRejectedDataLocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » CfnTablePropsMixin » MagneticStoreRejectedDataLocationProperty |
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 { mixins as timestream_mixins } from '@aws-cdk/mixins-preview/aws-timestream';
const magneticStoreRejectedDataLocationProperty: timestream_mixins.CfnTablePropsMixin.MagneticStoreRejectedDataLocationProperty = {
s3Configuration: {
bucketName: 'bucketName',
encryptionOption: 'encryptionOption',
kmsKeyId: 'kmsKeyId',
objectKeyPrefix: 'objectKeyPrefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes. |
s3Configuration?
Type:
IResolvable | S3
(optional)
Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes.

.NET
Go
Java
Python
TypeScript