interface NumericRangeFilterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.NumericRangeFilterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_NumericRangeFilterValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.NumericRangeFilterValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.NumericRangeFilterValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » NumericRangeFilterValueProperty |
The value input pf the numeric range filter.
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 numericRangeFilterValueProperty: quicksight.CfnTemplatePropsMixin.NumericRangeFilterValueProperty = {
parameter: 'parameter',
staticValue: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter? | string | The parameter that is used in the numeric range. |
| static | number | The static value of the numeric range filter. |
parameter?
Type:
string
(optional)
The parameter that is used in the numeric range.
staticValue?
Type:
number
(optional)
The static value of the numeric range filter.

.NET
Go
Java
Python
TypeScript