ListModelPackagesInput

public struct ListModelPackagesInput : AWSShape
extension SageMaker.ListModelPackagesInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A filter that returns only model packages created after the specified time (timestamp).

    Declaration

    Swift

    public let creationTimeAfter: TimeStamp?
  • A filter that returns only model packages created before the specified time (timestamp).

    Declaration

    Swift

    public let creationTimeBefore: TimeStamp?
  • The maximum number of model packages to return in the response.

    Declaration

    Swift

    public let maxResults: Int?
  • A string in the model package name. This filter returns only model packages whose name contains the specified string.

    Declaration

    Swift

    public let nameContains: String?
  • If the response to a previous ListModelPackages request was truncated, the response includes a NextToken. To retrieve the next set of model packages, use the token in the next request.

    Declaration

    Swift

    public let nextToken: String?
  • The parameter by which to sort the results. The default is CreationTime.

    Declaration

    Swift

    public let sortBy: ModelPackageSortBy?
  • The sort order for the results. The default is Ascending.

    Declaration

    Swift

    public let sortOrder: SortOrder?
  • Undocumented

    Declaration

    Swift

    public init(creationTimeAfter: TimeStamp? = nil, creationTimeBefore: TimeStamp? = nil, maxResults: Int? = nil, nameContains: String? = nil, nextToken: String? = nil, sortBy: ModelPackageSortBy? = nil, sortOrder: SortOrder? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws