Show / Hide Table of Contents

Class CfnTopic.SemanticEntityTypeProperty

A structure that represents a semantic entity type.

Inheritance
object
CfnTopic.SemanticEntityTypeProperty
Implements
CfnTopic.ISemanticEntityTypeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-semanticentitytype.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-semanticentitytype.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-semanticentitytype.html#cfn-quicksight-topic-semanticentitytype-subtypename

TypeName

The semantic entity type name.

public string? TypeName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-semanticentitytype.html#cfn-quicksight-topic-semanticentitytype-typename

TypeParameters

The semantic entity type parameters.

public object? TypeParameters { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-semanticentitytype.html#cfn-quicksight-topic-semanticentitytype-typeparameters

Type union: either IResolvable or Dictionary<string, string>

Implements

CfnTopic.ISemanticEntityTypeProperty
Back to top Generated by DocFX