Class: Aws::S3::Types::OutputSerialization
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::OutputSerialization
- 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
-
#csv ⇒ Types::CSVOutput
Describes the serialization of CSV-encoded Select results.
-
#json ⇒ Types::JSONOutput
Specifies JSON as request’s output serialization format.
Instance Attribute Details
#csv ⇒ Types::CSVOutput
Describes the serialization of CSV-encoded Select results.
5734 5735 5736 5737 5738 |
# File 'lib/aws-sdk-s3/types.rb', line 5734 class OutputSerialization < Struct.new( :csv, :json) include Aws::Structure end |
#json ⇒ Types::JSONOutput
Specifies JSON as request’s output serialization format.
5734 5735 5736 5737 5738 |
# File 'lib/aws-sdk-s3/types.rb', line 5734 class OutputSerialization < Struct.new( :csv, :json) include Aws::Structure end |