aws-cdk-lib.aws_quicksight.CfnTemplate.TextAreaControlDisplayOptionsProperty

interface TextAreaControlDisplayOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.TextAreaControlDisplayOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_TextAreaControlDisplayOptionsProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.TextAreaControlDisplayOptionsProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.TextAreaControlDisplayOptionsProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » TextAreaControlDisplayOptionsProperty

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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const textAreaControlDisplayOptionsProperty: quicksight.CfnTemplate.TextAreaControlDisplayOptionsProperty = {
  placeholderOptions: {
    visibility: 'visibility',
  },
  titleOptions: {
    customLabel: 'customLabel',
    fontConfiguration: {
      fontColor: 'fontColor',
      fontDecoration: 'fontDecoration',
      fontSize: {
        relative: 'relative',
      },
      fontStyle: 'fontStyle',
      fontWeight: {
        name: 'name',
      },
    },
    visibility: 'visibility',
  },
};

Properties

NameTypeDescription
placeholderOptions?IResolvable | TextControlPlaceholderOptionsPropertyThe configuration of the placeholder options in a text area control.
titleOptions?IResolvable | LabelOptionsPropertyThe options to configure the title visibility, name, and font size.

placeholderOptions?

Type: IResolvable | TextControlPlaceholderOptionsProperty (optional)

The configuration of the placeholder options in a text area control.


titleOptions?

Type: IResolvable | LabelOptionsProperty (optional)

The options to configure the title visibility, name, and font size.