interface SheetTextBoxProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.SheetTextBoxProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_SheetTextBoxProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.SheetTextBoxProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.SheetTextBoxProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const sheetTextBoxProperty: quicksight_mixins.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