Show / Hide Table of Contents

Class CfnTemplate.PivotTableFieldOptionsProperty

The field options for a pivot table visual.

Inheritance
System.Object
CfnTemplate.PivotTableFieldOptionsProperty
Implements
CfnTemplate.IPivotTableFieldOptionsProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class PivotTableFieldOptionsProperty : Object, CfnTemplate.IPivotTableFieldOptionsProperty
Syntax (vb)
Public Class PivotTableFieldOptionsProperty
    Inherits Object
    Implements CfnTemplate.IPivotTableFieldOptionsProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-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.AWS.QuickSight;

var pivotTableFieldOptionsProperty = new PivotTableFieldOptionsProperty {
    DataPathOptions = new [] { new PivotTableDataPathOptionProperty {
        DataPathList = new [] { new DataPathValueProperty {
            FieldId = "fieldId",
            FieldValue = "fieldValue"
        } },

        // the properties below are optional
        Width = "width"
    } },
    SelectedFieldOptions = new [] { new PivotTableFieldOptionProperty {
        FieldId = "fieldId",

        // the properties below are optional
        CustomLabel = "customLabel",
        Visibility = "visibility"
    } }
};

Synopsis

Constructors

PivotTableFieldOptionsProperty()

Properties

DataPathOptions

The data path options for the pivot table field options.

SelectedFieldOptions

The selected field options for the pivot table field options.

Constructors

PivotTableFieldOptionsProperty()

public PivotTableFieldOptionsProperty()

Properties

DataPathOptions

The data path options for the pivot table field options.

public object DataPathOptions { get; set; }
Property Value

System.Object

Remarks

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

SelectedFieldOptions

The selected field options for the pivot table field options.

public object SelectedFieldOptions { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnTemplate.IPivotTableFieldOptionsProperty
Back to top Generated by DocFX