Struct aws_sdk_databrew::model::CsvOptions [−][src]
#[non_exhaustive]pub struct CsvOptions {
pub delimiter: Option<String>,
pub header_row: Option<bool>,
}
Expand description
Represents a set of options that define how DataBrew will read a comma-separated value (CSV) file when creating a dataset from that file.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.delimiter: Option<String>
A single character that specifies the delimiter being used in the CSV file.
header_row: Option<bool>
A variable that specifies whether the first row in the file is parsed as the header. If this value is false, column names are auto-generated.
Implementations
A single character that specifies the delimiter being used in the CSV file.
A variable that specifies whether the first row in the file is parsed as the header. If this value is false, column names are auto-generated.
Creates a new builder-style object to manufacture CsvOptions
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CsvOptions
impl Send for CsvOptions
impl Sync for CsvOptions
impl Unpin for CsvOptions
impl UnwindSafe for CsvOptions
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more