Class: Aws::Honeycode::Types::DelimitedTextImportOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::DelimitedTextImportOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
An object that contains the options relating to parsing delimited text as part of an import request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_character_encoding ⇒ String
The encoding of the data in the input file.
-
#delimiter ⇒ String
The delimiter to use for separating columns in a single row of the input.
-
#has_header_row ⇒ Boolean
Indicates whether the input file has a header row at the top containing the column names.
-
#ignore_empty_rows ⇒ Boolean
A parameter to indicate whether empty rows should be ignored or be included in the import.
Instance Attribute Details
#data_character_encoding ⇒ String
The encoding of the data in the input file.
581 582 583 584 585 586 587 588 |
# File 'lib/aws-sdk-honeycode/types.rb', line 581 class DelimitedTextImportOptions < Struct.new( :delimiter, :has_header_row, :ignore_empty_rows, :data_character_encoding) SENSITIVE = [] include Aws::Structure end |
#delimiter ⇒ String
The delimiter to use for separating columns in a single row of the input.
581 582 583 584 585 586 587 588 |
# File 'lib/aws-sdk-honeycode/types.rb', line 581 class DelimitedTextImportOptions < Struct.new( :delimiter, :has_header_row, :ignore_empty_rows, :data_character_encoding) SENSITIVE = [] include Aws::Structure end |
#has_header_row ⇒ Boolean
Indicates whether the input file has a header row at the top containing the column names.
581 582 583 584 585 586 587 588 |
# File 'lib/aws-sdk-honeycode/types.rb', line 581 class DelimitedTextImportOptions < Struct.new( :delimiter, :has_header_row, :ignore_empty_rows, :data_character_encoding) SENSITIVE = [] include Aws::Structure end |
#ignore_empty_rows ⇒ Boolean
A parameter to indicate whether empty rows should be ignored or be included in the import.
581 582 583 584 585 586 587 588 |
# File 'lib/aws-sdk-honeycode/types.rb', line 581 class DelimitedTextImportOptions < Struct.new( :delimiter, :has_header_row, :ignore_empty_rows, :data_character_encoding) SENSITIVE = [] include Aws::Structure end |