interface MagneticStoreWritePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnTablePropsMixin.MagneticStoreWritePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnTablePropsMixin_MagneticStoreWritePropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnTablePropsMixin.MagneticStoreWritePropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnTablePropsMixin.MagneticStoreWritePropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » 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 { aws_timestream as timestream } from '@aws-cdk/cfn-property-mixins';
const magneticStoreWritePropertiesProperty: timestream.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