Interface BatchGetAssetPropertyValueHistorySuccessEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchGetAssetPropertyValueHistorySuccessEntry.Builder,BatchGetAssetPropertyValueHistorySuccessEntry>,SdkBuilder<BatchGetAssetPropertyValueHistorySuccessEntry.Builder,BatchGetAssetPropertyValueHistorySuccessEntry>,SdkPojo
- Enclosing class:
- BatchGetAssetPropertyValueHistorySuccessEntry
public static interface BatchGetAssetPropertyValueHistorySuccessEntry.Builder extends SdkPojo, CopyableBuilder<BatchGetAssetPropertyValueHistorySuccessEntry.Builder,BatchGetAssetPropertyValueHistorySuccessEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetAssetPropertyValueHistorySuccessEntry.BuilderassetPropertyValueHistory(Collection<AssetPropertyValue> assetPropertyValueHistory)The requested historical values for the specified asset property.BatchGetAssetPropertyValueHistorySuccessEntry.BuilderassetPropertyValueHistory(Consumer<AssetPropertyValue.Builder>... assetPropertyValueHistory)The requested historical values for the specified asset property.BatchGetAssetPropertyValueHistorySuccessEntry.BuilderassetPropertyValueHistory(AssetPropertyValue... assetPropertyValueHistory)The requested historical values for the specified asset property.BatchGetAssetPropertyValueHistorySuccessEntry.BuilderentryId(String entryId)The ID of the entry.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
entryId
BatchGetAssetPropertyValueHistorySuccessEntry.Builder entryId(String entryId)
The ID of the entry.
- Parameters:
entryId- The ID of the entry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assetPropertyValueHistory
BatchGetAssetPropertyValueHistorySuccessEntry.Builder assetPropertyValueHistory(Collection<AssetPropertyValue> assetPropertyValueHistory)
The requested historical values for the specified asset property.
- Parameters:
assetPropertyValueHistory- The requested historical values for the specified asset property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assetPropertyValueHistory
BatchGetAssetPropertyValueHistorySuccessEntry.Builder assetPropertyValueHistory(AssetPropertyValue... assetPropertyValueHistory)
The requested historical values for the specified asset property.
- Parameters:
assetPropertyValueHistory- The requested historical values for the specified asset property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assetPropertyValueHistory
BatchGetAssetPropertyValueHistorySuccessEntry.Builder assetPropertyValueHistory(Consumer<AssetPropertyValue.Builder>... assetPropertyValueHistory)
The requested historical values for the specified asset property.
This is a convenience method that creates an instance of theAssetPropertyValue.Builderavoiding the need to create one manually viaAssetPropertyValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#assetPropertyValueHistory(List.) - Parameters:
assetPropertyValueHistory- a consumer that will call methods onAssetPropertyValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#assetPropertyValueHistory(java.util.Collection)
-
-