Class: Aws::Glacier::Types::OutputSerialization

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glacier/types.rb

Overview

Note:

When making an API call, you may pass OutputSerialization data as a hash:

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

Describes how the select output is serialized.

Instance Attribute Summary collapse

Instance Attribute Details

#csvTypes::CSVOutput

Describes the serialization of CSV-encoded query results.

Returns:



2226
2227
2228
2229
# File 'lib/aws-sdk-glacier/types.rb', line 2226

class OutputSerialization < Struct.new(
  :csv)
  include Aws::Structure
end