interface PercentVisibleRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.PercentVisibleRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_PercentVisibleRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.PercentVisibleRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.PercentVisibleRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » PercentVisibleRangeProperty |
The percent range in the visible range.
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/cfn-property-mixins';
const percentVisibleRangeProperty: quicksight.CfnDashboardPropsMixin.PercentVisibleRangeProperty = {
from: 123,
to: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| from? | number | The lower bound of the range. |
| to? | number | The top bound of the range. |
from?
Type:
number
(optional)
The lower bound of the range.
to?
Type:
number
(optional)
The top bound of the range.

.NET
Go
Java
Python
TypeScript