Interface CfnDashboardPropsMixin.ParameterTextAreaControlProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboardPropsMixin.ParameterTextAreaControlProperty.Jsii$Proxy
- Enclosing class:
CfnDashboardPropsMixin
@Stability(Stable)
public static interface CfnDashboardPropsMixin.ParameterTextAreaControlProperty
extends software.amazon.jsii.JsiiSerializable
A control to display a text box that is used to enter multiple entries.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.quicksight.mixins.*;
ParameterTextAreaControlProperty parameterTextAreaControlProperty = ParameterTextAreaControlProperty.builder()
.delimiter("delimiter")
.displayOptions(TextAreaControlDisplayOptionsProperty.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")
.fontFamily("fontFamily")
.fontSize(FontSizeProperty.builder()
.absolute("absolute")
.relative("relative")
.build())
.fontStyle("fontStyle")
.fontWeight(FontWeightProperty.builder()
.name("name")
.build())
.build())
.visibility("visibility")
.build())
.build())
.parameterControlId("parameterControlId")
.sourceParameterName("sourceParameterName")
.title("title")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboardPropsMixin.ParameterTextAreaControlPropertystatic final classAn implementation forCfnDashboardPropsMixin.ParameterTextAreaControlProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe delimiter that is used to separate the lines in text.default ObjectThe display options of a control.default StringThe ID of theParameterTextAreaControl.default StringThe source parameter name of theParameterTextAreaControl.default StringgetTitle()The title of theParameterTextAreaControl.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDelimiter
The delimiter that is used to separate the lines in text.- See Also:
-
getDisplayOptions
The display options of a control.Returns union: either
IResolvableorCfnDashboardPropsMixin.TextAreaControlDisplayOptionsProperty- See Also:
-
getParameterControlId
The ID of theParameterTextAreaControl.- See Also:
-
getSourceParameterName
The source parameter name of theParameterTextAreaControl.- See Also:
-
getTitle
The title of theParameterTextAreaControl.- See Also:
-
builder
-