Interface CfnDataSetPropsMixin.StringDatasetParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.StringDatasetParameterProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.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.cfnpropertymixins.services.quicksight.*;
StringDatasetParameterProperty stringDatasetParameterProperty = StringDatasetParameterProperty.builder()
.defaultValues(StringDatasetParameterDefaultValuesProperty.builder()
.staticValues(List.of("staticValues"))
.build())
.id("id")
.name("name")
.valueType("valueType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSetPropsMixin.StringDatasetParameterPropertystatic final classAn implementation forCfnDataSetPropsMixin.StringDatasetParameterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA list of default values for a given string dataset parameter type.default StringgetId()An identifier for the string parameter that is created in the dataset.default StringgetName()The name of the string parameter that is created in the dataset.default StringThe value type of the dataset parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultValues
A list of default values for a given string dataset parameter type.This structure only accepts static values.
Returns union: either
IResolvableorCfnDataSetPropsMixin.StringDatasetParameterDefaultValuesProperty- See Also:
-
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 valueormulti value.- See Also:
-
builder
-