interface FilesLimitProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnDatasetPropsMixin.FilesLimitProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnDatasetPropsMixin_FilesLimitProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnDatasetPropsMixin.FilesLimitProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnDatasetPropsMixin.FilesLimitProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnDatasetPropsMixin » FilesLimitProperty |
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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const filesLimitProperty: databrew_mixins.CfnDatasetPropsMixin.FilesLimitProperty = {
maxFiles: 123,
order: 'order',
orderedBy: 'orderedBy',
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The number of Amazon S3 files to select. |
| order? | string | A criteria to use for Amazon S3 files sorting before their selection. |
| ordered | string | A criteria to use for Amazon S3 files sorting before their selection. |
maxFiles?
Type:
number
(optional)
The number of Amazon S3 files to select.
order?
Type:
string
(optional)
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.
orderedBy?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript