Struct aws_sdk_databrew::model::path_options::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for PathOptions
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn last_modified_date_condition(self, input: FilterExpression) -> Self
pub fn last_modified_date_condition(self, input: FilterExpression) -> Self
If provided, this structure defines a date range for matching Amazon S3 objects based on their LastModifiedDate attribute in Amazon S3.
sourcepub fn set_last_modified_date_condition(
self,
input: Option<FilterExpression>
) -> Self
pub fn set_last_modified_date_condition(
self,
input: Option<FilterExpression>
) -> Self
If provided, this structure defines a date range for matching Amazon S3 objects based on their LastModifiedDate attribute in Amazon S3.
sourcepub fn files_limit(self, input: FilesLimit) -> Self
pub fn files_limit(self, input: FilesLimit) -> Self
If provided, this structure imposes a limit on a number of files that should be selected.
sourcepub fn set_files_limit(self, input: Option<FilesLimit>) -> Self
pub fn set_files_limit(self, input: Option<FilesLimit>) -> Self
If provided, this structure imposes a limit on a number of files that should be selected.
sourcepub fn parameters(self, k: impl Into<String>, v: DatasetParameter) -> Self
pub fn parameters(self, k: impl Into<String>, v: DatasetParameter) -> Self
Adds a key-value pair to parameters
.
To override the contents of this collection use set_parameters
.
A structure that maps names of parameters used in the Amazon S3 path of a dataset to their definitions.
sourcepub fn set_parameters(
self,
input: Option<HashMap<String, DatasetParameter>>
) -> Self
pub fn set_parameters(
self,
input: Option<HashMap<String, DatasetParameter>>
) -> Self
A structure that maps names of parameters used in the Amazon S3 path of a dataset to their definitions.
sourcepub fn build(self) -> PathOptions
pub fn build(self) -> PathOptions
Consumes the builder and constructs a PathOptions
.