Struct aws_sdk_databrew::model::DatasetParameter
source · [−]#[non_exhaustive]pub struct DatasetParameter { /* private fields */ }
Expand description
Represents a dataset parameter that defines type and conditions for a parameter in the Amazon S3 path of the dataset.
Implementations
sourceimpl DatasetParameter
impl DatasetParameter
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the parameter that is used in the dataset's Amazon S3 path.
sourcepub fn type(&self) -> Option<&ParameterType>
pub fn type(&self) -> Option<&ParameterType>
The type of the dataset parameter, can be one of a 'String', 'Number' or 'Datetime'.
sourcepub fn datetime_options(&self) -> Option<&DatetimeOptions>
pub fn datetime_options(&self) -> Option<&DatetimeOptions>
Additional parameter options such as a format and a timezone. Required for datetime parameters.
sourcepub fn create_column(&self) -> bool
pub fn create_column(&self) -> bool
Optional boolean value that defines whether the captured value of this parameter should be used to create a new column in a dataset.
sourcepub fn filter(&self) -> Option<&FilterExpression>
pub fn filter(&self) -> Option<&FilterExpression>
The optional filter expression structure to apply additional matching criteria to the parameter.
sourceimpl DatasetParameter
impl DatasetParameter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DatasetParameter
.
Trait Implementations
sourceimpl Clone for DatasetParameter
impl Clone for DatasetParameter
sourcefn clone(&self) -> DatasetParameter
fn clone(&self) -> DatasetParameter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DatasetParameter
impl Debug for DatasetParameter
sourceimpl PartialEq<DatasetParameter> for DatasetParameter
impl PartialEq<DatasetParameter> for DatasetParameter
sourcefn eq(&self, other: &DatasetParameter) -> bool
fn eq(&self, other: &DatasetParameter) -> bool
impl StructuralPartialEq for DatasetParameter
Auto Trait Implementations
impl RefUnwindSafe for DatasetParameter
impl Send for DatasetParameter
impl Sync for DatasetParameter
impl Unpin for DatasetParameter
impl UnwindSafe for DatasetParameter
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