Struct aws_sdk_databrew::model::DatasetParameter [−][src]
#[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 paramater 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
The name of the parameter that is used in the dataset's Amazon S3 path.
The type of the dataset parameter, can be one of a 'String', 'Number' or 'Datetime'.
Additional parameter options such as a format and a timezone. Required for datetime parameters.
Optional boolean value that defines whether the captured value of this parameter should be used to create a new column in a dataset.
The optional filter expression structure to apply additional matching criteria to the parameter.
Creates a new builder-style object to manufacture DatasetParameter
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more