aws-cdk-lib.aws_timestream.CfnTable.MagneticStoreWritePropertiesProperty

interface MagneticStoreWritePropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.Timestream.CfnTable.MagneticStoreWritePropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awstimestream#CfnTable_MagneticStoreWritePropertiesProperty
Javasoftware.amazon.awscdk.services.timestream.CfnTable.MagneticStoreWritePropertiesProperty
Pythonaws_cdk.aws_timestream.CfnTable.MagneticStoreWritePropertiesProperty
TypeScript aws-cdk-lib » aws_timestream » CfnTable » 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-lib';
const magneticStoreWritePropertiesProperty: timestream.CfnTable.MagneticStoreWritePropertiesProperty = {
  enableMagneticStoreWrites: false,

  // the properties below are optional
  magneticStoreRejectedDataLocation: {
    s3Configuration: {
      bucketName: 'bucketName',
      encryptionOption: 'encryptionOption',

      // the properties below are optional
      kmsKeyId: 'kmsKeyId',
      objectKeyPrefix: 'objectKeyPrefix',
    },
  },
};

Properties

NameTypeDescription
enableMagneticStoreWritesboolean | IResolvableA flag to enable magnetic store writes.
magneticStoreRejectedDataLocation?IResolvable | MagneticStoreRejectedDataLocationPropertyThe location to write error reports for records rejected asynchronously during magnetic store writes.

enableMagneticStoreWrites

Type: boolean | IResolvable

A flag to enable magnetic store writes.


magneticStoreRejectedDataLocation?

Type: IResolvable | MagneticStoreRejectedDataLocationProperty (optional)

The location to write error reports for records rejected asynchronously during magnetic store writes.