Show / Hide Table of Contents

Class CfnDataSetPropsMixin.ColumnToUnpivotProperty

Specifies a column to be unpivoted, transforming it from a column into rows with associated values.

Inheritance
object
CfnDataSetPropsMixin.ColumnToUnpivotProperty
Implements
CfnDataSetPropsMixin.IColumnToUnpivotProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSetPropsMixin.ColumnToUnpivotProperty : CfnDataSetPropsMixin.IColumnToUnpivotProperty
Syntax (vb)
Public Class CfnDataSetPropsMixin.ColumnToUnpivotProperty Implements CfnDataSetPropsMixin.IColumnToUnpivotProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-columntounpivot.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.Mixins.Preview.AWS.QuickSight.Mixins;

             var columnToUnpivotProperty = new ColumnToUnpivotProperty {
                 ColumnName = "columnName",
                 NewValue = "newValue"
             };

Synopsis

Constructors

ColumnToUnpivotProperty()

Specifies a column to be unpivoted, transforming it from a column into rows with associated values.

Properties

ColumnName

The name of the column to unpivot from the source data.

NewValue

The value to assign to this column in the unpivoted result, typically the column name or a descriptive label.

Constructors

ColumnToUnpivotProperty()

Specifies a column to be unpivoted, transforming it from a column into rows with associated values.

public ColumnToUnpivotProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-columntounpivot.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.Mixins.Preview.AWS.QuickSight.Mixins;

             var columnToUnpivotProperty = new ColumnToUnpivotProperty {
                 ColumnName = "columnName",
                 NewValue = "newValue"
             };

Properties

ColumnName

The name of the column to unpivot from the source data.

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

string

Remarks

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

NewValue

The value to assign to this column in the unpivoted result, typically the column name or a descriptive label.

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

string

Remarks

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

Implements

CfnDataSetPropsMixin.IColumnToUnpivotProperty
Back to top Generated by DocFX