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
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.StringDatasetParameterPropertystatic final classAn implementation forCfnDataSet.StringDatasetParameterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
CfnDataSet.StringDatasetParameterProperty.Id. -
getName
CfnDataSet.StringDatasetParameterProperty.Name. -
getValueType
CfnDataSet.StringDatasetParameterProperty.ValueType. -
getDefaultValues
CfnDataSet.StringDatasetParameterProperty.DefaultValues. -
builder
-