@Stability(value=Stable)
public static interface CfnDataset.FilesLimitProperty
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.*;
FilesLimitProperty filesLimitProperty = FilesLimitProperty.builder()
.maxFiles(123)
// the properties below are optional
.order("order")
.orderedBy("orderedBy")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.FilesLimitProperty.Builder
A builder for
CfnDataset.FilesLimitProperty |
static class |
CfnDataset.FilesLimitProperty.Jsii$Proxy
An implementation for
CfnDataset.FilesLimitProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.FilesLimitProperty.Builder |
builder() |
Number |
getMaxFiles()
The number of Amazon S3 files to select.
|
default String |
getOrder()
A criteria to use for Amazon S3 files sorting before their selection.
|
default String |
getOrderedBy()
A criteria to use for Amazon S3 files sorting before their selection.
|
@Stability(value=Stable) @NotNull Number getMaxFiles()
@Stability(value=Stable) @Nullable default String getOrder()
By default uses DESCENDING order, i.e. most recent files are selected first. Anotherpossible value is ASCENDING.
@Stability(value=Stable) @Nullable default String getOrderedBy()
By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.
@Stability(value=Stable) static CfnDataset.FilesLimitProperty.Builder builder()
Copyright © 2022. All rights reserved.