Class CfnTopic.SemanticEntityTypeProperty
A structure that represents a semantic entity type.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTopic.SemanticEntityTypeProperty : CfnTopic.ISemanticEntityTypeProperty
Syntax (vb)
Public Class CfnTopic.SemanticEntityTypeProperty Implements CfnTopic.ISemanticEntityTypeProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var semanticEntityTypeProperty = new SemanticEntityTypeProperty {
SubTypeName = "subTypeName",
TypeName = "typeName",
TypeParameters = new Dictionary<string, string> {
{ "typeParametersKey", "typeParameters" }
}
};
Synopsis
Constructors
| SemanticEntityTypeProperty() | A structure that represents a semantic entity type. |
Properties
| SubTypeName | The semantic entity sub type name. |
| TypeName | The semantic entity type name. |
| TypeParameters | The semantic entity type parameters. |
Constructors
SemanticEntityTypeProperty()
A structure that represents a semantic entity type.
public SemanticEntityTypeProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var semanticEntityTypeProperty = new SemanticEntityTypeProperty {
SubTypeName = "subTypeName",
TypeName = "typeName",
TypeParameters = new Dictionary<string, string> {
{ "typeParametersKey", "typeParameters" }
}
};
Properties
SubTypeName
The semantic entity sub type name.
public string? SubTypeName { get; set; }
Property Value
Remarks
TypeName
The semantic entity type name.
public string? TypeName { get; set; }
Property Value
Remarks
TypeParameters
The semantic entity type parameters.
public object? TypeParameters { get; set; }
Property Value
Remarks
Type union: either IResolvable or Dictionary<string, string>