interface CustomParameterValuesProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.CustomParameterValuesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_CustomParameterValuesProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.CustomParameterValuesProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.CustomParameterValuesProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTemplate » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const customParameterValuesProperty: quicksight.CfnTemplate.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.