Struct aws_sdk_databrew::model::JobSample
source · [−]#[non_exhaustive]pub struct JobSample { /* private fields */ }
Expand description
A sample configuration for profile jobs only, which determines the number of rows on which the profile job is run. If a JobSample
value isn't provided, the default is used. The default value is CUSTOM_ROWS for the mode parameter and 20,000 for the size parameter.
Implementations
sourceimpl JobSample
impl JobSample
sourcepub fn mode(&self) -> Option<&SampleMode>
pub fn mode(&self) -> Option<&SampleMode>
A value that determines whether the profile job is run on the entire dataset or a specified number of rows. This value must be one of the following:
-
FULL_DATASET - The profile job is run on the entire dataset.
-
CUSTOM_ROWS - The profile job is run on the number of rows specified in the
Size
parameter.
Trait Implementations
impl StructuralPartialEq for JobSample
Auto Trait Implementations
impl RefUnwindSafe for JobSample
impl Send for JobSample
impl Sync for JobSample
impl Unpin for JobSample
impl UnwindSafe for JobSample
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more