interface CustomActionSetParametersOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.CustomActionSetParametersOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_CustomActionSetParametersOperationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.CustomActionSetParametersOperationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.CustomActionSetParametersOperationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const customActionSetParametersOperationProperty: quicksight.CfnTemplatePropsMixin.CustomActionSetParametersOperationProperty = {
parameterValueConfigurations: [{
destinationParameterName: 'destinationParameterName',
value: {
customValuesConfiguration: {
customValues: {
dateTimeValues: ['dateTimeValues'],
decimalValues: [123],
integerValues: [123],
stringValues: ['stringValues'],
},
includeNullValue: false,
},
selectAllValueOptions: 'selectAllValueOptions',
sourceColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
sourceField: 'sourceField',
sourceParameterName: 'sourceParameterName',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | IResolvable | (IResolvable | Set)[] | The parameter that determines the value configuration. |
parameterValueConfigurations?
Type:
IResolvable | (IResolvable | Set)[]
(optional)
The parameter that determines the value configuration.

.NET
Go
Java
Python
TypeScript