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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopic.SemanticTypePropertystatic final classAn implementation forCfnTopic.SemanticTypeProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe semantic type falsey cell value.The other names or aliases for the false cell value.default StringThe semantic type sub type name.default StringThe semantic type truthy cell value.The other names or aliases for the true cell value.default StringThe semantic type name.default ObjectThe semantic type parameters.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFalseyCellValue
The semantic type falsey cell value. -
getFalseyCellValueSynonyms
The other names or aliases for the false cell value. -
getSubTypeName
The semantic type sub type name. -
getTruthyCellValue
The semantic type truthy cell value. -
getTruthyCellValueSynonyms
The other names or aliases for the true cell value. -
getTypeName
The semantic type name. -
getTypeParameters
The semantic type parameters. -
builder
-