Interface CfnTopic.SemanticEntityTypeProperty

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

@Stability(Stable) public static interface CfnTopic.SemanticEntityTypeProperty extends software.amazon.jsii.JsiiSerializable
A structure that represents a semantic entity 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.*;
 SemanticEntityTypeProperty semanticEntityTypeProperty = SemanticEntityTypeProperty.builder()
         .subTypeName("subTypeName")
         .typeName("typeName")
         .typeParameters(Map.of(
                 "typeParametersKey", "typeParameters"))
         .build();
 

See Also: