Struct aws_sdk_quicksight::model::UploadSettings
source · [−]#[non_exhaustive]pub struct UploadSettings {
pub format: Option<FileFormat>,
pub start_from_row: Option<i32>,
pub contains_header: Option<bool>,
pub text_qualifier: Option<TextQualifier>,
pub delimiter: Option<String>,
}Expand description
Information about the format for a source file or files.
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.format: Option<FileFormat>File format.
start_from_row: Option<i32>A row number to start reading data from.
contains_header: Option<bool>Whether the file has a header row, or the files each have a header row.
text_qualifier: Option<TextQualifier>Text qualifier.
delimiter: Option<String>The delimiter between values in the file.
Implementations
File format.
A row number to start reading data from.
Whether the file has a header row, or the files each have a header row.
Text qualifier.
Creates a new builder-style object to manufacture UploadSettings
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 UploadSettings
impl Send for UploadSettings
impl Sync for UploadSettings
impl Unpin for UploadSettings
impl UnwindSafe for UploadSettings
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