Class: Aws::GlueDataBrew::Types::FilesLimit
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::FilesLimit
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
When making an API call, you may pass FilesLimit data as a hash:
{
max_files: 1, # required
ordered_by: "LAST_MODIFIED_DATE", # accepts LAST_MODIFIED_DATE
order: "DESCENDING", # accepts DESCENDING, ASCENDING
}
Represents a limit imposed on number of Amazon S3 files that should be selected for a dataset from a connected Amazon S3 path.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_files ⇒ Integer
The number of Amazon S3 files to select.
-
#order ⇒ String
A criteria to use for Amazon S3 files sorting before their selection.
-
#ordered_by ⇒ String
A criteria to use for Amazon S3 files sorting before their selection.
Instance Attribute Details
#max_files ⇒ Integer
The number of Amazon S3 files to select.
2615 2616 2617 2618 2619 2620 2621 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2615 class FilesLimit < Struct.new( :max_files, :ordered_by, :order) SENSITIVE = [] include Aws::Structure end |
#order ⇒ String
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. Another possible value is ASCENDING.
2615 2616 2617 2618 2619 2620 2621 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2615 class FilesLimit < Struct.new( :max_files, :ordered_by, :order) SENSITIVE = [] include Aws::Structure end |
#ordered_by ⇒ String
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.
2615 2616 2617 2618 2619 2620 2621 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2615 class FilesLimit < Struct.new( :max_files, :ordered_by, :order) SENSITIVE = [] include Aws::Structure end |