Interface CfnAnalysis.ParameterTextFieldControlProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ParameterTextFieldControlProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.ParameterTextFieldControlProperty
extends software.amazon.jsii.JsiiSerializable
A control to display a text box that is used to enter a single entry.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; ParameterTextFieldControlProperty parameterTextFieldControlProperty = ParameterTextFieldControlProperty.builder() .parameterControlId("parameterControlId") .sourceParameterName("sourceParameterName") .title("title") // the properties below are optional .displayOptions(TextFieldControlDisplayOptionsProperty.builder() .infoIconLabelOptions(SheetControlInfoIconLabelOptionsProperty.builder() .infoIconText("infoIconText") .visibility("visibility") .build()) .placeholderOptions(TextControlPlaceholderOptionsProperty.builder() .visibility("visibility") .build()) .titleOptions(LabelOptionsProperty.builder() .customLabel("customLabel") .fontConfiguration(FontConfigurationProperty.builder() .fontColor("fontColor") .fontDecoration("fontDecoration") .fontSize(FontSizeProperty.builder() .relative("relative") .build()) .fontStyle("fontStyle") .fontWeight(FontWeightProperty.builder() .name("name") .build()) .build()) .visibility("visibility") .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.ParameterTextFieldControlProperty
static final class
An implementation forCfnAnalysis.ParameterTextFieldControlProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterControlId
The ID of theParameterTextFieldControl
.- See Also:
-
getSourceParameterName
The source parameter name of theParameterTextFieldControl
.- See Also:
-
getTitle
The title of theParameterTextFieldControl
.- See Also:
-
getDisplayOptions
The display options of a control.- See Also:
-
builder
-