interface TextFieldControlDisplayOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.TextFieldControlDisplayOptionsProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.TextFieldControlDisplayOptionsProperty | 
  Python | aws_cdk.aws_quicksight.CfnAnalysis.TextFieldControlDisplayOptionsProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnAnalysis » TextFieldControlDisplayOptionsProperty | 
The display options of a control.
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 textFieldControlDisplayOptionsProperty: quicksight.CfnAnalysis.TextFieldControlDisplayOptionsProperty = {
  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 | 
|---|---|---|
| placeholder | IResolvable | Text | The configuration of the placeholder options in a text field control. | 
| title | IResolvable | Label | The options to configure the title visibility, name, and font size. | 
placeholderOptions?
Type:
IResolvable | Text
(optional)
The configuration of the placeholder options in a text field control.
titleOptions?
Type:
IResolvable | Label
(optional)
The options to configure the title visibility, name, and font size.

 .NET
 Java
 Python
 TypeScript