Class CfnDashboard.FilterOperationSelectedFieldsConfigurationProperty
The configuration of selected fields in the CustomActionFilterOperation
.
Inheritance
System.Object
CfnDashboard.FilterOperationSelectedFieldsConfigurationProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FilterOperationSelectedFieldsConfigurationProperty : Object, CfnDashboard.IFilterOperationSelectedFieldsConfigurationProperty
Syntax (vb)
Public Class FilterOperationSelectedFieldsConfigurationProperty
Inherits Object
Implements CfnDashboard.IFilterOperationSelectedFieldsConfigurationProperty
Remarks
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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() |
Properties
SelectedColumns | The selected columns of a dataset. |
SelectedFieldOptions | A structure that contains the options that choose which fields are filtered in the |
SelectedFields | Chooses the fields that are filtered in |
Constructors
FilterOperationSelectedFieldsConfigurationProperty()
public FilterOperationSelectedFieldsConfigurationProperty()
Properties
SelectedColumns
The selected columns of a dataset.
public object SelectedColumns { get; set; }
Property Value
System.Object
Remarks
SelectedFieldOptions
A structure that contains the options that choose which fields are filtered in the CustomActionFilterOperation
.
public string SelectedFieldOptions { get; set; }
Property Value
System.String
Remarks
SelectedFields
Chooses the fields that are filtered in CustomActionFilterOperation
.
public string[] SelectedFields { get; set; }
Property Value
System.String[]