Struct aws_sdk_quicksight::types::CastColumnTypeOperation
source · #[non_exhaustive]pub struct CastColumnTypeOperation {
pub column_name: String,
pub new_column_type: ColumnDataType,
pub sub_type: Option<ColumnDataSubType>,
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: String
Column name.
new_column_type: ColumnDataType
New column data type.
sub_type: Option<ColumnDataSubType>
The sub data type of the new column. Sub types are only available for decimal columns that are part of a SPICE dataset.
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§
source§impl CastColumnTypeOperation
impl CastColumnTypeOperation
sourcepub fn column_name(&self) -> &str
pub fn column_name(&self) -> &str
Column name.
sourcepub fn new_column_type(&self) -> &ColumnDataType
pub fn new_column_type(&self) -> &ColumnDataType
New column data type.
sourcepub fn sub_type(&self) -> Option<&ColumnDataSubType>
pub fn sub_type(&self) -> Option<&ColumnDataSubType>
The sub data type of the new column. Sub types are only available for decimal columns that are part of a SPICE dataset.
source§impl CastColumnTypeOperation
impl CastColumnTypeOperation
sourcepub fn builder() -> CastColumnTypeOperationBuilder
pub fn builder() -> CastColumnTypeOperationBuilder
Creates a new builder-style object to manufacture CastColumnTypeOperation
.
Trait Implementations§
source§impl Clone for CastColumnTypeOperation
impl Clone for CastColumnTypeOperation
source§fn clone(&self) -> CastColumnTypeOperation
fn clone(&self) -> CastColumnTypeOperation
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 CastColumnTypeOperation
impl Debug for CastColumnTypeOperation
source§impl PartialEq for CastColumnTypeOperation
impl PartialEq for CastColumnTypeOperation
source§fn eq(&self, other: &CastColumnTypeOperation) -> bool
fn eq(&self, other: &CastColumnTypeOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CastColumnTypeOperation
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§
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.