interface PercentVisibleRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.PercentVisibleRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_PercentVisibleRangeProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.PercentVisibleRangeProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.PercentVisibleRangeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const percentVisibleRangeProperty: quicksight_mixins.CfnAnalysisPropsMixin.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