Interface CfnDataSet.ColumnSemanticPropertyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.ColumnSemanticPropertyProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.ColumnSemanticPropertyProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 ColumnSemanticPropertyProperty columnSemanticPropertyProperty = ColumnSemanticPropertyProperty.builder()
         .additionalNotes(AdditionalNotesProperty.builder()
                 .text("text")
                 .build())
         .description(ColumnDescriptionProperty.builder()
                 .text("text")
                 .build())
         .semanticType(ColumnSemanticTypeProperty.builder()
                 .geographicalRole("geographicalRole")
                 .build())
         .build();
 

See Also: