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