#[non_exhaustive]pub struct S3DirectSourceAdditionalOptions { /* private fields */ }Expand description
Specifies additional connection options for the Amazon S3 data store.
Implementations§
source§impl S3DirectSourceAdditionalOptions
impl S3DirectSourceAdditionalOptions
sourcepub fn bounded_size(&self) -> Option<i64>
pub fn bounded_size(&self) -> Option<i64>
Sets the upper limit for the target size of the dataset in bytes that will be processed.
sourcepub fn bounded_files(&self) -> Option<i64>
pub fn bounded_files(&self) -> Option<i64>
Sets the upper limit for the target number of files that will be processed.
sourcepub fn enable_sample_path(&self) -> Option<bool>
pub fn enable_sample_path(&self) -> Option<bool>
Sets option to enable a sample path.
sourcepub fn sample_path(&self) -> Option<&str>
pub fn sample_path(&self) -> Option<&str>
If enabled, specifies the sample path.
source§impl S3DirectSourceAdditionalOptions
impl S3DirectSourceAdditionalOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture S3DirectSourceAdditionalOptions.
Trait Implementations§
source§impl Clone for S3DirectSourceAdditionalOptions
impl Clone for S3DirectSourceAdditionalOptions
source§fn clone(&self) -> S3DirectSourceAdditionalOptions
fn clone(&self) -> S3DirectSourceAdditionalOptions
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 PartialEq<S3DirectSourceAdditionalOptions> for S3DirectSourceAdditionalOptions
impl PartialEq<S3DirectSourceAdditionalOptions> for S3DirectSourceAdditionalOptions
source§fn eq(&self, other: &S3DirectSourceAdditionalOptions) -> bool
fn eq(&self, other: &S3DirectSourceAdditionalOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.