interface SetParameterValueConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.SetParameterValueConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_SetParameterValueConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.SetParameterValueConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.SetParameterValueConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const setParameterValueConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.SetParameterValueConfigurationProperty = {
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 |
|---|---|---|
| destination | string | The destination parameter name of the SetParameterValueConfiguration . |
| value? | IResolvable | Destination |
destinationParameterName?
Type:
string
(optional)
The destination parameter name of the SetParameterValueConfiguration .
value?
Type:
IResolvable | Destination
(optional)

.NET
Go
Java
Python
TypeScript