Interface CfnDatasetPropsMixin.IFilesLimitProperty
Represents a limit imposed on number of Amazon S3 files that should be selected for a dataset from a connected Amazon S3 path.
Namespace: Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDatasetPropsMixin.IFilesLimitProperty
Syntax (vb)
Public Interface CfnDatasetPropsMixin.IFilesLimitProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins;
var filesLimitProperty = new FilesLimitProperty {
MaxFiles = 123,
Order = "order",
OrderedBy = "orderedBy"
};
Synopsis
Properties
| MaxFiles | The number of Amazon S3 files to select. |
| Order | A criteria to use for Amazon S3 files sorting before their selection. |
| OrderedBy | A criteria to use for Amazon S3 files sorting before their selection. |
Properties
MaxFiles
The number of Amazon S3 files to select.
double? MaxFiles { get; }
Property Value
Remarks
Order
A criteria to use for Amazon S3 files sorting before their selection.
string? Order { get; }
Property Value
Remarks
By default uses DESCENDING order, i.e. most recent files are selected first. Anotherpossible value is ASCENDING.
OrderedBy
A criteria to use for Amazon S3 files sorting before their selection.
string? OrderedBy { get; }
Property Value
Remarks
By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.