interface LabelOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.LabelOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.LabelOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.LabelOptionsProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnTemplate»LabelOptionsProperty | 
The share label options for the labels.
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 labelOptionsProperty: quicksight.CfnTemplate.LabelOptionsProperty = {
  customLabel: 'customLabel',
  fontConfiguration: {
    fontColor: 'fontColor',
    fontDecoration: 'fontDecoration',
    fontSize: {
      relative: 'relative',
    },
    fontStyle: 'fontStyle',
    fontWeight: {
      name: 'name',
    },
  },
  visibility: 'visibility',
};
Properties
| Name | Type | Description | 
|---|---|---|
| custom | string | The text for the label. | 
| font | IResolvable | Font | The font configuration of the label. | 
| visibility? | string | Determines whether or not the label is visible. | 
customLabel?
Type:
string
(optional)
The text for the label.
fontConfiguration?
Type:
IResolvable | Font
(optional)
The font configuration of the label.
visibility?
Type:
string
(optional)
Determines whether or not the label is visible.
