Interface CfnDashboard.DestinationParameterValueConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.DestinationParameterValueConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.DestinationParameterValueConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
DestinationParameterValueConfigurationProperty destinationParameterValueConfigurationProperty = DestinationParameterValueConfigurationProperty.builder()
.customValuesConfiguration(CustomValuesConfigurationProperty.builder()
.customValues(CustomParameterValuesProperty.builder()
.dateTimeValues(List.of("dateTimeValues"))
.decimalValues(List.of(123))
.integerValues(List.of(123))
.stringValues(List.of("stringValues"))
.build())
// the properties below are optional
.includeNullValue(false)
.build())
.selectAllValueOptions("selectAllValueOptions")
.sourceColumn(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.sourceField("sourceField")
.sourceParameterName("sourceParameterName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDashboard.DestinationParameterValueConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe configuration of custom values for destination parameter inDestinationParameterValueConfiguration.default StringThe configuration that selects all options.default ObjectA column of a data set.default StringThe source field ID of the destination parameter.default StringThe source parameter name of the destination parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomValuesConfiguration
The configuration of custom values for destination parameter inDestinationParameterValueConfiguration.Returns union: either
IResolvableorCfnDashboard.CustomValuesConfigurationProperty- See Also:
-
getSelectAllValueOptions
The configuration that selects all options.- See Also:
-
getSourceColumn
A column of a data set.Returns union: either
IResolvableorCfnDashboard.ColumnIdentifierProperty- See Also:
-
getSourceField
The source field ID of the destination parameter.- See Also:
-
getSourceParameterName
The source parameter name of the destination parameter.- See Also:
-
builder
@Stability(Stable) static CfnDashboard.DestinationParameterValueConfigurationProperty.Builder builder()
-