interface FontConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.FontConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.FontConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.FontConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnAnalysis » FontConfigurationProperty |
Configures the display properties of the given text.
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 fontConfigurationProperty: quicksight.CfnAnalysis.FontConfigurationProperty = {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontSize: {
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
};
Properties
Name | Type | Description |
---|---|---|
font | string | Determines the color of the text. |
font | string | Determines the appearance of decorative lines on the text. |
font | IResolvable | Font | The option that determines the text display size. |
font | string | Determines the text display face that is inherited by the given font family. |
font | IResolvable | Font | The option that determines the text display weight, or boldness. |
fontColor?
Type:
string
(optional)
Determines the color of the text.
fontDecoration?
Type:
string
(optional)
Determines the appearance of decorative lines on the text.
fontSize?
Type:
IResolvable
|
Font
(optional)
The option that determines the text display size.
fontStyle?
Type:
string
(optional)
Determines the text display face that is inherited by the given font family.
fontWeight?
Type:
IResolvable
|
Font
(optional)
The option that determines the text display weight, or boldness.