Interface PostTimeSeriesDataPointsResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<PostTimeSeriesDataPointsResponse.Builder,
,PostTimeSeriesDataPointsResponse> DataZoneResponse.Builder
,SdkBuilder<PostTimeSeriesDataPointsResponse.Builder,
,PostTimeSeriesDataPointsResponse> SdkPojo
,SdkResponse.Builder
- Enclosing class:
PostTimeSeriesDataPointsResponse
@Mutable
@NotThreadSafe
public static interface PostTimeSeriesDataPointsResponse.Builder
extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder<PostTimeSeriesDataPointsResponse.Builder,PostTimeSeriesDataPointsResponse>
-
Method Summary
Modifier and TypeMethodDescriptionThe ID of the Amazon DataZone domain in which you want to post time series data points.The ID of the asset for which you want to post time series data points.entityType
(String entityType) The type of the asset for which you want to post data points.entityType
(TimeSeriesEntityType entityType) The type of the asset for which you want to post data points.The forms that contain the data points that you have posted.forms
(Consumer<TimeSeriesDataPointFormOutput.Builder>... forms) The forms that contain the data points that you have posted.forms
(TimeSeriesDataPointFormOutput... forms) The forms that contain the data points that you have posted.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, sdkFieldNameToField, sdkFields
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Method Details
-
domainId
The ID of the Amazon DataZone domain in which you want to post time series data points.
- Parameters:
domainId
- The ID of the Amazon DataZone domain in which you want to post time series data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entityId
The ID of the asset for which you want to post time series data points.
- Parameters:
entityId
- The ID of the asset for which you want to post time series data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entityType
The type of the asset for which you want to post data points.
- Parameters:
entityType
- The type of the asset for which you want to post data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
entityType
The type of the asset for which you want to post data points.
- Parameters:
entityType
- The type of the asset for which you want to post data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
forms
The forms that contain the data points that you have posted.
- Parameters:
forms
- The forms that contain the data points that you have posted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
forms
The forms that contain the data points that you have posted.
- Parameters:
forms
- The forms that contain the data points that you have posted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
forms
PostTimeSeriesDataPointsResponse.Builder forms(Consumer<TimeSeriesDataPointFormOutput.Builder>... forms) The forms that contain the data points that you have posted.
This is a convenience method that creates an instance of theTimeSeriesDataPointFormOutput.Builder
avoiding the need to create one manually viaTimeSeriesDataPointFormOutput.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toforms(List<TimeSeriesDataPointFormOutput>)
.- Parameters:
forms
- a consumer that will call methods onTimeSeriesDataPointFormOutput.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-