Struct aws_sdk_quicksight::types::builders::DataLabelTypeBuilder
source · #[non_exhaustive]pub struct DataLabelTypeBuilder { /* private fields */ }Expand description
A builder for DataLabelType.
Implementations§
source§impl DataLabelTypeBuilder
impl DataLabelTypeBuilder
sourcepub fn field_label_type(self, input: FieldLabelType) -> Self
pub fn field_label_type(self, input: FieldLabelType) -> Self
Determines the label configuration for the entire field.
sourcepub fn set_field_label_type(self, input: Option<FieldLabelType>) -> Self
pub fn set_field_label_type(self, input: Option<FieldLabelType>) -> Self
Determines the label configuration for the entire field.
sourcepub fn get_field_label_type(&self) -> &Option<FieldLabelType>
pub fn get_field_label_type(&self) -> &Option<FieldLabelType>
Determines the label configuration for the entire field.
sourcepub fn data_path_label_type(self, input: DataPathLabelType) -> Self
pub fn data_path_label_type(self, input: DataPathLabelType) -> Self
The option that specifies individual data values for labels.
sourcepub fn set_data_path_label_type(self, input: Option<DataPathLabelType>) -> Self
pub fn set_data_path_label_type(self, input: Option<DataPathLabelType>) -> Self
The option that specifies individual data values for labels.
sourcepub fn get_data_path_label_type(&self) -> &Option<DataPathLabelType>
pub fn get_data_path_label_type(&self) -> &Option<DataPathLabelType>
The option that specifies individual data values for labels.
sourcepub fn range_ends_label_type(self, input: RangeEndsLabelType) -> Self
pub fn range_ends_label_type(self, input: RangeEndsLabelType) -> Self
Determines the label configuration for range end value in a visual.
sourcepub fn set_range_ends_label_type(
self,
input: Option<RangeEndsLabelType>,
) -> Self
pub fn set_range_ends_label_type( self, input: Option<RangeEndsLabelType>, ) -> Self
Determines the label configuration for range end value in a visual.
sourcepub fn get_range_ends_label_type(&self) -> &Option<RangeEndsLabelType>
pub fn get_range_ends_label_type(&self) -> &Option<RangeEndsLabelType>
Determines the label configuration for range end value in a visual.
sourcepub fn minimum_label_type(self, input: MinimumLabelType) -> Self
pub fn minimum_label_type(self, input: MinimumLabelType) -> Self
Determines the label configuration for the minimum value in a visual.
sourcepub fn set_minimum_label_type(self, input: Option<MinimumLabelType>) -> Self
pub fn set_minimum_label_type(self, input: Option<MinimumLabelType>) -> Self
Determines the label configuration for the minimum value in a visual.
sourcepub fn get_minimum_label_type(&self) -> &Option<MinimumLabelType>
pub fn get_minimum_label_type(&self) -> &Option<MinimumLabelType>
Determines the label configuration for the minimum value in a visual.
sourcepub fn maximum_label_type(self, input: MaximumLabelType) -> Self
pub fn maximum_label_type(self, input: MaximumLabelType) -> Self
Determines the label configuration for the maximum value in a visual.
sourcepub fn set_maximum_label_type(self, input: Option<MaximumLabelType>) -> Self
pub fn set_maximum_label_type(self, input: Option<MaximumLabelType>) -> Self
Determines the label configuration for the maximum value in a visual.
sourcepub fn get_maximum_label_type(&self) -> &Option<MaximumLabelType>
pub fn get_maximum_label_type(&self) -> &Option<MaximumLabelType>
Determines the label configuration for the maximum value in a visual.
sourcepub fn build(self) -> DataLabelType
pub fn build(self) -> DataLabelType
Consumes the builder and constructs a DataLabelType.
Trait Implementations§
source§impl Clone for DataLabelTypeBuilder
impl Clone for DataLabelTypeBuilder
source§fn clone(&self) -> DataLabelTypeBuilder
fn clone(&self) -> DataLabelTypeBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DataLabelTypeBuilder
impl Debug for DataLabelTypeBuilder
source§impl Default for DataLabelTypeBuilder
impl Default for DataLabelTypeBuilder
source§fn default() -> DataLabelTypeBuilder
fn default() -> DataLabelTypeBuilder
source§impl PartialEq for DataLabelTypeBuilder
impl PartialEq for DataLabelTypeBuilder
source§fn eq(&self, other: &DataLabelTypeBuilder) -> bool
fn eq(&self, other: &DataLabelTypeBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataLabelTypeBuilder
Auto Trait Implementations§
impl Freeze for DataLabelTypeBuilder
impl RefUnwindSafe for DataLabelTypeBuilder
impl Send for DataLabelTypeBuilder
impl Sync for DataLabelTypeBuilder
impl Unpin for DataLabelTypeBuilder
impl UnwindSafe for DataLabelTypeBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more