interface FontConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.FontConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_FontConfigurationProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.FontConfigurationProperty | 
  Python | aws_cdk.aws_quicksight.CfnAnalysis.FontConfigurationProperty | 
  TypeScript  | aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const fontConfigurationProperty: quicksight.CfnAnalysis.FontConfigurationProperty = {
  fontColor: 'fontColor',
  fontDecoration: 'fontDecoration',
  fontFamily: 'fontFamily',
  fontSize: {
    absolute: 'absolute',
    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 | string | The font family that you want to use. | 
| 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.
fontFamily?
Type:
string
(optional)
The font family that you want to use.
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.

 .NET
 Go
 Java
 Python
 TypeScript