Show / Hide Table of Contents

Class CfnAnalysis.FilterScopeConfigurationProperty

The scope configuration for a FilterGroup .

Inheritance
object
CfnAnalysis.FilterScopeConfigurationProperty
Implements
CfnAnalysis.IFilterScopeConfigurationProperty
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 CfnAnalysis.FilterScopeConfigurationProperty : CfnAnalysis.IFilterScopeConfigurationProperty
Syntax (vb)
Public Class CfnAnalysis.FilterScopeConfigurationProperty Implements CfnAnalysis.IFilterScopeConfigurationProperty
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-analysis-filterscopeconfiguration.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 allSheets;

             var filterScopeConfigurationProperty = new FilterScopeConfigurationProperty {
                 AllSheets = allSheets,
                 SelectedSheets = new SelectedSheetsFilterScopeConfigurationProperty {
                     SheetVisualScopingConfigurations = new [] { new SheetVisualScopingConfigurationProperty {
                         Scope = "scope",
                         SheetId = "sheetId",

                         // the properties below are optional
                         VisualIds = new [] { "visualIds" }
                     } }
                 }
             };

Synopsis

Constructors

FilterScopeConfigurationProperty()

The scope configuration for a FilterGroup .

Properties

AllSheets

The configuration that applies a filter to all sheets.

SelectedSheets

The configuration for applying a filter to specific sheets.

Constructors

FilterScopeConfigurationProperty()

The scope configuration for a FilterGroup .

public FilterScopeConfigurationProperty()
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-analysis-filterscopeconfiguration.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 allSheets;

             var filterScopeConfigurationProperty = new FilterScopeConfigurationProperty {
                 AllSheets = allSheets,
                 SelectedSheets = new SelectedSheetsFilterScopeConfigurationProperty {
                     SheetVisualScopingConfigurations = new [] { new SheetVisualScopingConfigurationProperty {
                         Scope = "scope",
                         SheetId = "sheetId",

                         // the properties below are optional
                         VisualIds = new [] { "visualIds" }
                     } }
                 }
             };

Properties

AllSheets

The configuration that applies a filter to all sheets.

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

object

Remarks

When you choose AllSheets as the value for a FilterScopeConfiguration , this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. The AllSheetsFilterScopeConfiguration is chosen.

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

SelectedSheets

The configuration for applying a filter to specific sheets.

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

object

Remarks

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

Implements

CfnAnalysis.IFilterScopeConfigurationProperty
Back to top Generated by DocFX