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

Class: Aws::Glacier::Types::CSVInput

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

Overview

Note:

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

{
  file_header_info: "USE", # accepts USE, IGNORE, NONE
  comments: "string",
  quote_escape_character: "string",
  record_delimiter: "string",
  field_delimiter: "string",
  quote_character: "string",
}

Contains information about the comma-separated value (CSV) file to select from.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#commentsString

A single character used to indicate that a row should be ignored when the character is present at the start of that row.

Returns:

  • (String)

    A single character used to indicate that a row should be ignored when the character is present at the start of that row.

#field_delimiterString

A value used to separate individual fields from each other within a record.

Returns:

  • (String)

    A value used to separate individual fields from each other within a record.

#file_header_infoString

Describes the first line of input. Valid values are None, Ignore, and Use.

Possible values:

  • USE
  • IGNORE
  • NONE

Returns:

  • (String)

    Describes the first line of input.

#quote_characterString

A value used as an escape character where the field delimiter is part of the value.

Returns:

  • (String)

    A value used as an escape character where the field delimiter is part of the value.

#quote_escape_characterString

A single character used for escaping the quotation-mark character inside an already escaped value.

Returns:

  • (String)

    A single character used for escaping the quotation-mark character inside an already escaped value.

#record_delimiterString

A value used to separate individual records from each other.

Returns:

  • (String)

    A value used to separate individual records from each other.