Class CfnDataSetPropsMixin.OutputColumnProperty
Output column.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSetPropsMixin.OutputColumnProperty : CfnDataSetPropsMixin.IOutputColumnProperty
Syntax (vb)
Public Class CfnDataSetPropsMixin.OutputColumnProperty Implements CfnDataSetPropsMixin.IOutputColumnProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var outputColumnProperty = new OutputColumnProperty {
Description = "description",
Id = "id",
Name = "name",
SubType = "subType",
Type = "type"
};
Synopsis
Constructors
| OutputColumnProperty() | Output column. |
Properties
| Description | A description for a column. |
| Id | A unique identifier for the output column. |
| Name | The display name of the column.. |
| SubType | The sub data type of the column. |
| Type | The data type of the column. |
Constructors
OutputColumnProperty()
Output column.
public OutputColumnProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;
var outputColumnProperty = new OutputColumnProperty {
Description = "description",
Id = "id",
Name = "name",
SubType = "subType",
Type = "type"
};
Properties
Description
A description for a column.
public string? Description { get; set; }
Property Value
Remarks
Id
A unique identifier for the output column.
public string? Id { get; set; }
Property Value
Remarks
Name
The display name of the column..
public string? Name { get; set; }
Property Value
Remarks
SubType
The sub data type of the column.
public string? SubType { get; set; }
Property Value
Remarks
Type
The data type of the column.
public string? Type { get; set; }