interface ParameterTextFieldControlProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.ParameterTextFieldControlProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.ParameterTextFieldControlProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.ParameterTextFieldControlProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » ParameterTextFieldControlProperty |
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 * as quicksight from '@aws-cdk/aws-quicksight';
const parameterTextFieldControlProperty: quicksight.CfnDashboard.ParameterTextFieldControlProperty = {
parameterControlId: 'parameterControlId',
sourceParameterName: 'sourceParameterName',
title: 'title',
// the properties below are optional
displayOptions: {
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 ParameterTextFieldControl . |
source | string | The source parameter name of the ParameterTextFieldControl . |
title | string | The title of the ParameterTextFieldControl . |
display | IResolvable | Text | The display options of a control. |
parameterControlId
Type:
string
The ID of the ParameterTextFieldControl
.
sourceParameterName
Type:
string
The source parameter name of the ParameterTextFieldControl
.
title
Type:
string
The title of the ParameterTextFieldControl
.
displayOptions?
Type:
IResolvable
|
Text
(optional)
The display options of a control.