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: