public static interface CfnDataset.PathOptionsProperty
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.*; PathOptionsProperty pathOptionsProperty = PathOptionsProperty.builder() .filesLimit(FilesLimitProperty.builder() .maxFiles(123) // the properties below are optional .order("order") .orderedBy("orderedBy") .build()) .lastModifiedDateCondition(FilterExpressionProperty.builder() .expression("expression") .valuesMap(List.of(FilterValueProperty.builder() .value("value") .valueReference("valueReference") .build())) .build()) .parameters(List.of(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())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataset.PathOptionsProperty.Builder
A builder for
CfnDataset.PathOptionsProperty |
static class |
CfnDataset.PathOptionsProperty.Jsii$Proxy
An implementation for
CfnDataset.PathOptionsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataset.PathOptionsProperty.Builder |
builder() |
default java.lang.Object |
getFilesLimit()
If provided, this structure imposes a limit on a number of files that should be selected.
|
default java.lang.Object |
getLastModifiedDateCondition()
If provided, this structure defines a date range for matching Amazon S3 objects based on their LastModifiedDate attribute in Amazon S3 .
|
default java.lang.Object |
getParameters()
A structure that maps names of parameters used in the Amazon S3 path of a dataset to their definitions.
|
default java.lang.Object getFilesLimit()
default java.lang.Object getLastModifiedDateCondition()
default java.lang.Object getParameters()
static CfnDataset.PathOptionsProperty.Builder builder()