Class: Aws::S3::Types::CSVOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::CSVOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
When making an API call, you may pass CSVOutput data as a hash:
{
quote_fields: "ALWAYS", # accepts ALWAYS, ASNEEDED
quote_escape_character: "QuoteEscapeCharacter",
record_delimiter: "RecordDelimiter",
field_delimiter: "FieldDelimiter",
quote_character: "QuoteCharacter",
}
Describes how CSV-formatted results are formatted.
Instance Attribute Summary collapse
-
#field_delimiter ⇒ String
The value used to separate individual fields in a record.
-
#quote_character ⇒ String
The value used for escaping where the field delimiter is part of the value.
-
#quote_escape_character ⇒ String
Th single character used for escaping the quote character inside an already escaped value.
-
#quote_fields ⇒ String
Indicates whether or not all output fields should be quoted.
-
#record_delimiter ⇒ String
The value used to separate individual records.
Instance Attribute Details
#field_delimiter ⇒ String
The value used to separate individual fields in a record.
638 639 640 641 642 643 644 645 |
# File 'lib/aws-sdk-s3/types.rb', line 638 class CSVOutput < Struct.new( :quote_fields, :quote_escape_character, :record_delimiter, :field_delimiter, :quote_character) include Aws::Structure end |
#quote_character ⇒ String
The value used for escaping where the field delimiter is part of the value.
638 639 640 641 642 643 644 645 |
# File 'lib/aws-sdk-s3/types.rb', line 638 class CSVOutput < Struct.new( :quote_fields, :quote_escape_character, :record_delimiter, :field_delimiter, :quote_character) include Aws::Structure end |
#quote_escape_character ⇒ String
Th single character used for escaping the quote character inside an already escaped value.
638 639 640 641 642 643 644 645 |
# File 'lib/aws-sdk-s3/types.rb', line 638 class CSVOutput < Struct.new( :quote_fields, :quote_escape_character, :record_delimiter, :field_delimiter, :quote_character) include Aws::Structure end |
#quote_fields ⇒ String
Indicates whether or not all output fields should be quoted.
638 639 640 641 642 643 644 645 |
# File 'lib/aws-sdk-s3/types.rb', line 638 class CSVOutput < Struct.new( :quote_fields, :quote_escape_character, :record_delimiter, :field_delimiter, :quote_character) include Aws::Structure end |
#record_delimiter ⇒ String
The value used to separate individual records.
638 639 640 641 642 643 644 645 |
# File 'lib/aws-sdk-s3/types.rb', line 638 class CSVOutput < Struct.new( :quote_fields, :quote_escape_character, :record_delimiter, :field_delimiter, :quote_character) include Aws::Structure end |