Interface CfnTopic.SemanticTypeProperty

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

@Stability(Stable) public static interface CfnTopic.SemanticTypeProperty extends software.amazon.jsii.JsiiSerializable
A structure that represents a semantic type.

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.*;
 SemanticTypeProperty semanticTypeProperty = SemanticTypeProperty.builder()
         .falseyCellValue("falseyCellValue")
         .falseyCellValueSynonyms(List.of("falseyCellValueSynonyms"))
         .subTypeName("subTypeName")
         .truthyCellValue("truthyCellValue")
         .truthyCellValueSynonyms(List.of("truthyCellValueSynonyms"))
         .typeName("typeName")
         .typeParameters(Map.of(
                 "typeParametersKey", "typeParameters"))
         .build();
 

See Also: