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
Describes how results of the Select job are serialized.
Constant Summary collapse
- SENSITIVE =
[]
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.
12120 12121 12122 12123 12124 12125 |
# File 'lib/aws-sdk-s3/types.rb', line 12120 class OutputSerialization < Struct.new( :csv, :json) SENSITIVE = [] include Aws::Structure end |
#json ⇒ Types::JSONOutput
Specifies JSON as request’s output serialization format.
12120 12121 12122 12123 12124 12125 |
# File 'lib/aws-sdk-s3/types.rb', line 12120 class OutputSerialization < Struct.new( :csv, :json) SENSITIVE = [] include Aws::Structure end |