Class CfnAnalysis.PivotTableFieldCollapseStateTargetProperty
The target of a pivot table field collapse state.
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysis.PivotTableFieldCollapseStateTargetProperty : CfnAnalysis.IPivotTableFieldCollapseStateTargetProperty
Syntax (vb)
Public Class CfnAnalysis.PivotTableFieldCollapseStateTargetProperty Implements CfnAnalysis.IPivotTableFieldCollapseStateTargetProperty
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 pivotTableFieldCollapseStateTargetProperty = new PivotTableFieldCollapseStateTargetProperty {
FieldDataPathValues = new [] { new DataPathValueProperty {
DataPathType = new DataPathTypeProperty {
PivotTableDataPathType = "pivotTableDataPathType"
},
FieldId = "fieldId",
FieldValue = "fieldValue"
} },
FieldId = "fieldId"
};
Synopsis
Constructors
PivotTableFieldCollapseStateTargetProperty() | The target of a pivot table field collapse state. |
Properties
FieldDataPathValues | The data path of the pivot table's header. |
FieldId | The field ID of the pivot table that the collapse state needs to be set to. |
Constructors
PivotTableFieldCollapseStateTargetProperty()
The target of a pivot table field collapse state.
public PivotTableFieldCollapseStateTargetProperty()
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 pivotTableFieldCollapseStateTargetProperty = new PivotTableFieldCollapseStateTargetProperty {
FieldDataPathValues = new [] { new DataPathValueProperty {
DataPathType = new DataPathTypeProperty {
PivotTableDataPathType = "pivotTableDataPathType"
},
FieldId = "fieldId",
FieldValue = "fieldValue"
} },
FieldId = "fieldId"
};
Properties
FieldDataPathValues
The data path of the pivot table's header.
public object? FieldDataPathValues { get; set; }
Property Value
Remarks
FieldId
The field ID of the pivot table that the collapse state needs to be set to.
public string? FieldId { get; set; }