Interface CfnDataset.PathParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataset.PathParameterProperty.Jsii$Proxy
- Enclosing class:
CfnDataset
@Stability(Stable)
public static interface CfnDataset.PathParameterProperty
extends software.amazon.jsii.JsiiSerializable
Represents a single entry in the path parameters of a dataset.
Each PathParameter consists of a name and a parameter definition.
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.databrew.*;
PathParameterProperty pathParameterProperty = PathParameterProperty.builder()
.datasetParameter(DatasetParameterProperty.builder()
.name("name")
.type("type")
// the properties below are optional
.createColumn(false)
.datetimeOptions(DatetimeOptionsProperty.builder()
.format("format")
// the properties below are optional
.localeCode("localeCode")
.timezoneOffset("timezoneOffset")
.build())
.filter(FilterExpressionProperty.builder()
.expression("expression")
.valuesMap(List.of(FilterValueProperty.builder()
.value("value")
.valueReference("valueReference")
.build()))
.build())
.build())
.pathParameterName("pathParameterName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataset.PathParameterPropertystatic final classAn implementation forCfnDataset.PathParameterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The path parameter definition.The name of the path parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatasetParameter
The path parameter definition.Returns union: either
IResolvableorCfnDataset.DatasetParameterProperty- See Also:
-
getPathParameterName
The name of the path parameter.- See Also:
-
builder
-