Interface PostTimeSeriesDataPointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<PostTimeSeriesDataPointsResponse.Builder,PostTimeSeriesDataPointsResponse>,DataZoneResponse.Builder,SdkBuilder<PostTimeSeriesDataPointsResponse.Builder,PostTimeSeriesDataPointsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- PostTimeSeriesDataPointsResponse
public static interface PostTimeSeriesDataPointsResponse.Builder extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder<PostTimeSeriesDataPointsResponse.Builder,PostTimeSeriesDataPointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PostTimeSeriesDataPointsResponse.BuilderdomainId(String domainId)The ID of the Amazon DataZone domain in which you want to post time series data points.PostTimeSeriesDataPointsResponse.BuilderentityId(String entityId)The ID of the asset for which you want to post time series data points.PostTimeSeriesDataPointsResponse.BuilderentityType(String entityType)The type of the asset for which you want to post data points.PostTimeSeriesDataPointsResponse.BuilderentityType(TimeSeriesEntityType entityType)The type of the asset for which you want to post data points.PostTimeSeriesDataPointsResponse.Builderforms(Collection<TimeSeriesDataPointFormOutput> forms)The forms that contain the data points that you have posted.PostTimeSeriesDataPointsResponse.Builderforms(Consumer<TimeSeriesDataPointFormOutput.Builder>... forms)The forms that contain the data points that you have posted.PostTimeSeriesDataPointsResponse.Builderforms(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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
domainId
PostTimeSeriesDataPointsResponse.Builder domainId(String 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
PostTimeSeriesDataPointsResponse.Builder entityId(String 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
PostTimeSeriesDataPointsResponse.Builder entityType(String 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:
TimeSeriesEntityType,TimeSeriesEntityType
-
entityType
PostTimeSeriesDataPointsResponse.Builder entityType(TimeSeriesEntityType 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:
TimeSeriesEntityType,TimeSeriesEntityType
-
forms
PostTimeSeriesDataPointsResponse.Builder forms(Collection<TimeSeriesDataPointFormOutput> 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(TimeSeriesDataPointFormOutput... 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.Builderavoiding the need to create one manually viaTimeSeriesDataPointFormOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#forms(List.) - 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:
#forms(java.util.Collection)
-
-