Class: Aws::Glacier::Types::InputSerialization

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 InputSerialization data as a hash:

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

Describes how the archive is serialized.

Instance Attribute Summary collapse

Instance Attribute Details

#csvTypes::CSVInput

Describes the serialization of a CSV-encoded object.

Returns:



1519
1520
1521
1522
# File 'lib/aws-sdk-glacier/types.rb', line 1519

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