Struct aws_sdk_quicksight::types::builders::UploadSettingsBuilder
source · #[non_exhaustive]pub struct UploadSettingsBuilder { /* private fields */ }Expand description
A builder for UploadSettings.
Implementations§
source§impl UploadSettingsBuilder
impl UploadSettingsBuilder
sourcepub fn format(self, input: FileFormat) -> Self
pub fn format(self, input: FileFormat) -> Self
File format.
sourcepub fn set_format(self, input: Option<FileFormat>) -> Self
pub fn set_format(self, input: Option<FileFormat>) -> Self
File format.
sourcepub fn get_format(&self) -> &Option<FileFormat>
pub fn get_format(&self) -> &Option<FileFormat>
File format.
sourcepub fn start_from_row(self, input: i32) -> Self
pub fn start_from_row(self, input: i32) -> Self
A row number to start reading data from.
sourcepub fn set_start_from_row(self, input: Option<i32>) -> Self
pub fn set_start_from_row(self, input: Option<i32>) -> Self
A row number to start reading data from.
sourcepub fn get_start_from_row(&self) -> &Option<i32>
pub fn get_start_from_row(&self) -> &Option<i32>
A row number to start reading data from.
sourcepub fn contains_header(self, input: bool) -> Self
pub fn contains_header(self, input: bool) -> Self
Whether the file has a header row, or the files each have a header row.
sourcepub fn set_contains_header(self, input: Option<bool>) -> Self
pub fn set_contains_header(self, input: Option<bool>) -> Self
Whether the file has a header row, or the files each have a header row.
sourcepub fn get_contains_header(&self) -> &Option<bool>
pub fn get_contains_header(&self) -> &Option<bool>
Whether the file has a header row, or the files each have a header row.
sourcepub fn text_qualifier(self, input: TextQualifier) -> Self
pub fn text_qualifier(self, input: TextQualifier) -> Self
Text qualifier.
sourcepub fn set_text_qualifier(self, input: Option<TextQualifier>) -> Self
pub fn set_text_qualifier(self, input: Option<TextQualifier>) -> Self
Text qualifier.
sourcepub fn get_text_qualifier(&self) -> &Option<TextQualifier>
pub fn get_text_qualifier(&self) -> &Option<TextQualifier>
Text qualifier.
sourcepub fn delimiter(self, input: impl Into<String>) -> Self
pub fn delimiter(self, input: impl Into<String>) -> Self
The delimiter between values in the file.
sourcepub fn set_delimiter(self, input: Option<String>) -> Self
pub fn set_delimiter(self, input: Option<String>) -> Self
The delimiter between values in the file.
sourcepub fn get_delimiter(&self) -> &Option<String>
pub fn get_delimiter(&self) -> &Option<String>
The delimiter between values in the file.
sourcepub fn build(self) -> UploadSettings
pub fn build(self) -> UploadSettings
Consumes the builder and constructs a UploadSettings.
Trait Implementations§
source§impl Clone for UploadSettingsBuilder
impl Clone for UploadSettingsBuilder
source§fn clone(&self) -> UploadSettingsBuilder
fn clone(&self) -> UploadSettingsBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for UploadSettingsBuilder
impl Debug for UploadSettingsBuilder
source§impl Default for UploadSettingsBuilder
impl Default for UploadSettingsBuilder
source§fn default() -> UploadSettingsBuilder
fn default() -> UploadSettingsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UploadSettingsBuilder
impl PartialEq for UploadSettingsBuilder
source§fn eq(&self, other: &UploadSettingsBuilder) -> bool
fn eq(&self, other: &UploadSettingsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UploadSettingsBuilder
Auto Trait Implementations§
impl Freeze for UploadSettingsBuilder
impl RefUnwindSafe for UploadSettingsBuilder
impl Send for UploadSettingsBuilder
impl Sync for UploadSettingsBuilder
impl Unpin for UploadSettingsBuilder
impl UnwindSafe for UploadSettingsBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.