interface CustomValuesConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.CustomValuesConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_CustomValuesConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.CustomValuesConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.CustomValuesConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnAnalysis»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.CfnAnalysis.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.
