Class: Aws::TimestreamWrite::Types::CsvConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::TimestreamWrite::Types::CsvConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-timestreamwrite/types.rb
 
Overview
A delimited data format where the column separator can be a comma and the record separator is a newline character.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #column_separator  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Column separator can be one of comma (‘,’), pipe (‘|), semicolon (’;‘), tab(’/t’), or blank space (‘ ’).
 - 
  
    
      #escape_char  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Escape character can be one of.
 - 
  
    
      #null_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Can be blank space (‘ ’).
 - 
  
    
      #quote_char  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Can be single quote (‘) or double quote (“).
 - 
  
    
      #trim_white_space  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies to trim leading and trailing white space.
 
Instance Attribute Details
#column_separator ⇒ String
Column separator can be one of comma (‘,’), pipe (‘|), semicolon (’;‘), tab(’/t’), or blank space (‘ ’).
      360 361 362 363 364 365 366 367 368  | 
    
      # File 'lib/aws-sdk-timestreamwrite/types.rb', line 360 class CsvConfiguration < Struct.new( :column_separator, :escape_char, :quote_char, :null_value, :trim_white_space) SENSITIVE = [] include Aws::Structure end  | 
  
#escape_char ⇒ String
Escape character can be one of
      360 361 362 363 364 365 366 367 368  | 
    
      # File 'lib/aws-sdk-timestreamwrite/types.rb', line 360 class CsvConfiguration < Struct.new( :column_separator, :escape_char, :quote_char, :null_value, :trim_white_space) SENSITIVE = [] include Aws::Structure end  | 
  
#null_value ⇒ String
Can be blank space (‘ ’).
      360 361 362 363 364 365 366 367 368  | 
    
      # File 'lib/aws-sdk-timestreamwrite/types.rb', line 360 class CsvConfiguration < Struct.new( :column_separator, :escape_char, :quote_char, :null_value, :trim_white_space) SENSITIVE = [] include Aws::Structure end  | 
  
#quote_char ⇒ String
Can be single quote (‘) or double quote (“).
      360 361 362 363 364 365 366 367 368  | 
    
      # File 'lib/aws-sdk-timestreamwrite/types.rb', line 360 class CsvConfiguration < Struct.new( :column_separator, :escape_char, :quote_char, :null_value, :trim_white_space) SENSITIVE = [] include Aws::Structure end  | 
  
#trim_white_space ⇒ Boolean
Specifies to trim leading and trailing white space.
      360 361 362 363 364 365 366 367 368  | 
    
      # File 'lib/aws-sdk-timestreamwrite/types.rb', line 360 class CsvConfiguration < Struct.new( :column_separator, :escape_char, :quote_char, :null_value, :trim_white_space) SENSITIVE = [] include Aws::Structure end  |