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