Show / Hide Table of Contents

Class CfnTopicPropsMixin.SemanticTypeProperty

A structure that represents a semantic type.

Inheritance
object
CfnTopicPropsMixin.SemanticTypeProperty
Implements
CfnTopicPropsMixin.ISemanticTypeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTopicPropsMixin.SemanticTypeProperty : CfnTopicPropsMixin.ISemanticTypeProperty
Syntax (vb)
Public Class CfnTopicPropsMixin.SemanticTypeProperty Implements CfnTopicPropsMixin.ISemanticTypeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-semantictype.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.CfnPropertyMixins.AWS.QuickSight;

             var semanticTypeProperty = new SemanticTypeProperty {
                 FalseyCellValue = "falseyCellValue",
                 FalseyCellValueSynonyms = new [] { "falseyCellValueSynonyms" },
                 SubTypeName = "subTypeName",
                 TruthyCellValue = "truthyCellValue",
                 TruthyCellValueSynonyms = new [] { "truthyCellValueSynonyms" },
                 TypeName = "typeName",
                 TypeParameters = new Dictionary<string, string> {
                     { "typeParametersKey", "typeParameters" }
                 }
             };

Synopsis

Constructors

SemanticTypeProperty()

A structure that represents a semantic type.

Properties

FalseyCellValue

The semantic type falsey cell value.

FalseyCellValueSynonyms

The other names or aliases for the false cell value.

SubTypeName

The semantic type sub type name.

TruthyCellValue

The semantic type truthy cell value.

TruthyCellValueSynonyms

The other names or aliases for the true cell value.

TypeName

The semantic type name.

TypeParameters

The semantic type parameters.

Constructors

SemanticTypeProperty()

A structure that represents a semantic type.

public SemanticTypeProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-semantictype.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.CfnPropertyMixins.AWS.QuickSight;

             var semanticTypeProperty = new SemanticTypeProperty {
                 FalseyCellValue = "falseyCellValue",
                 FalseyCellValueSynonyms = new [] { "falseyCellValueSynonyms" },
                 SubTypeName = "subTypeName",
                 TruthyCellValue = "truthyCellValue",
                 TruthyCellValueSynonyms = new [] { "truthyCellValueSynonyms" },
                 TypeName = "typeName",
                 TypeParameters = new Dictionary<string, string> {
                     { "typeParametersKey", "typeParameters" }
                 }
             };

Properties

FalseyCellValue

The semantic type falsey cell value.

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

string

Remarks

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

FalseyCellValueSynonyms

The other names or aliases for the false cell value.

public string[]? FalseyCellValueSynonyms { get; set; }
Property Value

string[]

Remarks

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

SubTypeName

The semantic type 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-semantictype.html#cfn-quicksight-topic-semantictype-subtypename

TruthyCellValue

The semantic type truthy cell value.

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

string

Remarks

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

TruthyCellValueSynonyms

The other names or aliases for the true cell value.

public string[]? TruthyCellValueSynonyms { get; set; }
Property Value

string[]

Remarks

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

TypeName

The semantic type name.

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

string

Remarks

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

TypeParameters

The semantic type parameters.

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

object

Remarks

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

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

Implements

CfnTopicPropsMixin.ISemanticTypeProperty
Back to top Generated by DocFX