Interface CfnDataSet.StringDatasetParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.StringDatasetParameterProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.StringDatasetParameterProperty
extends software.amazon.jsii.JsiiSerializable
A string 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.*; StringDatasetParameterProperty stringDatasetParameterProperty = StringDatasetParameterProperty.builder() .id("id") .name("name") .valueType("valueType") // the properties below are optional .defaultValues(StringDatasetParameterDefaultValuesProperty.builder() .staticValues(List.of("staticValues")) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSet.StringDatasetParameterProperty
static final class
An implementation forCfnDataSet.StringDatasetParameterProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
A list of default values for a given string dataset parameter type.getId()
An identifier for the string parameter that is created in the dataset.getName()
The name of the string 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 string parameter that is created in the dataset.- See Also:
-
getName
The name of the string parameter that is created in the dataset.- See Also:
-
getValueType
The value type of the dataset parameter.Valid values are
single value
ormulti value
.- See Also:
-
getDefaultValues
A list of default values for a given string dataset parameter type.This structure only accepts static values.
- See Also:
-
builder
-