Struct aws_sdk_glue::model::TransformFilterCriteria
source · #[non_exhaustive]pub struct TransformFilterCriteria { /* private fields */ }Expand description
The criteria used to filter the machine learning transforms.
Implementations§
source§impl TransformFilterCriteria
impl TransformFilterCriteria
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
A unique transform name that is used to filter the machine learning transforms.
sourcepub fn transform_type(&self) -> Option<&TransformType>
pub fn transform_type(&self) -> Option<&TransformType>
The type of machine learning transform that is used to filter the machine learning transforms.
sourcepub fn status(&self) -> Option<&TransformStatusType>
pub fn status(&self) -> Option<&TransformStatusType>
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".
sourcepub fn glue_version(&self) -> Option<&str>
pub fn glue_version(&self) -> Option<&str>
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.
sourcepub fn created_before(&self) -> Option<&DateTime>
pub fn created_before(&self) -> Option<&DateTime>
The time and date before which the transforms were created.
sourcepub fn created_after(&self) -> Option<&DateTime>
pub fn created_after(&self) -> Option<&DateTime>
The time and date after which the transforms were created.
sourcepub fn last_modified_before(&self) -> Option<&DateTime>
pub fn last_modified_before(&self) -> Option<&DateTime>
Filter on transforms last modified before this date.
sourcepub fn last_modified_after(&self) -> Option<&DateTime>
pub fn last_modified_after(&self) -> Option<&DateTime>
Filter on transforms last modified after this date.
sourcepub fn schema(&self) -> Option<&[SchemaColumn]>
pub fn schema(&self) -> Option<&[SchemaColumn]>
Filters on datasets with a specific schema. The Map
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.
source§impl TransformFilterCriteria
impl TransformFilterCriteria
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TransformFilterCriteria.
Trait Implementations§
source§impl Clone for TransformFilterCriteria
impl Clone for TransformFilterCriteria
source§fn clone(&self) -> TransformFilterCriteria
fn clone(&self) -> TransformFilterCriteria
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TransformFilterCriteria
impl Debug for TransformFilterCriteria
source§impl PartialEq<TransformFilterCriteria> for TransformFilterCriteria
impl PartialEq<TransformFilterCriteria> for TransformFilterCriteria
source§fn eq(&self, other: &TransformFilterCriteria) -> bool
fn eq(&self, other: &TransformFilterCriteria) -> bool
self and other values to be equal, and is used
by ==.