TransformFilterCriteria

public struct TransformFilterCriteria : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The time and date after which the transforms were created.

    Declaration

    Swift

    public let createdAfter: TimeStamp?
  • The time and date before which the transforms were created.

    Declaration

    Swift

    public let createdBefore: TimeStamp?
  • 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.

    Declaration

    Swift

    public let glueVersion: String?
  • Filter on transforms last modified after this date.

    Declaration

    Swift

    public let lastModifiedAfter: TimeStamp?
  • Filter on transforms last modified before this date.

    Declaration

    Swift

    public let lastModifiedBefore: TimeStamp?
  • A unique transform name that is used to filter the machine learning transforms.

    Declaration

    Swift

    public let name: String?
  • 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.

    Declaration

    Swift

    public let schema: [SchemaColumn]?
  • 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”.

    Declaration

    Swift

    public let status: TransformStatusType?
  • The type of machine learning transform that is used to filter the machine learning transforms.

    Declaration

    Swift

    public let transformType: TransformType?
  • Undocumented

    Declaration

    Swift

    public init(createdAfter: TimeStamp? = nil, createdBefore: TimeStamp? = nil, glueVersion: String? = nil, lastModifiedAfter: TimeStamp? = nil, lastModifiedBefore: TimeStamp? = nil, name: String? = nil, schema: [SchemaColumn]? = nil, status: TransformStatusType? = nil, transformType: TransformType? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws