interface TimeRangeFilterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.TimeRangeFilterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_TimeRangeFilterValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.TimeRangeFilterValueProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.TimeRangeFilterValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const timeRangeFilterValueProperty: quicksight_mixins.CfnDashboardPropsMixin.TimeRangeFilterValueProperty = {
parameter: 'parameter',
rollingDate: {
dataSetIdentifier: 'dataSetIdentifier',
expression: 'expression',
},
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