@Stability(value=Stable)
public static interface CfnDataset.PathOptionsProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getFilesLimit()
If provided, this structure imposes a limit on a number of files that should be selected.
|
default Object |
getLastModifiedDateCondition()
If provided, this structure defines a date range for matching Amazon S3 objects based on their LastModifiedDate attribute in Amazon S3 .
|
default Object |
getParameters()
A structure that maps names of parameters used in the Amazon S3 path of a dataset to their definitions.
|
@Stability(value=Stable) @Nullable default Object getFilesLimit()
@Stability(value=Stable) @Nullable default Object getLastModifiedDateCondition()
@Stability(value=Stable) @Nullable default Object getParameters()
@Stability(value=Stable) static CfnDataset.PathOptionsProperty.Builder builder()
Copyright © 2022. All rights reserved.