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§
source§impl 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.
source§impl DatasetParameter
impl DatasetParameter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DatasetParameter
impl Debug for DatasetParameter
source§impl PartialEq<DatasetParameter> for DatasetParameter
impl PartialEq<DatasetParameter> for DatasetParameter
source§fn 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 ==
.