Struct aws_sdk_quicksight::types::builders::DimensionFieldBuilder
source · #[non_exhaustive]pub struct DimensionFieldBuilder { /* private fields */ }Expand description
A builder for DimensionField.
Implementations§
source§impl DimensionFieldBuilder
impl DimensionFieldBuilder
sourcepub fn numerical_dimension_field(self, input: NumericalDimensionField) -> Self
pub fn numerical_dimension_field(self, input: NumericalDimensionField) -> Self
The dimension type field with numerical type columns.
sourcepub fn set_numerical_dimension_field(
self,
input: Option<NumericalDimensionField>
) -> Self
pub fn set_numerical_dimension_field( self, input: Option<NumericalDimensionField> ) -> Self
The dimension type field with numerical type columns.
sourcepub fn get_numerical_dimension_field(&self) -> &Option<NumericalDimensionField>
pub fn get_numerical_dimension_field(&self) -> &Option<NumericalDimensionField>
The dimension type field with numerical type columns.
sourcepub fn categorical_dimension_field(
self,
input: CategoricalDimensionField
) -> Self
pub fn categorical_dimension_field( self, input: CategoricalDimensionField ) -> Self
The dimension type field with categorical type columns.
sourcepub fn set_categorical_dimension_field(
self,
input: Option<CategoricalDimensionField>
) -> Self
pub fn set_categorical_dimension_field( self, input: Option<CategoricalDimensionField> ) -> Self
The dimension type field with categorical type columns.
sourcepub fn get_categorical_dimension_field(
&self
) -> &Option<CategoricalDimensionField>
pub fn get_categorical_dimension_field( &self ) -> &Option<CategoricalDimensionField>
The dimension type field with categorical type columns.
sourcepub fn date_dimension_field(self, input: DateDimensionField) -> Self
pub fn date_dimension_field(self, input: DateDimensionField) -> Self
The dimension type field with date type columns.
sourcepub fn set_date_dimension_field(self, input: Option<DateDimensionField>) -> Self
pub fn set_date_dimension_field(self, input: Option<DateDimensionField>) -> Self
The dimension type field with date type columns.
sourcepub fn get_date_dimension_field(&self) -> &Option<DateDimensionField>
pub fn get_date_dimension_field(&self) -> &Option<DateDimensionField>
The dimension type field with date type columns.
sourcepub fn build(self) -> DimensionField
pub fn build(self) -> DimensionField
Consumes the builder and constructs a DimensionField.
Trait Implementations§
source§impl Clone for DimensionFieldBuilder
impl Clone for DimensionFieldBuilder
source§fn clone(&self) -> DimensionFieldBuilder
fn clone(&self) -> DimensionFieldBuilder
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 DimensionFieldBuilder
impl Debug for DimensionFieldBuilder
source§impl Default for DimensionFieldBuilder
impl Default for DimensionFieldBuilder
source§fn default() -> DimensionFieldBuilder
fn default() -> DimensionFieldBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DimensionFieldBuilder
impl PartialEq for DimensionFieldBuilder
source§fn eq(&self, other: &DimensionFieldBuilder) -> bool
fn eq(&self, other: &DimensionFieldBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DimensionFieldBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DimensionFieldBuilder
impl Send for DimensionFieldBuilder
impl Sync for DimensionFieldBuilder
impl Unpin for DimensionFieldBuilder
impl UnwindSafe for DimensionFieldBuilder
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.