interface DestinationParameterValueConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.DestinationParameterValueConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.DestinationParameterValueConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.DestinationParameterValueConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnAnalysis » DestinationParameterValueConfigurationProperty |
The configuration of destination parameter values.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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 destinationParameterValueConfigurationProperty: quicksight.CfnAnalysis.DestinationParameterValueConfigurationProperty = {
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 |
|---|---|---|
| custom | IResolvable | Custom | The configuration of custom values for destination parameter in DestinationParameterValueConfiguration . |
| select | string | The configuration that selects all options. |
| source | string | The source field ID of the destination parameter. |
| source | string | The source parameter name of the destination parameter. |
customValuesConfiguration?
Type:
IResolvable | Custom
(optional)
The configuration of custom values for destination parameter in DestinationParameterValueConfiguration .
selectAllValueOptions?
Type:
string
(optional)
The configuration that selects all options.
sourceField?
Type:
string
(optional)
The source field ID of the destination parameter.
sourceParameterName?
Type:
string
(optional)
The source parameter name of the destination parameter.

.NET
Java
Python
TypeScript