interface TimeRangeFilterValueProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.TimeRangeFilterValueProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_TimeRangeFilterValueProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.TimeRangeFilterValueProperty | 
  Python | aws_cdk.aws_quicksight.CfnTemplate.TimeRangeFilterValueProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnTemplate » TimeRangeFilterValueProperty | 
The value of a time range filter.
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 timeRangeFilterValueProperty: quicksight.CfnTemplate.TimeRangeFilterValueProperty = {
  parameter: 'parameter',
  rollingDate: {
    expression: 'expression',
    // the properties below are optional
    dataSetIdentifier: 'dataSetIdentifier',
  },
  staticValue: 'staticValue',
};
Properties
| Name | Type | Description | 
|---|---|---|
| parameter? | string | The parameter type input value. | 
| rolling | IResolvable | Rolling | The rolling date input value. | 
| static | string | The static input value. | 
parameter?
Type:
string
(optional)
The parameter type input value.
rollingDate?
Type:
IResolvable | Rolling
(optional)
The rolling date input value.
staticValue?
Type:
string
(optional)
The static input value.

 .NET
 Go
 Java
 Python
 TypeScript