interface CustomParameterValuesProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnAnalysis.CustomParameterValuesProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnAnalysis.CustomParameterValuesProperty |
![]() | aws_cdk.aws_quicksight.CfnAnalysis.CustomParameterValuesProperty |
![]() | @aws-cdk/aws-quicksight » CfnAnalysis » CustomParameterValuesProperty |
The customized parameter values.
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 * as quicksight from '@aws-cdk/aws-quicksight';
const customParameterValuesProperty: quicksight.CfnAnalysis.CustomParameterValuesProperty = {
dateTimeValues: ['dateTimeValues'],
decimalValues: [123],
integerValues: [123],
stringValues: ['stringValues'],
};
Properties
Name | Type | Description |
---|---|---|
date | string[] | A list of datetime-type parameter values. |
decimal | IResolvable | number[] | A list of decimal-type parameter values. |
integer | IResolvable | number[] | A list of integer-type parameter values. |
string | string[] | A list of string-type parameter values. |
dateTimeValues?
Type:
string[]
(optional)
A list of datetime-type parameter values.
decimalValues?
Type:
IResolvable
| number[]
(optional)
A list of decimal-type parameter values.
integerValues?
Type:
IResolvable
| number[]
(optional)
A list of integer-type parameter values.
stringValues?
Type:
string[]
(optional)
A list of string-type parameter values.