interface CustomParameterValuesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.CustomParameterValuesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_CustomParameterValuesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.CustomParameterValuesProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.CustomParameterValuesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » 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/cfn-property-mixins';
const customParameterValuesProperty: quicksight.CfnDashboardPropsMixin.CustomParameterValuesProperty = {
dateTimeValues: ['dateTimeValues'],
decimalValues: [123],
integerValues: [123],
stringValues: ['stringValues'],
};
Properties
| Name | Type | Description |
|---|---|---|
| date | string[] | A list of datetime-type parameter values. |
| decimal | number[] | IResolvable | A list of decimal-type parameter values. |
| integer | number[] | IResolvable | 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:
number[] | IResolvable
(optional)
A list of decimal-type parameter values.
integerValues?
Type:
number[] | IResolvable
(optional)
A list of integer-type parameter values.
stringValues?
Type:
string[]
(optional)
A list of string-type parameter values.

.NET
Go
Java
Python
TypeScript