ListEndpointConfigsInput

public struct ListEndpointConfigsInput : AWSShape
extension SageMaker.ListEndpointConfigsInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A filter that returns only endpoint configurations with a creation time greater than or equal to the specified time (timestamp).

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    public let maxResults: Int?
  • A string in the endpoint configuration name. This filter returns only endpoint configurations whose name contains the specified string.

    Declaration

    Swift

    public let nameContains: String?
  • If the result of the previous ListEndpointConfig request was truncated, the response includes a NextToken. To retrieve the next set of endpoint configurations, use the token in the next request.

    Declaration

    Swift

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

    Declaration

    Swift

    public let sortBy: EndpointConfigSortKey?
  • 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: EndpointConfigSortKey? = nil, sortOrder: OrderKey? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws