interface CustomActionSetParametersOperationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.CustomActionSetParametersOperationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.CustomActionSetParametersOperationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.CustomActionSetParametersOperationProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»CustomActionSetParametersOperationProperty | 
The set parameter operation that sets parameters in custom 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 customActionSetParametersOperationProperty: quicksight.CfnDashboard.CustomActionSetParametersOperationProperty = {
  parameterValueConfigurations: [{
    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 | 
|---|---|---|
| parameter | IResolvable | IResolvable | Set[] | The parameter that determines the value configuration. | 
parameterValueConfigurations
Type:
IResolvable | IResolvable | Set[]
The parameter that determines the value configuration.
