Class: Aws::Glue::Types::TransformFilterCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::TransformFilterCriteria
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
The criteria used to filter the machine learning transforms.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_after ⇒ Time
The time and date after which the transforms were created.
-
#created_before ⇒ Time
The time and date before which the transforms were created.
-
#glue_version ⇒ String
This value determines which version of Glue this machine learning transform is compatible with.
-
#last_modified_after ⇒ Time
Filter on transforms last modified after this date.
-
#last_modified_before ⇒ Time
Filter on transforms last modified before this date.
-
#name ⇒ String
A unique transform name that is used to filter the machine learning transforms.
-
#schema ⇒ Array<Types::SchemaColumn>
Filters on datasets with a specific schema.
-
#status ⇒ String
Filters the list of machine learning transforms by the last known status of the transforms (to indicate whether a transform can be used or not).
-
#transform_type ⇒ String
The type of machine learning transform that is used to filter the machine learning transforms.
Instance Attribute Details
#created_after ⇒ Time
The time and date after which the transforms were created.
26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 |
# File 'lib/aws-sdk-glue/types.rb', line 26029 class TransformFilterCriteria < Struct.new( :name, :transform_type, :status, :glue_version, :created_before, :created_after, :last_modified_before, :last_modified_after, :schema) SENSITIVE = [] include Aws::Structure end |
#created_before ⇒ Time
The time and date before which the transforms were created.
26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 |
# File 'lib/aws-sdk-glue/types.rb', line 26029 class TransformFilterCriteria < Struct.new( :name, :transform_type, :status, :glue_version, :created_before, :created_after, :last_modified_before, :last_modified_after, :schema) SENSITIVE = [] include Aws::Structure end |
#glue_version ⇒ String
This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see [Glue Versions] in the developer guide.
[1]: docs.aws.amazon.com/glue/latest/dg/release-notes.html#release-notes-versions
26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 |
# File 'lib/aws-sdk-glue/types.rb', line 26029 class TransformFilterCriteria < Struct.new( :name, :transform_type, :status, :glue_version, :created_before, :created_after, :last_modified_before, :last_modified_after, :schema) SENSITIVE = [] include Aws::Structure end |
#last_modified_after ⇒ Time
Filter on transforms last modified after this date.
26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 |
# File 'lib/aws-sdk-glue/types.rb', line 26029 class TransformFilterCriteria < Struct.new( :name, :transform_type, :status, :glue_version, :created_before, :created_after, :last_modified_before, :last_modified_after, :schema) SENSITIVE = [] include Aws::Structure end |
#last_modified_before ⇒ Time
Filter on transforms last modified before this date.
26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 |
# File 'lib/aws-sdk-glue/types.rb', line 26029 class TransformFilterCriteria < Struct.new( :name, :transform_type, :status, :glue_version, :created_before, :created_after, :last_modified_before, :last_modified_after, :schema) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A unique transform name that is used to filter the machine learning transforms.
26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 |
# File 'lib/aws-sdk-glue/types.rb', line 26029 class TransformFilterCriteria < Struct.new( :name, :transform_type, :status, :glue_version, :created_before, :created_after, :last_modified_before, :last_modified_after, :schema) SENSITIVE = [] include Aws::Structure end |
#schema ⇒ Array<Types::SchemaColumn>
Filters on datasets with a specific schema. The ‘Map<Column, Type>` object is an array of key-value pairs representing the schema this transform accepts, where `Column` is the name of a column, and `Type` is the type of the data such as an integer or string. Has an upper bound of 100 columns.
26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 |
# File 'lib/aws-sdk-glue/types.rb', line 26029 class TransformFilterCriteria < Struct.new( :name, :transform_type, :status, :glue_version, :created_before, :created_after, :last_modified_before, :last_modified_after, :schema) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Filters the list of machine learning transforms by the last known status of the transforms (to indicate whether a transform can be used or not). One of “NOT_READY”, “READY”, or “DELETING”.
26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 |
# File 'lib/aws-sdk-glue/types.rb', line 26029 class TransformFilterCriteria < Struct.new( :name, :transform_type, :status, :glue_version, :created_before, :created_after, :last_modified_before, :last_modified_after, :schema) SENSITIVE = [] include Aws::Structure end |
#transform_type ⇒ String
The type of machine learning transform that is used to filter the machine learning transforms.
26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 |
# File 'lib/aws-sdk-glue/types.rb', line 26029 class TransformFilterCriteria < Struct.new( :name, :transform_type, :status, :glue_version, :created_before, :created_after, :last_modified_before, :last_modified_after, :schema) SENSITIVE = [] include Aws::Structure end |