Show / Hide Table of Contents

Class CfnDataSet.TableSemanticMetadataProperty

Inheritance
object
CfnDataSet.TableSemanticMetadataProperty
Implements
CfnDataSet.ITableSemanticMetadataProperty
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 CfnDataSet.TableSemanticMetadataProperty : CfnDataSet.ITableSemanticMetadataProperty
Syntax (vb)
Public Class CfnDataSet.TableSemanticMetadataProperty Implements CfnDataSet.ITableSemanticMetadataProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-tablesemanticmetadata.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 tableSemanticMetadataProperty = new TableSemanticMetadataProperty {
                 ColumnMetadata = new [] { new SharedColumnSemanticMetadataProperty {
                     ColumnProperties = new [] { new ColumnSemanticPropertyProperty {
                         AdditionalNotes = new AdditionalNotesProperty {
                             Text = "text"
                         },
                         Description = new ColumnDescriptionProperty {
                             Text = "text"
                         },
                         SemanticType = new ColumnSemanticTypeProperty {
                             GeographicalRole = "geographicalRole"
                         }
                     } },

                     // the properties below are optional
                     ColumnNames = new [] { "columnNames" }
                 } }
             };

Synopsis

Constructors

TableSemanticMetadataProperty()

Properties

ColumnMetadata

Constructors

TableSemanticMetadataProperty()

public TableSemanticMetadataProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-tablesemanticmetadata.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 tableSemanticMetadataProperty = new TableSemanticMetadataProperty {
                 ColumnMetadata = new [] { new SharedColumnSemanticMetadataProperty {
                     ColumnProperties = new [] { new ColumnSemanticPropertyProperty {
                         AdditionalNotes = new AdditionalNotesProperty {
                             Text = "text"
                         },
                         Description = new ColumnDescriptionProperty {
                             Text = "text"
                         },
                         SemanticType = new ColumnSemanticTypeProperty {
                             GeographicalRole = "geographicalRole"
                         }
                     } },

                     // the properties below are optional
                     ColumnNames = new [] { "columnNames" }
                 } }
             };

Properties

ColumnMetadata

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-tablesemanticmetadata.html#cfn-quicksight-dataset-tablesemanticmetadata-columnmetadata

Type union: either IResolvable or (either IResolvable or CfnDataSet.ISharedColumnSemanticMetadataProperty)[]

Implements

CfnDataSet.ITableSemanticMetadataProperty
Back to top Generated by DocFX