Class: Aws::LookoutMetrics::Types::CsvFormatDescriptor
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutMetrics::Types::CsvFormatDescriptor
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lookoutmetrics/types.rb
Overview
Contains information about how a source CSV data file should be analyzed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#charset ⇒ String
The character set in which the source CSV file is written.
-
#contains_header ⇒ Boolean
Whether or not the source CSV file contains a header.
-
#delimiter ⇒ String
The character used to delimit the source CSV file.
-
#file_compression ⇒ String
The level of compression of the source CSV file.
-
#header_list ⇒ Array<String>
A list of the source CSV file’s headers, if any.
-
#quote_symbol ⇒ String
The character used as a quote character.
Instance Attribute Details
#charset ⇒ String
The character set in which the source CSV file is written.
892 893 894 895 896 897 898 899 900 901 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 892 class CsvFormatDescriptor < Struct.new( :file_compression, :charset, :contains_header, :delimiter, :header_list, :quote_symbol) SENSITIVE = [] include Aws::Structure end |
#contains_header ⇒ Boolean
Whether or not the source CSV file contains a header.
892 893 894 895 896 897 898 899 900 901 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 892 class CsvFormatDescriptor < Struct.new( :file_compression, :charset, :contains_header, :delimiter, :header_list, :quote_symbol) SENSITIVE = [] include Aws::Structure end |
#delimiter ⇒ String
The character used to delimit the source CSV file.
892 893 894 895 896 897 898 899 900 901 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 892 class CsvFormatDescriptor < Struct.new( :file_compression, :charset, :contains_header, :delimiter, :header_list, :quote_symbol) SENSITIVE = [] include Aws::Structure end |
#file_compression ⇒ String
The level of compression of the source CSV file.
892 893 894 895 896 897 898 899 900 901 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 892 class CsvFormatDescriptor < Struct.new( :file_compression, :charset, :contains_header, :delimiter, :header_list, :quote_symbol) SENSITIVE = [] include Aws::Structure end |
#header_list ⇒ Array<String>
A list of the source CSV file’s headers, if any.
892 893 894 895 896 897 898 899 900 901 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 892 class CsvFormatDescriptor < Struct.new( :file_compression, :charset, :contains_header, :delimiter, :header_list, :quote_symbol) SENSITIVE = [] include Aws::Structure end |
#quote_symbol ⇒ String
The character used as a quote character.
892 893 894 895 896 897 898 899 900 901 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 892 class CsvFormatDescriptor < Struct.new( :file_compression, :charset, :contains_header, :delimiter, :header_list, :quote_symbol) SENSITIVE = [] include Aws::Structure end |