Show / Hide Table of Contents

Class CfnTemplate.FilterTextFieldControlProperty

A control to display a text box that is used to enter a single entry.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filtertextfieldcontrol.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 filterTextFieldControlProperty = new FilterTextFieldControlProperty {
    FilterControlId = "filterControlId",
    SourceFilterId = "sourceFilterId",
    Title = "title",

    // the properties below are optional
    DisplayOptions = new TextFieldControlDisplayOptionsProperty {
        PlaceholderOptions = new TextControlPlaceholderOptionsProperty {
            Visibility = "visibility"
        },
        TitleOptions = new LabelOptionsProperty {
            CustomLabel = "customLabel",
            FontConfiguration = new FontConfigurationProperty {
                FontColor = "fontColor",
                FontDecoration = "fontDecoration",
                FontSize = new FontSizeProperty {
                    Relative = "relative"
                },
                FontStyle = "fontStyle",
                FontWeight = new FontWeightProperty {
                    Name = "name"
                }
            },
            Visibility = "visibility"
        }
    }
};

Synopsis

Constructors

FilterTextFieldControlProperty()

Properties

DisplayOptions

The display options of a control.

FilterControlId

The ID of the FilterTextFieldControl .

SourceFilterId

The source filter ID of the FilterTextFieldControl .

Title

The title of the FilterTextFieldControl .

Constructors

FilterTextFieldControlProperty()

public FilterTextFieldControlProperty()

Properties

DisplayOptions

The display options of a control.

public object DisplayOptions { get; set; }
Property Value

System.Object

Remarks

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

FilterControlId

The ID of the FilterTextFieldControl .

public string FilterControlId { get; set; }
Property Value

System.String

Remarks

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

SourceFilterId

The source filter ID of the FilterTextFieldControl .

public string SourceFilterId { get; set; }
Property Value

System.String

Remarks

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

Title

The title of the FilterTextFieldControl .

public string Title { get; set; }
Property Value

System.String

Remarks

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

Implements

CfnTemplate.IFilterTextFieldControlProperty
Back to top Generated by DocFX