Class CreateUploadRequestDataAttributes

Upload configuration specifying how data is uploaded by the user, and properties of the table to associate the upload with.

Hierarchy

  • CreateUploadRequestDataAttributes

Constructors

Properties

additionalProperties?: {
    [key: string]: any;
}

A container for additional, undeclared properties. This is a holder for any undeclared properties as specified with the 'additionalProperties' keyword in the OAS document.

Type declaration

  • [key: string]: any
headers: string[]

The CSV file headers that define the schema fields, provided in the same order as the columns in the uploaded file.

partCount: number

Number of parts to split the file into for multipart upload.

partSize: number

The size of each part in the upload in bytes. All parts except the last one must be at least 5,000,000 bytes.

tableName: string

Name of the table to associate with this upload.

Generated using TypeDoc