Class: Aws::Glacier::Types::CSVOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glacier::Types::CSVOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glacier/types.rb
Overview
Contains information about the comma-separated value (CSV) file that the job results are stored in.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field_delimiter ⇒ String
A value used to separate individual fields from each other within a record.
-
#quote_character ⇒ String
A value used as an escape character where the field delimiter is part of the value.
-
#quote_escape_character ⇒ String
A single character used for escaping the quotation-mark character inside an already escaped value.
-
#quote_fields ⇒ String
A value that indicates whether all output fields should be contained within quotation marks.
-
#record_delimiter ⇒ String
A value used to separate individual records from each other.
Instance Attribute Details
#field_delimiter ⇒ String
A value used to separate individual fields from each other within a record.
203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-glacier/types.rb', line 203 class CSVOutput < Struct.new( :quote_fields, :quote_escape_character, :record_delimiter, :field_delimiter, :quote_character) SENSITIVE = [] include Aws::Structure end |
#quote_character ⇒ String
A value used as an escape character where the field delimiter is part of the value.
203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-glacier/types.rb', line 203 class CSVOutput < Struct.new( :quote_fields, :quote_escape_character, :record_delimiter, :field_delimiter, :quote_character) SENSITIVE = [] include Aws::Structure end |
#quote_escape_character ⇒ String
A single character used for escaping the quotation-mark character inside an already escaped value.
203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-glacier/types.rb', line 203 class CSVOutput < Struct.new( :quote_fields, :quote_escape_character, :record_delimiter, :field_delimiter, :quote_character) SENSITIVE = [] include Aws::Structure end |
#quote_fields ⇒ String
A value that indicates whether all output fields should be contained within quotation marks.
203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-glacier/types.rb', line 203 class CSVOutput < Struct.new( :quote_fields, :quote_escape_character, :record_delimiter, :field_delimiter, :quote_character) SENSITIVE = [] include Aws::Structure end |
#record_delimiter ⇒ String
A value used to separate individual records from each other.
203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-glacier/types.rb', line 203 class CSVOutput < Struct.new( :quote_fields, :quote_escape_character, :record_delimiter, :field_delimiter, :quote_character) SENSITIVE = [] include Aws::Structure end |