Class: Aws::GlueDataBrew::Types::FilesLimit

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#max_filesInteger

The number of Amazon S3 files to select.

Returns:

  • (Integer)


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

#orderString

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.

Returns:

  • (String)


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_byString

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.

Returns:

  • (String)


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