interface CustomValuesConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.CustomValuesConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_CustomValuesConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.CustomValuesConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.CustomValuesConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » 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/cfn-property-mixins';
const customValuesConfigurationProperty: quicksight.CfnTemplatePropsMixin.CustomValuesConfigurationProperty = {
customValues: {
dateTimeValues: ['dateTimeValues'],
decimalValues: [123],
integerValues: [123],
stringValues: ['stringValues'],
},
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
(optional)
includeNullValue?
Type:
boolean | IResolvable
(optional)
Includes the null value in custom action parameter values.

.NET
Go
Java
Python
TypeScript