public static interface TransformFilterCriteria.Builder extends SdkPojo, CopyableBuilder<TransformFilterCriteria.Builder,TransformFilterCriteria>
| Modifier and Type | Method and Description |
|---|---|
TransformFilterCriteria.Builder |
createdAfter(Instant createdAfter)
The time and date after which the transforms were created.
|
TransformFilterCriteria.Builder |
createdBefore(Instant createdBefore)
The time and date before which the transforms were created.
|
TransformFilterCriteria.Builder |
glueVersion(String glueVersion)
This value determines which version of Glue this machine learning transform is compatible with.
|
TransformFilterCriteria.Builder |
lastModifiedAfter(Instant lastModifiedAfter)
Filter on transforms last modified after this date.
|
TransformFilterCriteria.Builder |
lastModifiedBefore(Instant lastModifiedBefore)
Filter on transforms last modified before this date.
|
TransformFilterCriteria.Builder |
name(String name)
A unique transform name that is used to filter the machine learning transforms.
|
TransformFilterCriteria.Builder |
schema(Collection<SchemaColumn> schema)
Filters on datasets with a specific schema.
|
TransformFilterCriteria.Builder |
schema(Consumer<SchemaColumn.Builder>... schema)
Filters on datasets with a specific schema.
|
TransformFilterCriteria.Builder |
schema(SchemaColumn... schema)
Filters on datasets with a specific schema.
|
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).
|
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).
|
TransformFilterCriteria.Builder |
transformType(String transformType)
The type of machine learning transform that is used to filter the machine learning transforms.
|
TransformFilterCriteria.Builder |
transformType(TransformType transformType)
The type of machine learning transform that is used to filter the machine learning transforms.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildTransformFilterCriteria.Builder name(String name)
A unique transform name that is used to filter the machine learning transforms.
name - A unique transform name that is used to filter the machine learning transforms.TransformFilterCriteria.Builder transformType(String transformType)
The type of machine learning transform that is used to filter the machine learning transforms.
transformType - The type of machine learning transform that is used to filter the machine learning transforms.TransformType,
TransformTypeTransformFilterCriteria.Builder transformType(TransformType transformType)
The type of machine learning transform that is used to filter the machine learning transforms.
transformType - The type of machine learning transform that is used to filter the machine learning transforms.TransformType,
TransformTypeTransformFilterCriteria.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".
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".TransformStatusType,
TransformStatusTypeTransformFilterCriteria.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".
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".TransformStatusType,
TransformStatusTypeTransformFilterCriteria.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.
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.TransformFilterCriteria.Builder createdBefore(Instant createdBefore)
The time and date before which the transforms were created.
createdBefore - The time and date before which the transforms were created.TransformFilterCriteria.Builder createdAfter(Instant createdAfter)
The time and date after which the transforms were created.
createdAfter - The time and date after which the transforms were created.TransformFilterCriteria.Builder lastModifiedBefore(Instant lastModifiedBefore)
Filter on transforms last modified before this date.
lastModifiedBefore - Filter on transforms last modified before this date.TransformFilterCriteria.Builder lastModifiedAfter(Instant lastModifiedAfter)
Filter on transforms last modified after this date.
lastModifiedAfter - Filter on transforms last modified after this date.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.
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.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.
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.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.
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.
schema - a consumer that will call methods on
SchemaColumn.Builder#schema(java.util.Collection) Copyright © 2023. All rights reserved.