Show / Hide Table of Contents

Class CfnTablePropsMixin.InputFormatOptionsProperty

The format options for the data that was imported into the target table.

Inheritance
object
CfnTablePropsMixin.InputFormatOptionsProperty
Implements
CfnTablePropsMixin.IInputFormatOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTablePropsMixin.InputFormatOptionsProperty : CfnTablePropsMixin.IInputFormatOptionsProperty
Syntax (vb)
Public Class CfnTablePropsMixin.InputFormatOptionsProperty Implements CfnTablePropsMixin.IInputFormatOptionsProperty
Remarks

There is one value, CsvOption.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-inputformatoptions.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.Mixins.Preview.AWS.DynamoDB.Mixins;

             var inputFormatOptionsProperty = new InputFormatOptionsProperty {
                 Csv = new CsvProperty {
                     Delimiter = "delimiter",
                     HeaderList = new [] { "headerList" }
                 }
             };

Synopsis

Constructors

InputFormatOptionsProperty()

The format options for the data that was imported into the target table.

Properties

Csv

The options for imported source files in CSV format.

Constructors

InputFormatOptionsProperty()

The format options for the data that was imported into the target table.

public InputFormatOptionsProperty()
Remarks

There is one value, CsvOption.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-inputformatoptions.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.Mixins.Preview.AWS.DynamoDB.Mixins;

             var inputFormatOptionsProperty = new InputFormatOptionsProperty {
                 Csv = new CsvProperty {
                     Delimiter = "delimiter",
                     HeaderList = new [] { "headerList" }
                 }
             };

Properties

Csv

The options for imported source files in CSV format.

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

object

Remarks

The values are Delimiter and HeaderList.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-inputformatoptions.html#cfn-dynamodb-table-inputformatoptions-csv

Type union: either IResolvable or CfnTablePropsMixin.ICsvProperty

Implements

CfnTablePropsMixin.IInputFormatOptionsProperty
Back to top Generated by DocFX