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

.NET
Go
Java
Python
TypeScript