Show / Hide Table of Contents

Class CfnTable.MagneticStoreWritePropertiesProperty

The set of properties on a table for configuring magnetic store writes.

Inheritance
System.Object
CfnTable.MagneticStoreWritePropertiesProperty
Implements
CfnTable.IMagneticStoreWritePropertiesProperty
Namespace: Amazon.CDK.AWS.Timestream
Assembly: Amazon.CDK.AWS.Timestream.dll
Syntax (csharp)
public class MagneticStoreWritePropertiesProperty : Object, CfnTable.IMagneticStoreWritePropertiesProperty
Syntax (vb)
Public Class MagneticStoreWritePropertiesProperty
    Inherits Object
    Implements CfnTable.IMagneticStoreWritePropertiesProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-table-magneticstorewriteproperties.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Timestream;

var magneticStoreWritePropertiesProperty = new MagneticStoreWritePropertiesProperty {
    EnableMagneticStoreWrites = false,

    // the properties below are optional
    MagneticStoreRejectedDataLocation = new MagneticStoreRejectedDataLocationProperty {
        S3Configuration = new S3ConfigurationProperty {
            BucketName = "bucketName",
            EncryptionOption = "encryptionOption",

            // the properties below are optional
            KmsKeyId = "kmsKeyId",
            ObjectKeyPrefix = "objectKeyPrefix"
        }
    }
};

Synopsis

Constructors

MagneticStoreWritePropertiesProperty()

Properties

EnableMagneticStoreWrites

A flag to enable magnetic store writes.

MagneticStoreRejectedDataLocation

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

Constructors

MagneticStoreWritePropertiesProperty()

public MagneticStoreWritePropertiesProperty()

Properties

EnableMagneticStoreWrites

A flag to enable magnetic store writes.

public object EnableMagneticStoreWrites { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-table-magneticstorewriteproperties.html#cfn-timestream-table-magneticstorewriteproperties-enablemagneticstorewrites

MagneticStoreRejectedDataLocation

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

public object MagneticStoreRejectedDataLocation { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-table-magneticstorewriteproperties.html#cfn-timestream-table-magneticstorewriteproperties-magneticstorerejecteddatalocation

Implements

CfnTable.IMagneticStoreWritePropertiesProperty
Back to top Generated by DocFX