interface TopicNamedEntityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnTopicPropsMixin.TopicNamedEntityProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnTopicPropsMixin_TopicNamedEntityProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnTopicPropsMixin.TopicNamedEntityProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnTopicPropsMixin.TopicNamedEntityProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnTopicPropsMixin » TopicNamedEntityProperty |
A structure that represents a named entity.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const topicNamedEntityProperty: quicksight_mixins.CfnTopicPropsMixin.TopicNamedEntityProperty = {
definition: [{
fieldName: 'fieldName',
metric: {
aggregation: 'aggregation',
aggregationFunctionParameters: {
aggregationFunctionParametersKey: 'aggregationFunctionParameters',
},
},
propertyName: 'propertyName',
propertyRole: 'propertyRole',
propertyUsage: 'propertyUsage',
}],
entityDescription: 'entityDescription',
entityName: 'entityName',
entitySynonyms: ['entitySynonyms'],
semanticEntityType: {
subTypeName: 'subTypeName',
typeName: 'typeName',
typeParameters: {
typeParametersKey: 'typeParameters',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| definition? | IResolvable | (IResolvable | Named)[] | The definition of a named entity. |
| entity | string | The description of the named entity. |
| entity | string | The name of the named entity. |
| entity | string[] | The other names or aliases for the named entity. |
| semantic | IResolvable | Semantic | The type of named entity that a topic represents. |
definition?
Type:
IResolvable | (IResolvable | Named)[]
(optional)
The definition of a named entity.
entityDescription?
Type:
string
(optional)
The description of the named entity.
entityName?
Type:
string
(optional)
The name of the named entity.
entitySynonyms?
Type:
string[]
(optional)
The other names or aliases for the named entity.
semanticEntityType?
Type:
IResolvable | Semantic
(optional)
The type of named entity that a topic represents.

.NET
Go
Java
Python
TypeScript