Show / Hide Table of Contents

Interface CfnDashboardPropsMixin.IPivotTableFieldOptionsProperty

The field options for a pivot table visual.

Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDashboardPropsMixin.IPivotTableFieldOptionsProperty
Syntax (vb)
Public Interface CfnDashboardPropsMixin.IPivotTableFieldOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pivottablefieldoptions.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 pivotTableFieldOptionsProperty = new PivotTableFieldOptionsProperty {
                 CollapseStateOptions = new [] { new PivotTableFieldCollapseStateOptionProperty {
                     State = "state",
                     Target = new PivotTableFieldCollapseStateTargetProperty {
                         FieldDataPathValues = new [] { new DataPathValueProperty {
                             DataPathType = new DataPathTypeProperty {
                                 PivotTableDataPathType = "pivotTableDataPathType"
                             },
                             FieldId = "fieldId",
                             FieldValue = "fieldValue"
                         } },
                         FieldId = "fieldId"
                     }
                 } },
                 DataPathOptions = new [] { new PivotTableDataPathOptionProperty {
                     DataPathList = new [] { new DataPathValueProperty {
                         DataPathType = new DataPathTypeProperty {
                             PivotTableDataPathType = "pivotTableDataPathType"
                         },
                         FieldId = "fieldId",
                         FieldValue = "fieldValue"
                     } },
                     Width = "width"
                 } },
                 SelectedFieldOptions = new [] { new PivotTableFieldOptionProperty {
                     CustomLabel = "customLabel",
                     FieldId = "fieldId",
                     Visibility = "visibility"
                 } }
             };

Synopsis

Properties

CollapseStateOptions

The collapse state options for the pivot table field options.

DataPathOptions

The data path options for the pivot table field options.

SelectedFieldOptions

The selected field options for the pivot table field options.

Properties

CollapseStateOptions

The collapse state options for the pivot table field options.

object? CollapseStateOptions { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pivottablefieldoptions.html#cfn-quicksight-dashboard-pivottablefieldoptions-collapsestateoptions

Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.IPivotTableFieldCollapseStateOptionProperty)[]

DataPathOptions

The data path options for the pivot table field options.

object? DataPathOptions { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pivottablefieldoptions.html#cfn-quicksight-dashboard-pivottablefieldoptions-datapathoptions

Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.IPivotTableDataPathOptionProperty)[]

SelectedFieldOptions

The selected field options for the pivot table field options.

object? SelectedFieldOptions { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pivottablefieldoptions.html#cfn-quicksight-dashboard-pivottablefieldoptions-selectedfieldoptions

Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.IPivotTableFieldOptionProperty)[]

Back to top Generated by DocFX