aws-cdk-lib.aws_quicksight.CfnDashboard.FontConfigurationProperty

interface FontConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.FontConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_FontConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.FontConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.FontConfigurationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » 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.CfnDashboard.FontConfigurationProperty = {
  fontColor: 'fontColor',
  fontDecoration: 'fontDecoration',
  fontSize: {
    relative: 'relative',
  },
  fontStyle: 'fontStyle',
  fontWeight: {
    name: 'name',
  },
};

Properties

NameTypeDescription
fontColor?stringDetermines the color of the text.
fontDecoration?stringDetermines the appearance of decorative lines on the text.
fontSize?IResolvable | FontSizePropertyThe option that determines the text display size.
fontStyle?stringDetermines the text display face that is inherited by the given font family.
fontWeight?IResolvable | FontWeightPropertyThe 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 | FontSizeProperty (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 | FontWeightProperty (optional)

The option that determines the text display weight, or boldness.