interface DestinationParameterValueConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnTemplate.DestinationParameterValueConfigurationProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnTemplate.DestinationParameterValueConfigurationProperty |
![]() | aws_cdk.aws_quicksight.CfnTemplate.DestinationParameterValueConfigurationProperty |
![]() | @aws-cdk/aws-quicksight » CfnTemplate » 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.CfnTemplate.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.