/* * 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 DescribeBatchPredictionsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* Use one of the following variables to filter a list of BatchPrediction: *

* */ private String filterVariable; /** *

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

*/ private String eQ; /** *

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

*/ private String gT; /** *

* The less than operator. The BatchPrediction 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 BatchPrediction 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 BatchPrediction 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 BatchPrediction 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, a Batch Prediction operation could have the Name * 2014-09-09-HolidayGiftMailer. To search for this BatchPrediction, 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 MLModels. *

* *

* Results are sorted by FilterVariable. *

*/ private String sortOrder; /** *

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

*/ private String nextToken; /** *

* The number of pages of information to include in the result. The range of acceptable values is 1 * through 100. The default value is 100. *

*/ private Integer limit; /** *

* Use one of the following variables to filter a list of BatchPrediction: *

* * * @param filterVariable * Use one of the following variables to filter a list of BatchPrediction:

*