Show / Hide Table of Contents

Class CfnTablePropsMixin.MagneticStoreWritePropertiesProperty

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

Inheritance
object
CfnTablePropsMixin.MagneticStoreWritePropertiesProperty
Implements
CfnTablePropsMixin.IMagneticStoreWritePropertiesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Timestream
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTablePropsMixin.MagneticStoreWritePropertiesProperty : CfnTablePropsMixin.IMagneticStoreWritePropertiesProperty
Syntax (vb)
Public Class CfnTablePropsMixin.MagneticStoreWritePropertiesProperty Implements CfnTablePropsMixin.IMagneticStoreWritePropertiesProperty
Remarks

See: 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.CfnPropertyMixins.AWS.Timestream;

             var magneticStoreWritePropertiesProperty = new MagneticStoreWritePropertiesProperty {
                 EnableMagneticStoreWrites = false,
                 MagneticStoreRejectedDataLocation = new MagneticStoreRejectedDataLocationProperty {
                     S3Configuration = new S3ConfigurationProperty {
                         BucketName = "bucketName",
                         EncryptionOption = "encryptionOption",
                         KmsKeyId = "kmsKeyId",
                         ObjectKeyPrefix = "objectKeyPrefix"
                     }
                 }
             };

Synopsis

Constructors

MagneticStoreWritePropertiesProperty()

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

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()

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

public MagneticStoreWritePropertiesProperty()
Remarks

See: 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.CfnPropertyMixins.AWS.Timestream;

             var magneticStoreWritePropertiesProperty = new MagneticStoreWritePropertiesProperty {
                 EnableMagneticStoreWrites = false,
                 MagneticStoreRejectedDataLocation = new MagneticStoreRejectedDataLocationProperty {
                     S3Configuration = new S3ConfigurationProperty {
                         BucketName = "bucketName",
                         EncryptionOption = "encryptionOption",
                         KmsKeyId = "kmsKeyId",
                         ObjectKeyPrefix = "objectKeyPrefix"
                     }
                 }
             };

Properties

EnableMagneticStoreWrites

A flag to enable magnetic store writes.

public object? EnableMagneticStoreWrites { get; set; }
Property Value

object

Remarks

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

Type union: either bool or IResolvable

MagneticStoreRejectedDataLocation

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

public object? MagneticStoreRejectedDataLocation { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnTablePropsMixin.IMagneticStoreRejectedDataLocationProperty

Implements

CfnTablePropsMixin.IMagneticStoreWritePropertiesProperty
Back to top Generated by DocFX