interface SetParameterValueConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.SetParameterValueConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.SetParameterValueConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.SetParameterValueConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnTemplate»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 * as quicksight from '@aws-cdk/aws-quicksight';
const setParameterValueConfigurationProperty: quicksight.CfnTemplate.SetParameterValueConfigurationProperty = {
  destinationParameterName: 'destinationParameterName',
  value: {
    customValuesConfiguration: {
      customValues: {
        dateTimeValues: ['dateTimeValues'],
        decimalValues: [123],
        integerValues: [123],
        stringValues: ['stringValues'],
      },
      // the properties below are optional
      includeNullValue: false,
    },
    selectAllValueOptions: 'selectAllValueOptions',
    sourceField: 'sourceField',
    sourceParameterName: 'sourceParameterName',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| destination | string | The destination parameter name of the SetParameterValueConfiguration. | 
| value | IResolvable | Destination | CfnTemplate.SetParameterValueConfigurationProperty.Value. | 
destinationParameterName
Type:
string
The destination parameter name of the SetParameterValueConfiguration .
value
Type:
IResolvable | Destination
CfnTemplate.SetParameterValueConfigurationProperty.Value.
