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();