interface DestinationParameterValueConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.DestinationParameterValueConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_DestinationParameterValueConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.DestinationParameterValueConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.DestinationParameterValueConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnDashboard»DestinationParameterValueConfigurationProperty | 
The configuration of destination 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 destinationParameterValueConfigurationProperty: quicksight.CfnDashboard.DestinationParameterValueConfigurationProperty = {
  customValuesConfiguration: {
    customValues: {
      dateTimeValues: ['dateTimeValues'],
      decimalValues: [123],
      integerValues: [123],
      stringValues: ['stringValues'],
    },
    // the properties below are optional
    includeNullValue: false,
  },
  selectAllValueOptions: 'selectAllValueOptions',
  sourceColumn: {
    columnName: 'columnName',
    dataSetIdentifier: 'dataSetIdentifier',
  },
  sourceField: 'sourceField',
  sourceParameterName: 'sourceParameterName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| custom | IResolvable | Custom | The configuration of custom values for destination parameter in DestinationParameterValueConfiguration. | 
| select | string | The configuration that selects all options. | 
| source | IResolvable | Column | A column of a data set. | 
| source | string | The source field ID of the destination parameter. | 
| source | string | The source parameter name of the destination parameter. | 
customValuesConfiguration?
Type:
IResolvable | Custom
(optional)
The configuration of custom values for destination parameter in DestinationParameterValueConfiguration .
selectAllValueOptions?
Type:
string
(optional)
The configuration that selects all options.
sourceColumn?
Type:
IResolvable | Column
(optional)
A column of a data set.
sourceField?
Type:
string
(optional)
The source field ID of the destination parameter.
sourceParameterName?
Type:
string
(optional)
The source parameter name of the destination parameter.
