aws-cdk-lib.aws_quicksight.CfnDashboard.AxisScaleProperty

interface AxisScaleProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.AxisScaleProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_AxisScaleProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.AxisScaleProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.AxisScaleProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » AxisScaleProperty

The scale setup options for a numeric axis display.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

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 axisScaleProperty: quicksight.CfnDashboard.AxisScaleProperty = {
  linear: {
    stepCount: 123,
    stepSize: 123,
  },
  logarithmic: {
    base: 123,
  },
};

Properties

NameTypeDescription
linear?IResolvable | AxisLinearScalePropertyThe linear axis scale setup.
logarithmic?IResolvable | AxisLogarithmicScalePropertyThe logarithmic axis scale setup.

linear?

Type: IResolvable | AxisLinearScaleProperty (optional)

The linear axis scale setup.


logarithmic?

Type: IResolvable | AxisLogarithmicScaleProperty (optional)

The logarithmic axis scale setup.