The filter used to determine which endpoints are returned. You can filter jobs on their name, model, status, or the date and time that they were created. You can only set one filter at a time.

interface EndpointFilter {
    CreationTimeAfter?: Date;
    CreationTimeBefore?: Date;
    ModelArn?: string;
    Status?: string;
}

Properties

CreationTimeAfter?: Date

Specifies a date after which the returned endpoint or endpoints were created.

CreationTimeBefore?: Date

Specifies a date before which the returned endpoint or endpoints were created.

ModelArn?: string

The Amazon Resource Number (ARN) of the model to which the endpoint is attached.

Status?: string

Specifies the status of the endpoint being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.