Interface CfnDataSet.DecimalDatasetParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.DecimalDatasetParameterProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.DecimalDatasetParameterProperty
extends software.amazon.jsii.JsiiSerializable
A decimal parameter that is created in the dataset.
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.*;
DecimalDatasetParameterProperty decimalDatasetParameterProperty = DecimalDatasetParameterProperty.builder()
.id("id")
.name("name")
.valueType("valueType")
// the properties below are optional
.defaultValues(DecimalDatasetParameterDefaultValuesProperty.builder()
.staticValues(List.of(123))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.DecimalDatasetParameterPropertystatic final classAn implementation forCfnDataSet.DecimalDatasetParameterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA list of default values for a given decimal parameter.getId()An identifier for the decimal parameter created in the dataset.getName()The name of the decimal parameter that is created in the dataset.The value type of the dataset parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
An identifier for the decimal parameter created in the dataset.- See Also:
-
getName
The name of the decimal parameter that is created in the dataset.- See Also:
-
getValueType
The value type of the dataset parameter.Valid values are
single valueormulti value.- See Also:
-
getDefaultValues
A list of default values for a given decimal parameter.This structure only accepts static values.
Returns union: either
IResolvableorCfnDataSet.DecimalDatasetParameterDefaultValuesProperty- See Also:
-
builder
-