interface SetParameterValueConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.SetParameterValueConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_SetParameterValueConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.SetParameterValueConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.SetParameterValueConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnDashboard»SetParameterValueConfigurationProperty | 
The configuration of adding parameters in action.
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 setParameterValueConfigurationProperty: quicksight.CfnDashboard.SetParameterValueConfigurationProperty = {
  destinationParameterName: 'destinationParameterName',
  value: {
    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 | 
|---|---|---|
| destination | string | The destination parameter name of the SetParameterValueConfiguration. | 
| value | IResolvable | Destination | 
destinationParameterName
Type:
string
The destination parameter name of the SetParameterValueConfiguration .
value
Type:
IResolvable | Destination
