Interface CfnDashboard.SetParameterValueConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.SetParameterValueConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.SetParameterValueConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
SetParameterValueConfigurationProperty setParameterValueConfigurationProperty = SetParameterValueConfigurationProperty.builder()
.destinationParameterName("destinationParameterName")
.value(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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.SetParameterValueConfigurationPropertystatic final classAn implementation forCfnDashboard.SetParameterValueConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The destination parameter name of theSetParameterValueConfiguration.getValue()Returns union: eitherIResolvableorCfnDashboard.DestinationParameterValueConfigurationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationParameterName
The destination parameter name of theSetParameterValueConfiguration.- See Also:
-
getValue
Returns union: eitherIResolvableorCfnDashboard.DestinationParameterValueConfigurationProperty- See Also:
-
builder
-