Show / Hide Table of Contents

Class CfnAnalysisPropsMixin.CustomActionFilterOperationProperty

The filter operation that filters data included in a visual or in an entire sheet.

Inheritance
object
CfnAnalysisPropsMixin.CustomActionFilterOperationProperty
Implements
CfnAnalysisPropsMixin.ICustomActionFilterOperationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.CustomActionFilterOperationProperty : CfnAnalysisPropsMixin.ICustomActionFilterOperationProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.CustomActionFilterOperationProperty Implements CfnAnalysisPropsMixin.ICustomActionFilterOperationProperty
Remarks

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

             var customActionFilterOperationProperty = new CustomActionFilterOperationProperty {
                 SelectedFieldsConfiguration = new FilterOperationSelectedFieldsConfigurationProperty {
                     SelectedColumns = new [] { new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     } },
                     SelectedFieldOptions = "selectedFieldOptions",
                     SelectedFields = new [] { "selectedFields" }
                 },
                 TargetVisualsConfiguration = new FilterOperationTargetVisualsConfigurationProperty {
                     SameSheetTargetVisualConfiguration = new SameSheetTargetVisualConfigurationProperty {
                         TargetVisualOptions = "targetVisualOptions",
                         TargetVisuals = new [] { "targetVisuals" }
                     }
                 }
             };

Synopsis

Constructors

CustomActionFilterOperationProperty()

The filter operation that filters data included in a visual or in an entire sheet.

Properties

SelectedFieldsConfiguration

The configuration that chooses the fields to be filtered.

TargetVisualsConfiguration

The configuration that chooses the target visuals to be filtered.

Constructors

CustomActionFilterOperationProperty()

The filter operation that filters data included in a visual or in an entire sheet.

public CustomActionFilterOperationProperty()
Remarks

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

             var customActionFilterOperationProperty = new CustomActionFilterOperationProperty {
                 SelectedFieldsConfiguration = new FilterOperationSelectedFieldsConfigurationProperty {
                     SelectedColumns = new [] { new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     } },
                     SelectedFieldOptions = "selectedFieldOptions",
                     SelectedFields = new [] { "selectedFields" }
                 },
                 TargetVisualsConfiguration = new FilterOperationTargetVisualsConfigurationProperty {
                     SameSheetTargetVisualConfiguration = new SameSheetTargetVisualConfigurationProperty {
                         TargetVisualOptions = "targetVisualOptions",
                         TargetVisuals = new [] { "targetVisuals" }
                     }
                 }
             };

Properties

SelectedFieldsConfiguration

The configuration that chooses the fields to be filtered.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-customactionfilteroperation.html#cfn-quicksight-analysis-customactionfilteroperation-selectedfieldsconfiguration

Type union: either IResolvable or CfnAnalysisPropsMixin.IFilterOperationSelectedFieldsConfigurationProperty

TargetVisualsConfiguration

The configuration that chooses the target visuals to be filtered.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-customactionfilteroperation.html#cfn-quicksight-analysis-customactionfilteroperation-targetvisualsconfiguration

Type union: either IResolvable or CfnAnalysisPropsMixin.IFilterOperationTargetVisualsConfigurationProperty

Implements

CfnAnalysisPropsMixin.ICustomActionFilterOperationProperty
Back to top Generated by DocFX