/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.machinelearning.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DescribeEvaluationsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* Use one of the following variable to filter a list of Evaluation objects: *

* */ private String filterVariable; /** *

* The equal to operator. The Evaluation results will have FilterVariable values that * exactly match the value specified with EQ. *

*/ private String eQ; /** *

* The greater than operator. The Evaluation results will have FilterVariable values that * are greater than the value specified with GT. *

*/ private String gT; /** *

* The less than operator. The Evaluation results will have FilterVariable values that are * less than the value specified with LT. *

*/ private String lT; /** *

* The greater than or equal to operator. The Evaluation results will have FilterVariable * values that are greater than or equal to the value specified with GE. *

*/ private String gE; /** *

* The less than or equal to operator. The Evaluation results will have FilterVariable * values that are less than or equal to the value specified with LE. *

*/ private String lE; /** *

* The not equal to operator. The Evaluation results will have FilterVariable values not * equal to the value specified with NE. *

*/ private String nE; /** *

* A string that is found at the beginning of a variable, such as Name or Id. *

*

* For example, an Evaluation could have the Name * 2014-09-09-HolidayGiftMailer. To search for this Evaluation, select Name * for the FilterVariable and any of the following strings for the Prefix: *

* */ private String prefix; /** *

* A two-value parameter that determines the sequence of the resulting list of Evaluation. *

* *

* Results are sorted by FilterVariable. *

*/ private String sortOrder; /** *

* The ID of the page in the paginated results. *

*/ private String nextToken; /** *

* The maximum number of Evaluation to include in the result. *

*/ private Integer limit; /** *

* Use one of the following variable to filter a list of Evaluation objects: *

* * * @param filterVariable * Use one of the following variable to filter a list of Evaluation objects:

*