Show / Hide Table of Contents

Class CfnDashboard.FilterOperationSelectedFieldsConfigurationProperty

The configuration of selected fields in the CustomActionFilterOperation .

Inheritance
object
CfnDashboard.FilterOperationSelectedFieldsConfigurationProperty
Implements
CfnDashboard.IFilterOperationSelectedFieldsConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.FilterOperationSelectedFieldsConfigurationProperty : CfnDashboard.IFilterOperationSelectedFieldsConfigurationProperty
Syntax (vb)
Public Class CfnDashboard.FilterOperationSelectedFieldsConfigurationProperty Implements CfnDashboard.IFilterOperationSelectedFieldsConfigurationProperty
Remarks

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filteroperationselectedfieldsconfiguration.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 filterOperationSelectedFieldsConfigurationProperty = new FilterOperationSelectedFieldsConfigurationProperty {
                 SelectedColumns = new [] { new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 } },
                 SelectedFieldOptions = "selectedFieldOptions",
                 SelectedFields = new [] { "selectedFields" }
             };

Synopsis

Constructors

FilterOperationSelectedFieldsConfigurationProperty()

The configuration of selected fields in the CustomActionFilterOperation .

Properties

SelectedColumns

The selected columns of a dataset.

SelectedFieldOptions

A structure that contains the options that choose which fields are filtered in the CustomActionFilterOperation .

SelectedFields

Chooses the fields that are filtered in CustomActionFilterOperation .

Constructors

FilterOperationSelectedFieldsConfigurationProperty()

The configuration of selected fields in the CustomActionFilterOperation .

public FilterOperationSelectedFieldsConfigurationProperty()
Remarks

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filteroperationselectedfieldsconfiguration.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 filterOperationSelectedFieldsConfigurationProperty = new FilterOperationSelectedFieldsConfigurationProperty {
                 SelectedColumns = new [] { new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 } },
                 SelectedFieldOptions = "selectedFieldOptions",
                 SelectedFields = new [] { "selectedFields" }
             };

Properties

SelectedColumns

The selected columns of a dataset.

public object? SelectedColumns { get; set; }
Property Value

object

Remarks

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

SelectedFieldOptions

A structure that contains the options that choose which fields are filtered in the CustomActionFilterOperation .

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

string

Remarks

Valid values are defined as follows:

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

    SelectedFields

    Chooses the fields that are filtered in CustomActionFilterOperation .

    public string[]? SelectedFields { get; set; }
    Property Value

    string[]

    Remarks

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

    Implements

    CfnDashboard.IFilterOperationSelectedFieldsConfigurationProperty
    Back to top Generated by DocFX