Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-fileslimit.html

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-fileslimit.html#cfn-databrew-dataset-fileslimit-maxfiles

Order

A criteria to use for Amazon S3 files sorting before their selection.

string? Order { get; }
Property Value

string

Remarks

By default uses DESCENDING order, i.e. most recent files are selected first. Anotherpossible value is ASCENDING.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-fileslimit.html#cfn-databrew-dataset-fileslimit-order

OrderedBy

A criteria to use for Amazon S3 files sorting before their selection.

string? OrderedBy { get; }
Property Value

string

Remarks

By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-fileslimit.html#cfn-databrew-dataset-fileslimit-orderedby

Back to top Generated by DocFX