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

Class: Aws::Glacier::Types::CSVOutput

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

Overview

Note:

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

{
  quote_fields: "ALWAYS", # accepts ALWAYS, ASNEEDED
  quote_escape_character: "string",
  record_delimiter: "string",
  field_delimiter: "string",
  quote_character: "string",
}

Contains information about the comma-separated value (CSV) file that the job results are stored in.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#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.

#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.

#quote_fieldsString

A value that indicates whether all output fields should be contained within quotation marks.

Possible values:

  • ALWAYS
  • ASNEEDED

Returns:

  • (String)

    A value that indicates whether all output fields should be contained within quotation marks.

#record_delimiterString

A value used to separate individual records from each other.

Returns:

  • (String)

    A value used to separate individual records from each other.