Struct aws_sdk_quicksight::types::DataLabelType
source · #[non_exhaustive]pub struct DataLabelType {
pub field_label_type: Option<FieldLabelType>,
pub data_path_label_type: Option<DataPathLabelType>,
pub range_ends_label_type: Option<RangeEndsLabelType>,
pub minimum_label_type: Option<MinimumLabelType>,
pub maximum_label_type: Option<MaximumLabelType>,
}
Expand description
The option that determines the data label type.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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.field_label_type: Option<FieldLabelType>
Determines the label configuration for the entire field.
data_path_label_type: Option<DataPathLabelType>
The option that specifies individual data values for labels.
range_ends_label_type: Option<RangeEndsLabelType>
Determines the label configuration for range end value in a visual.
minimum_label_type: Option<MinimumLabelType>
Determines the label configuration for the minimum value in a visual.
maximum_label_type: Option<MaximumLabelType>
Determines the label configuration for the maximum value in a visual.
Implementations§
source§impl DataLabelType
impl DataLabelType
sourcepub fn field_label_type(&self) -> Option<&FieldLabelType>
pub fn field_label_type(&self) -> Option<&FieldLabelType>
Determines the label configuration for the entire field.
sourcepub fn data_path_label_type(&self) -> Option<&DataPathLabelType>
pub fn data_path_label_type(&self) -> Option<&DataPathLabelType>
The option that specifies individual data values for labels.
sourcepub fn range_ends_label_type(&self) -> Option<&RangeEndsLabelType>
pub fn range_ends_label_type(&self) -> Option<&RangeEndsLabelType>
Determines the label configuration for range end value in a visual.
sourcepub fn minimum_label_type(&self) -> Option<&MinimumLabelType>
pub fn minimum_label_type(&self) -> Option<&MinimumLabelType>
Determines the label configuration for the minimum value in a visual.
sourcepub fn maximum_label_type(&self) -> Option<&MaximumLabelType>
pub fn maximum_label_type(&self) -> Option<&MaximumLabelType>
Determines the label configuration for the maximum value in a visual.
source§impl DataLabelType
impl DataLabelType
sourcepub fn builder() -> DataLabelTypeBuilder
pub fn builder() -> DataLabelTypeBuilder
Creates a new builder-style object to manufacture DataLabelType
.
Trait Implementations§
source§impl Clone for DataLabelType
impl Clone for DataLabelType
source§fn clone(&self) -> DataLabelType
fn clone(&self) -> DataLabelType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DataLabelType
impl Debug for DataLabelType
source§impl PartialEq for DataLabelType
impl PartialEq for DataLabelType
source§fn eq(&self, other: &DataLabelType) -> bool
fn eq(&self, other: &DataLabelType) -> bool
self
and other
values to be equal, and is used
by ==
.