Class: Aws::TimestreamWrite::Types::DataSourceConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::TimestreamWrite::Types::DataSourceConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-timestreamwrite/types.rb
 
Overview
Defines configuration details about the data source.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #csv_configuration  ⇒ Types::CsvConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A delimited data format where the column separator can be a comma and the record separator is a newline character.
 - 
  
    
      #data_format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This is currently CSV.
 - 
  
    
      #data_source_s3_configuration  ⇒ Types::DataSourceS3Configuration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration of an S3 location for a file which contains data to load.
 
Instance Attribute Details
#csv_configuration ⇒ Types::CsvConfiguration
A delimited data format where the column separator can be a comma and the record separator is a newline character.
      458 459 460 461 462 463 464  | 
    
      # File 'lib/aws-sdk-timestreamwrite/types.rb', line 458 class DataSourceConfiguration < Struct.new( :data_source_s3_configuration, :csv_configuration, :data_format) SENSITIVE = [] include Aws::Structure end  | 
  
#data_format ⇒ String
This is currently CSV.
      458 459 460 461 462 463 464  | 
    
      # File 'lib/aws-sdk-timestreamwrite/types.rb', line 458 class DataSourceConfiguration < Struct.new( :data_source_s3_configuration, :csv_configuration, :data_format) SENSITIVE = [] include Aws::Structure end  | 
  
#data_source_s3_configuration ⇒ Types::DataSourceS3Configuration
Configuration of an S3 location for a file which contains data to load.
      458 459 460 461 462 463 464  | 
    
      # File 'lib/aws-sdk-timestreamwrite/types.rb', line 458 class DataSourceConfiguration < Struct.new( :data_source_s3_configuration, :csv_configuration, :data_format) SENSITIVE = [] include Aws::Structure end  |