Interface ListMonitorEvaluationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListMonitorEvaluationsResponse.Builder,ListMonitorEvaluationsResponse>,ForecastResponse.Builder,SdkBuilder<ListMonitorEvaluationsResponse.Builder,ListMonitorEvaluationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListMonitorEvaluationsResponse
public static interface ListMonitorEvaluationsResponse.Builder extends ForecastResponse.Builder, SdkPojo, CopyableBuilder<ListMonitorEvaluationsResponse.Builder,ListMonitorEvaluationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListMonitorEvaluationsResponse.BuildernextToken(String nextToken)If the response is truncated, Amazon Forecast returns this token.ListMonitorEvaluationsResponse.BuilderpredictorMonitorEvaluations(Collection<PredictorMonitorEvaluation> predictorMonitorEvaluations)The monitoring results and predictor events collected by the monitor resource during different windows of time.ListMonitorEvaluationsResponse.BuilderpredictorMonitorEvaluations(Consumer<PredictorMonitorEvaluation.Builder>... predictorMonitorEvaluations)The monitoring results and predictor events collected by the monitor resource during different windows of time.ListMonitorEvaluationsResponse.BuilderpredictorMonitorEvaluations(PredictorMonitorEvaluation... predictorMonitorEvaluations)The monitoring results and predictor events collected by the monitor resource during different windows of time.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.forecast.model.ForecastResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListMonitorEvaluationsResponse.Builder nextToken(String nextToken)
If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of results, use the token in the next request. Tokens expire after 24 hours.
- Parameters:
nextToken- If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of results, use the token in the next request. Tokens expire after 24 hours.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
predictorMonitorEvaluations
ListMonitorEvaluationsResponse.Builder predictorMonitorEvaluations(Collection<PredictorMonitorEvaluation> predictorMonitorEvaluations)
The monitoring results and predictor events collected by the monitor resource during different windows of time.
For information about monitoring see Viewing Monitoring Results. For more information about retrieving monitoring results see Viewing Monitoring Results.
- Parameters:
predictorMonitorEvaluations- The monitoring results and predictor events collected by the monitor resource during different windows of time.For information about monitoring see Viewing Monitoring Results. For more information about retrieving monitoring results see Viewing Monitoring Results.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
predictorMonitorEvaluations
ListMonitorEvaluationsResponse.Builder predictorMonitorEvaluations(PredictorMonitorEvaluation... predictorMonitorEvaluations)
The monitoring results and predictor events collected by the monitor resource during different windows of time.
For information about monitoring see Viewing Monitoring Results. For more information about retrieving monitoring results see Viewing Monitoring Results.
- Parameters:
predictorMonitorEvaluations- The monitoring results and predictor events collected by the monitor resource during different windows of time.For information about monitoring see Viewing Monitoring Results. For more information about retrieving monitoring results see Viewing Monitoring Results.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
predictorMonitorEvaluations
ListMonitorEvaluationsResponse.Builder predictorMonitorEvaluations(Consumer<PredictorMonitorEvaluation.Builder>... predictorMonitorEvaluations)
The monitoring results and predictor events collected by the monitor resource during different windows of time.
For information about monitoring see Viewing Monitoring Results. For more information about retrieving monitoring results see Viewing Monitoring Results.
This is a convenience method that creates an instance of thePredictorMonitorEvaluation.Builderavoiding the need to create one manually viaPredictorMonitorEvaluation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#predictorMonitorEvaluations(List.) - Parameters:
predictorMonitorEvaluations- a consumer that will call methods onPredictorMonitorEvaluation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#predictorMonitorEvaluations(java.util.Collection)
-
-