Interface CfnDashboard.DataLabelTypeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.DataLabelTypeProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.DataLabelTypeProperty
extends software.amazon.jsii.JsiiSerializable
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.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; DataLabelTypeProperty dataLabelTypeProperty = DataLabelTypeProperty.builder() .dataPathLabelType(DataPathLabelTypeProperty.builder() .fieldId("fieldId") .fieldValue("fieldValue") .visibility("visibility") .build()) .fieldLabelType(FieldLabelTypeProperty.builder() .fieldId("fieldId") .visibility("visibility") .build()) .maximumLabelType(MaximumLabelTypeProperty.builder() .visibility("visibility") .build()) .minimumLabelType(MinimumLabelTypeProperty.builder() .visibility("visibility") .build()) .rangeEndsLabelType(RangeEndsLabelTypeProperty.builder() .visibility("visibility") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.DataLabelTypeProperty
static final class
An implementation forCfnDashboard.DataLabelTypeProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The option that specifies individual data values for labels.default Object
Determines the label configuration for the entire field.default Object
Determines the label configuration for the maximum value in a visual.default Object
Determines the label configuration for the minimum value in a visual.default Object
Determines the label configuration for range end value in a visual.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataPathLabelType
The option that specifies individual data values for labels.- See Also:
-
getFieldLabelType
Determines the label configuration for the entire field.- See Also:
-
getMaximumLabelType
Determines the label configuration for the maximum value in a visual.- See Also:
-
getMinimumLabelType
Determines the label configuration for the minimum value in a visual.- See Also:
-
getRangeEndsLabelType
Determines the label configuration for range end value in a visual.- See Also:
-
builder
-