ListTrialsRequest

public struct ListTrialsRequest : AWSShape
extension SageMaker.ListTrialsRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    public let createdBefore: TimeStamp?
  • A filter that returns only trials that are part of the specified experiment.

    Declaration

    Swift

    public let experimentName: String?
  • The maximum number of trials to return in the response. The default value is 10.

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    public let sortOrder: SortOrder?
  • A filter that returns only trials that are associated with the specified trial component.

    Declaration

    Swift

    public let trialComponentName: String?
  • Undocumented

    Declaration

    Swift

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

    Swift

    public func validate(name: String) throws