interface ParameterTextAreaControlProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.ParameterTextAreaControlProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_ParameterTextAreaControlProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.ParameterTextAreaControlProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.ParameterTextAreaControlProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » ParameterTextAreaControlProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const parameterTextAreaControlProperty: quicksight.CfnAnalysis.ParameterTextAreaControlProperty = {
parameterControlId: 'parameterControlId',
sourceParameterName: 'sourceParameterName',
title: 'title',
// the properties below are optional
delimiter: 'delimiter',
displayOptions: {
infoIconLabelOptions: {
infoIconText: 'infoIconText',
visibility: 'visibility',
},
placeholderOptions: {
visibility: 'visibility',
},
titleOptions: {
customLabel: 'customLabel',
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontSize: {
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
visibility: 'visibility',
},
},
};
Properties
Name | Type | Description |
---|---|---|
parameter | string | The ID of the ParameterTextAreaControl . |
source | string | The source parameter name of the ParameterTextAreaControl . |
title | string | The title of the ParameterTextAreaControl . |
delimiter? | string | The delimiter that is used to separate the lines in text. |
display | IResolvable | Text | The display options of a control. |
parameterControlId
Type:
string
The ID of the ParameterTextAreaControl
.
sourceParameterName
Type:
string
The source parameter name of the ParameterTextAreaControl
.
title
Type:
string
The title of the ParameterTextAreaControl
.
delimiter?
Type:
string
(optional)
The delimiter that is used to separate the lines in text.
displayOptions?
Type:
IResolvable
|
Text
(optional)
The display options of a control.