Interface CfnDataset.FilesLimitProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataset.FilesLimitProperty.Jsii$Proxy
- Enclosing class:
CfnDataset
@Stability(Stable)
public static interface CfnDataset.FilesLimitProperty
extends software.amazon.jsii.JsiiSerializable
Represents a limit imposed on number of Amazon S3 files that should be selected for a dataset from a connected Amazon S3 path.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataset.FilesLimitPropertystatic final classAn implementation forCfnDataset.FilesLimitProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxFiles
The number of Amazon S3 files to select.- See Also:
-
getOrder
A criteria to use for Amazon S3 files sorting before their selection.By default uses DESCENDING order, i.e. most recent files are selected first. Anotherpossible value is ASCENDING.
- See Also:
-
getOrderedBy
A criteria to use for Amazon S3 files sorting before their selection.By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.
- See Also:
-
builder
-