Struct aws_sdk_databrew::model::DatasetParameter
source · [−]#[non_exhaustive]pub struct DatasetParameter {
pub name: Option<String>,
pub type: Option<ParameterType>,
pub datetime_options: Option<DatetimeOptions>,
pub create_column: bool,
pub filter: Option<FilterExpression>,
}
Expand description
Represents a dataset parameter that defines type and conditions for a parameter in the Amazon S3 path of the dataset.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the parameter that is used in the dataset's Amazon S3 path.
type: Option<ParameterType>
The type of the dataset parameter, can be one of a 'String', 'Number' or 'Datetime'.
datetime_options: Option<DatetimeOptions>
Additional parameter options such as a format and a timezone. Required for datetime parameters.
create_column: bool
Optional boolean value that defines whether the captured value of this parameter should be used to create a new column in a dataset.
filter: Option<FilterExpression>
The optional filter expression structure to apply additional matching criteria to the parameter.
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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DatasetParameter) -> bool
fn ne(&self, other: &DatasetParameter) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more