Show / Hide Table of Contents

Class CfnTable.CsvProperty

The options for imported source files in CSV format.

Inheritance
object
CfnTable.CsvProperty
Implements
CfnTable.ICsvProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.DynamoDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTable.CsvProperty : CfnTable.ICsvProperty
Syntax (vb)
Public Class CfnTable.CsvProperty Implements CfnTable.ICsvProperty
Remarks

The values are Delimiter and HeaderList.

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

             var csvProperty = new CsvProperty {
                 Delimiter = "delimiter",
                 HeaderList = new [] { "headerList" }
             };

Synopsis

Constructors

CsvProperty()

The options for imported source files in CSV format.

Properties

Delimiter

The delimiter used for separating items in the CSV file being imported.

HeaderList

List of the headers used to specify a common header for all source CSV files being imported.

Constructors

CsvProperty()

The options for imported source files in CSV format.

public CsvProperty()
Remarks

The values are Delimiter and HeaderList.

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

             var csvProperty = new CsvProperty {
                 Delimiter = "delimiter",
                 HeaderList = new [] { "headerList" }
             };

Properties

Delimiter

The delimiter used for separating items in the CSV file being imported.

public string? Delimiter { get; set; }
Property Value

string

Remarks

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

HeaderList

List of the headers used to specify a common header for all source CSV files being imported.

public string[]? HeaderList { get; set; }
Property Value

string[]

Remarks

If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.

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

Implements

CfnTable.ICsvProperty
Back to top Generated by DocFX