public static interface CfnDataset.PathParameterProperty
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() |
java.lang.Object |
getDatasetParameter()
The path parameter definition.
|
java.lang.String |
getPathParameterName()
The name of the path parameter.
|
java.lang.Object getDatasetParameter()
java.lang.String getPathParameterName()
static CfnDataset.PathParameterProperty.Builder builder()