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
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.
1975 1976 1977 1978 1979 1980 1981 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1975 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.
1975 1976 1977 1978 1979 1980 1981 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1975 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.
1975 1976 1977 1978 1979 1980 1981 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1975 class FilesLimit < Struct.new( :max_files, :ordered_by, :order) SENSITIVE = [] include Aws::Structure end |