Interface ListTimeSeriesDataPointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListTimeSeriesDataPointsResponse.Builder,ListTimeSeriesDataPointsResponse>,DataZoneResponse.Builder,SdkBuilder<ListTimeSeriesDataPointsResponse.Builder,ListTimeSeriesDataPointsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTimeSeriesDataPointsResponse
public static interface ListTimeSeriesDataPointsResponse.Builder extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder<ListTimeSeriesDataPointsResponse.Builder,ListTimeSeriesDataPointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTimeSeriesDataPointsResponse.Builderitems(Collection<TimeSeriesDataPointSummaryFormOutput> items)The results of the ListTimeSeriesDataPoints action.ListTimeSeriesDataPointsResponse.Builderitems(Consumer<TimeSeriesDataPointSummaryFormOutput.Builder>... items)The results of the ListTimeSeriesDataPoints action.ListTimeSeriesDataPointsResponse.Builderitems(TimeSeriesDataPointSummaryFormOutput... items)The results of the ListTimeSeriesDataPoints action.ListTimeSeriesDataPointsResponse.BuildernextToken(String nextToken)When the number of data points is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data points, the response includes a pagination token named NextToken.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datazone.model.DataZoneResponse.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
-
items
ListTimeSeriesDataPointsResponse.Builder items(Collection<TimeSeriesDataPointSummaryFormOutput> items)
The results of the ListTimeSeriesDataPoints action.
- Parameters:
items- The results of the ListTimeSeriesDataPoints action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListTimeSeriesDataPointsResponse.Builder items(TimeSeriesDataPointSummaryFormOutput... items)
The results of the ListTimeSeriesDataPoints action.
- Parameters:
items- The results of the ListTimeSeriesDataPoints action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListTimeSeriesDataPointsResponse.Builder items(Consumer<TimeSeriesDataPointSummaryFormOutput.Builder>... items)
The results of the ListTimeSeriesDataPoints action.
This is a convenience method that creates an instance of theTimeSeriesDataPointSummaryFormOutput.Builderavoiding the need to create one manually viaTimeSeriesDataPointSummaryFormOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onTimeSeriesDataPointSummaryFormOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
ListTimeSeriesDataPointsResponse.Builder nextToken(String nextToken)
When the number of data points is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data points, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points.
- Parameters:
nextToken- When the number of data points is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data points, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-