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: