Class: Aws::Glacier::Types::CSVInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glacier/types.rb

Overview

Note:

When making an API call, you may pass CSVInput data as a hash:

{
  file_header_info: "USE", # accepts USE, IGNORE, NONE
  comments: "string",
  quote_escape_character: "string",
  record_delimiter: "string",
  field_delimiter: "string",
  quote_character: "string",
}

Contains information about the comma-separated value (CSV) file to select from.

Instance Attribute Summary collapse

Instance Attribute Details

#commentsString

A single character used to indicate that a row should be ignored when the character is present at the start of that row.

Returns:

  • (String)


199
200
201
202
203
204
205
206
207
# File 'lib/aws-sdk-glacier/types.rb', line 199

class CSVInput < Struct.new(
  :file_header_info,
  :comments,
  :quote_escape_character,
  :record_delimiter,
  :field_delimiter,
  :quote_character)
  include Aws::Structure
end

#field_delimiterString

A value used to separate individual fields from each other within a record.

Returns:

  • (String)


199
200
201
202
203
204
205
206
207
# File 'lib/aws-sdk-glacier/types.rb', line 199

class CSVInput < Struct.new(
  :file_header_info,
  :comments,
  :quote_escape_character,
  :record_delimiter,
  :field_delimiter,
  :quote_character)
  include Aws::Structure
end

#file_header_infoString

Describes the first line of input. Valid values are ‘None`, `Ignore`, and `Use`.

Returns:

  • (String)


199
200
201
202
203
204
205
206
207
# File 'lib/aws-sdk-glacier/types.rb', line 199

class CSVInput < Struct.new(
  :file_header_info,
  :comments,
  :quote_escape_character,
  :record_delimiter,
  :field_delimiter,
  :quote_character)
  include Aws::Structure
end

#quote_characterString

A value used as an escape character where the field delimiter is part of the value.

Returns:

  • (String)


199
200
201
202
203
204
205
206
207
# File 'lib/aws-sdk-glacier/types.rb', line 199

class CSVInput < Struct.new(
  :file_header_info,
  :comments,
  :quote_escape_character,
  :record_delimiter,
  :field_delimiter,
  :quote_character)
  include Aws::Structure
end

#quote_escape_characterString

A single character used for escaping the quotation-mark character inside an already escaped value.

Returns:

  • (String)


199
200
201
202
203
204
205
206
207
# File 'lib/aws-sdk-glacier/types.rb', line 199

class CSVInput < Struct.new(
  :file_header_info,
  :comments,
  :quote_escape_character,
  :record_delimiter,
  :field_delimiter,
  :quote_character)
  include Aws::Structure
end

#record_delimiterString

A value used to separate individual records from each other.

Returns:

  • (String)


199
200
201
202
203
204
205
206
207
# File 'lib/aws-sdk-glacier/types.rb', line 199

class CSVInput < Struct.new(
  :file_header_info,
  :comments,
  :quote_escape_character,
  :record_delimiter,
  :field_delimiter,
  :quote_character)
  include Aws::Structure
end