Struct aws_sdk_databrew::types::DatasetParameter
source · #[non_exhaustive]pub struct DatasetParameter {
pub name: String,
pub type: 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: String
The name of the parameter that is used in the dataset's Amazon S3 path.
type: 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§
source§impl DatasetParameter
impl DatasetParameter
sourcepub fn name(&self) -> &str
pub fn name(&self) -> &str
The name of the parameter that is used in the dataset's Amazon S3 path.
sourcepub fn type(&self) -> &ParameterType
pub fn type(&self) -> &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.
source§impl DatasetParameter
impl DatasetParameter
sourcepub fn builder() -> DatasetParameterBuilder
pub fn builder() -> DatasetParameterBuilder
Creates a new builder-style object to manufacture DatasetParameter
.
Trait Implementations§
source§impl Clone for DatasetParameter
impl Clone for DatasetParameter
source§fn clone(&self) -> DatasetParameter
fn clone(&self) -> DatasetParameter
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DatasetParameter
impl Debug for DatasetParameter
source§impl PartialEq for DatasetParameter
impl PartialEq for DatasetParameter
impl StructuralPartialEq for DatasetParameter
Auto Trait Implementations§
impl Freeze for DatasetParameter
impl RefUnwindSafe for DatasetParameter
impl Send for DatasetParameter
impl Sync for DatasetParameter
impl Unpin for DatasetParameter
impl UnwindSafe for DatasetParameter
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more