Class: Aws::S3::Types::OutputSerialization

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/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: "QuoteEscapeCharacter",
    record_delimiter: "RecordDelimiter",
    field_delimiter: "FieldDelimiter",
    quote_character: "QuoteCharacter",
  },
  json: {
    record_delimiter: "RecordDelimiter",
  },
}

Describes how results of the Select job are serialized.

Instance Attribute Summary collapse

Instance Attribute Details

#csvTypes::CSVOutput

Describes the serialization of CSV-encoded Select results.

Returns:



6266
6267
6268
6269
6270
# File 'lib/aws-sdk-s3/types.rb', line 6266

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

#jsonTypes::JSONOutput

Specifies JSON as request’s output serialization format.

Returns:



6266
6267
6268
6269
6270
# File 'lib/aws-sdk-s3/types.rb', line 6266

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