You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::QuickSight::Types::UploadSettings

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UploadSettings as input to an Aws::Client method, you can use a vanilla Hash:

{
  format: "CSV", # accepts CSV, TSV, CLF, ELF, XLSX, JSON
  start_from_row: 1,
  contains_header: false,
  text_qualifier: "DOUBLE_QUOTE", # accepts DOUBLE_QUOTE, SINGLE_QUOTE
  delimiter: "Delimiter",
}

Information about the format for a source file or files.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#contains_headerBoolean

Whether the file has a header row, or the files each have a header row.

Returns:

  • (Boolean)

    Whether the file has a header row, or the files each have a header row.

#delimiterString

The delimiter between values in the file.

Returns:

  • (String)

    The delimiter between values in the file.

#formatString

File format.

Possible values:

  • CSV
  • TSV
  • CLF
  • ELF
  • XLSX
  • JSON

Returns:

  • (String)

    File format.

#start_from_rowInteger

A row number to start reading data from.

Returns:

  • (Integer)

    A row number to start reading data from.

#text_qualifierString

Text qualifier.

Possible values:

  • DOUBLE_QUOTE
  • SINGLE_QUOTE

Returns:

  • (String)

    Text qualifier.