Struct aws_sdk_databrew::model::files_limit::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for FilesLimit
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_max_files(self, input: Option<i32>) -> Self
pub fn set_max_files(self, input: Option<i32>) -> Self
The number of Amazon S3 files to select.
sourcepub fn ordered_by(self, input: OrderedBy) -> Self
pub fn ordered_by(self, input: OrderedBy) -> Self
A criteria to use for Amazon S3 files sorting before their selection. By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.
sourcepub fn set_ordered_by(self, input: Option<OrderedBy>) -> Self
pub fn set_ordered_by(self, input: Option<OrderedBy>) -> Self
A criteria to use for Amazon S3 files sorting before their selection. By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.
sourcepub fn order(self, input: Order) -> Self
pub fn order(self, input: Order) -> Self
A criteria to use for Amazon S3 files sorting before their selection. By default uses DESCENDING order, i.e. most recent files are selected first. Another possible value is ASCENDING.
sourcepub fn set_order(self, input: Option<Order>) -> Self
pub fn set_order(self, input: Option<Order>) -> Self
A criteria to use for Amazon S3 files sorting before their selection. By default uses DESCENDING order, i.e. most recent files are selected first. Another possible value is ASCENDING.
sourcepub fn build(self) -> FilesLimit
pub fn build(self) -> FilesLimit
Consumes the builder and constructs a FilesLimit
.