Struct aws_sdk_quicksight::model::CastColumnTypeOperation [−][src]
#[non_exhaustive]pub struct CastColumnTypeOperation {
pub column_name: Option<String>,
pub new_column_type: Option<ColumnDataType>,
pub format: Option<String>,
}
Expand description
A transform operation that casts a column to a different type.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.column_name: Option<String>
Column name.
new_column_type: Option<ColumnDataType>
New column data type.
format: Option<String>
When casting a column from string to datetime type, you can supply a string in a format supported by Amazon QuickSight to denote the source data format.
Implementations
Column name.
New column data type.
Creates a new builder-style object to manufacture CastColumnTypeOperation
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 CastColumnTypeOperation
impl Send for CastColumnTypeOperation
impl Sync for CastColumnTypeOperation
impl Unpin for CastColumnTypeOperation
impl UnwindSafe for CastColumnTypeOperation
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