ListExperimentsRequest

public struct ListExperimentsRequest : AWSShape
extension SageMaker.ListExperimentsRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A filter that returns only experiments created after the specified time.

    Declaration

    Swift

    public let createdAfter: TimeStamp?
  • A filter that returns only experiments created before the specified time.

    Declaration

    Swift

    public let createdBefore: TimeStamp?
  • The maximum number of experiments to return in the response. The default value is 10.

    Declaration

    Swift

    public let maxResults: Int?
  • If the previous call to ListExperiments didn’t return the full set of experiments, the call returns a token for getting the next set of experiments.

    Declaration

    Swift

    public let nextToken: String?
  • The property used to sort results. The default value is CreationTime.

    Declaration

    Swift

    public let sortBy: SortExperimentsBy?
  • The sort order. The default value is Descending.

    Declaration

    Swift

    public let sortOrder: SortOrder?
  • Undocumented

    Declaration

    Swift

    public init(createdAfter: TimeStamp? = nil, createdBefore: TimeStamp? = nil, maxResults: Int? = nil, nextToken: String? = nil, sortBy: SortExperimentsBy? = nil, sortOrder: SortOrder? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws