@Stability(value=Stable)
public static interface CfnDataset.PathParameterProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.PathParameterProperty.Builder
A builder for
CfnDataset.PathParameterProperty |
static class |
CfnDataset.PathParameterProperty.Jsii$Proxy
An implementation for
CfnDataset.PathParameterProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.PathParameterProperty.Builder |
builder() |
Object |
getDatasetParameter()
The path parameter definition.
|
String |
getPathParameterName()
The name of the path parameter.
|
@Stability(value=Stable) @NotNull Object getDatasetParameter()
@Stability(value=Stable) @NotNull String getPathParameterName()
@Stability(value=Stable) static CfnDataset.PathParameterProperty.Builder builder()
Copyright © 2022. All rights reserved.