You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::TransformFilterCriteria

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TransformFilterCriteria as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "NameString",
  transform_type: "FIND_MATCHES", # accepts FIND_MATCHES
  status: "NOT_READY", # accepts NOT_READY, READY, DELETING
  glue_version: "GlueVersionString",
  created_before: Time.now,
  created_after: Time.now,
  last_modified_before: Time.now,
  last_modified_after: Time.now,
  schema: [
    {
      name: "ColumnNameString",
      data_type: "ColumnTypeString",
    },
  ],
}

The criteria used to filter the machine learning transforms.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#created_afterTime

The time and date after which the transforms were created.

Returns:

  • (Time)

    The time and date after which the transforms were created.

#created_beforeTime

The time and date before which the transforms were created.

Returns:

  • (Time)

    The time and date before which the transforms were created.

#glue_versionString

This value determines which version of AWS 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 AWS Glue Versions in the developer guide.

Returns:

  • (String)

    This value determines which version of AWS Glue this machine learning transform is compatible with.

#last_modified_afterTime

Filter on transforms last modified after this date.

Returns:

  • (Time)

    Filter on transforms last modified after this date.

#last_modified_beforeTime

Filter on transforms last modified before this date.

Returns:

  • (Time)

    Filter on transforms last modified before this date.

#nameString

A unique transform name that is used to filter the machine learning transforms.

Returns:

  • (String)

    A unique transform name that is used to filter the machine learning transforms.

#schemaArray<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.

Returns:

#statusString

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\".

Possible values:

  • NOT_READY
  • READY
  • DELETING

Returns:

  • (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_typeString

The type of machine learning transform that is used to filter the machine learning transforms.

Possible values:

  • FIND_MATCHES

Returns:

  • (String)

    The type of machine learning transform that is used to filter the machine learning transforms.