interface LabelOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.LabelOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_LabelOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.LabelOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.LabelOptionsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const labelOptionsProperty: quicksight.CfnAnalysis.LabelOptionsProperty = {
customLabel: 'customLabel',
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontFamily: 'fontFamily',
fontSize: {
absolute: 'absolute',
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.

.NET
Go
Java
Python
TypeScript