ListModelsInput
public struct ListModelsInput : AWSShape
extension SageMaker.ListModelsInput: AWSPaginateStringToken
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
A filter that returns only models with a creation time greater than or equal to the specified time (timestamp).
Declaration
Swift
public let creationTimeAfter: TimeStamp?
-
A filter that returns only models created before the specified time (timestamp).
Declaration
Swift
public let creationTimeBefore: TimeStamp?
-
The maximum number of models to return in the response.
Declaration
Swift
public let maxResults: Int?
-
A string in the training job name. This filter returns only models in the training job whose name contains the specified string.
Declaration
Swift
public let nameContains: String?
-
If the response to a previous ListModels request was truncated, the response includes a NextToken. To retrieve the next set of models, use the token in the next request.
Declaration
Swift
public let nextToken: String?
-
Sorts the list of results. The default is CreationTime.
Declaration
Swift
public let sortBy: ModelSortKey?
-
The sort order for results. The default is Descending.
Declaration
Swift
public let sortOrder: OrderKey?
-
Undocumented
Declaration
Swift
public init(creationTimeAfter: TimeStamp? = nil, creationTimeBefore: TimeStamp? = nil, maxResults: Int? = nil, nameContains: String? = nil, nextToken: String? = nil, sortBy: ModelSortKey? = nil, sortOrder: OrderKey? = nil)
-
Declaration
Swift
public func validate(name: String) throws
-
Undocumented
Declaration
Swift
public func usingPaginationToken(_ token: String) -> SageMaker.ListModelsInput