Class CfnTopic.TopicNamedEntityProperty
A structure that represents a named entity.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TopicNamedEntityProperty : Object, CfnTopic.ITopicNamedEntityProperty
Syntax (vb)
Public Class TopicNamedEntityProperty
Inherits Object
Implements CfnTopic.ITopicNamedEntityProperty
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 topicNamedEntityProperty = new TopicNamedEntityProperty {
EntityName = "entityName",
// the properties below are optional
Definition = new [] { new NamedEntityDefinitionProperty {
FieldName = "fieldName",
Metric = new NamedEntityDefinitionMetricProperty {
Aggregation = "aggregation",
AggregationFunctionParameters = new Dictionary<string, string> {
{ "aggregationFunctionParametersKey", "aggregationFunctionParameters" }
}
},
PropertyName = "propertyName",
PropertyRole = "propertyRole",
PropertyUsage = "propertyUsage"
} },
EntityDescription = "entityDescription",
EntitySynonyms = new [] { "entitySynonyms" },
SemanticEntityType = new SemanticEntityTypeProperty {
SubTypeName = "subTypeName",
TypeName = "typeName",
TypeParameters = new Dictionary<string, string> {
{ "typeParametersKey", "typeParameters" }
}
}
};
Synopsis
Constructors
Topic |
Properties
Definition | The definition of a named entity. |
Entity |
The description of the named entity. |
Entity |
The name of the named entity. |
Entity |
The other names or aliases for the named entity. |
Semantic |
The type of named entity that a topic represents. |
Constructors
TopicNamedEntityProperty()
public TopicNamedEntityProperty()
Properties
Definition
The definition of a named entity.
public object Definition { get; set; }
Property Value
System.
Remarks
EntityDescription
The description of the named entity.
public string EntityDescription { get; set; }
Property Value
System.
Remarks
EntityName
The name of the named entity.
public string EntityName { get; set; }
Property Value
System.
Remarks
EntitySynonyms
The other names or aliases for the named entity.
public string[] EntitySynonyms { get; set; }
Property Value
System.
Remarks
SemanticEntityType
The type of named entity that a topic represents.
public object SemanticEntityType { get; set; }
Property Value
System.