Class CfnDataSet.TableSemanticMetadataProperty
Implements
Inherited Members
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
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
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; }