Interface CfnTemplate.ParameterTextAreaControlProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.ParameterTextAreaControlProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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.services.quicksight.*; ParameterTextAreaControlProperty parameterTextAreaControlProperty = ParameterTextAreaControlProperty.builder() .parameterControlId("parameterControlId") .sourceParameterName("sourceParameterName") .title("title") // the properties below are optional .delimiter("delimiter") .displayOptions(TextAreaControlDisplayOptionsProperty.builder() .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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.ParameterTextAreaControlProperty
static final class
An implementation forCfnTemplate.ParameterTextAreaControlProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The delimiter that is used to separate the lines in text.default Object
The display options of a control.The ID of theParameterTextAreaControl
.The source parameter name of theParameterTextAreaControl
.getTitle()
The title of theParameterTextAreaControl
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterControlId
The ID of theParameterTextAreaControl
. -
getSourceParameterName
The source parameter name of theParameterTextAreaControl
. -
getTitle
The title of theParameterTextAreaControl
. -
getDelimiter
The delimiter that is used to separate the lines in text. -
getDisplayOptions
The display options of a control. -
builder
-