Class CfnAnalysisPropsMixin.DataPathValueProperty
The data path that needs to be sorted.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.DataPathValueProperty : CfnAnalysisPropsMixin.IDataPathValueProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.DataPathValueProperty Implements CfnAnalysisPropsMixin.IDataPathValueProperty
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.CfnPropertyMixins.AWS.QuickSight;
var dataPathValueProperty = new DataPathValueProperty {
DataPathType = new DataPathTypeProperty {
PivotTableDataPathType = "pivotTableDataPathType"
},
FieldId = "fieldId",
FieldValue = "fieldValue"
};
Synopsis
Constructors
| DataPathValueProperty() | The data path that needs to be sorted. |
Properties
| DataPathType | The type configuration of the field. |
| FieldId | The field ID of the field that needs to be sorted. |
| FieldValue | The actual value of the field that needs to be sorted. |
Constructors
DataPathValueProperty()
The data path that needs to be sorted.
public DataPathValueProperty()
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.CfnPropertyMixins.AWS.QuickSight;
var dataPathValueProperty = new DataPathValueProperty {
DataPathType = new DataPathTypeProperty {
PivotTableDataPathType = "pivotTableDataPathType"
},
FieldId = "fieldId",
FieldValue = "fieldValue"
};
Properties
DataPathType
The type configuration of the field.
public object? DataPathType { get; set; }
Property Value
Remarks
FieldId
The field ID of the field that needs to be sorted.
public string? FieldId { get; set; }
Property Value
Remarks
FieldValue
The actual value of the field that needs to be sorted.
public string? FieldValue { get; set; }