Interface TransformFilterCriteria.Builder

    • Method Detail

      • name

        TransformFilterCriteria.Builder name​(String name)

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

        Parameters:
        name - A unique transform name that is used to filter the machine learning transforms.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • transformType

        TransformFilterCriteria.Builder transformType​(String transformType)

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

        Parameters:
        transformType - The type of machine learning transform that is used to filter the machine learning transforms.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        TransformType, TransformType
      • transformType

        TransformFilterCriteria.Builder transformType​(TransformType transformType)

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

        Parameters:
        transformType - The type of machine learning transform that is used to filter the machine learning transforms.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        TransformType, TransformType
      • status

        TransformFilterCriteria.Builder status​(String status)

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

        Parameters:
        status - 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".
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        TransformStatusType, TransformStatusType
      • status

        TransformFilterCriteria.Builder status​(TransformStatusType status)

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

        Parameters:
        status - 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".
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        TransformStatusType, TransformStatusType
      • glueVersion

        TransformFilterCriteria.Builder glueVersion​(String glueVersion)

        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.

        Parameters:
        glueVersion - 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • createdBefore

        TransformFilterCriteria.Builder createdBefore​(Instant createdBefore)

        The time and date before which the transforms were created.

        Parameters:
        createdBefore - The time and date before which the transforms were created.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • createdAfter

        TransformFilterCriteria.Builder createdAfter​(Instant createdAfter)

        The time and date after which the transforms were created.

        Parameters:
        createdAfter - The time and date after which the transforms were created.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • lastModifiedBefore

        TransformFilterCriteria.Builder lastModifiedBefore​(Instant lastModifiedBefore)

        Filter on transforms last modified before this date.

        Parameters:
        lastModifiedBefore - Filter on transforms last modified before this date.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • lastModifiedAfter

        TransformFilterCriteria.Builder lastModifiedAfter​(Instant lastModifiedAfter)

        Filter on transforms last modified after this date.

        Parameters:
        lastModifiedAfter - Filter on transforms last modified after this date.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • schema

        TransformFilterCriteria.Builder schema​(Collection<SchemaColumn> schema)

        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.

        Parameters:
        schema - 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:
        Returns a reference to this object so that method calls can be chained together.
      • schema

        TransformFilterCriteria.Builder schema​(SchemaColumn... schema)

        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.

        Parameters:
        schema - 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:
        Returns a reference to this object so that method calls can be chained together.
      • schema

        TransformFilterCriteria.Builder schema​(Consumer<SchemaColumn.Builder>... schema)

        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.

        This is a convenience method that creates an instance of the SchemaColumn.Builder avoiding the need to create one manually via SchemaColumn.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #schema(List).

        Parameters:
        schema - a consumer that will call methods on SchemaColumn.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #schema(java.util.Collection)