interface SheetTextBoxProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.SheetTextBoxProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_SheetTextBoxProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.SheetTextBoxProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.SheetTextBoxProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnAnalysisPropsMixin » SheetTextBoxProperty |
A text box.
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/cfn-property-mixins';
const sheetTextBoxProperty: quicksight.CfnAnalysisPropsMixin.SheetTextBoxProperty = {
content: 'content',
sheetTextBoxId: 'sheetTextBoxId',
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | string | The content that is displayed in the text box. |
| sheet | string | The unique identifier for a text box. |
content?
Type:
string
(optional)
The content that is displayed in the text box.
sheetTextBoxId?
Type:
string
(optional)
The unique identifier for a text box.
This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have text boxes that share identifiers.

.NET
Go
Java
Python
TypeScript