interface CustomValuesConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.CustomValuesConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_CustomValuesConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.CustomValuesConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.CustomValuesConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDashboard » CustomValuesConfigurationProperty |
The configuration of custom values for the destination parameter in DestinationParameterValueConfiguration .
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 customValuesConfigurationProperty: quicksight.CfnDashboard.CustomValuesConfigurationProperty = {
customValues: {
dateTimeValues: ['dateTimeValues'],
decimalValues: [123],
integerValues: [123],
stringValues: ['stringValues'],
},
// the properties below are optional
includeNullValue: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | IResolvable | Custom | |
| include | boolean | IResolvable | Includes the null value in custom action parameter values. |
customValues
Type:
IResolvable | Custom
includeNullValue?
Type:
boolean | IResolvable
(optional)
Includes the null value in custom action parameter values.

.NET
Go
Java
Python
TypeScript