Interface BatchPutAssetPropertyErrorEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchPutAssetPropertyErrorEntry.Builder,BatchPutAssetPropertyErrorEntry>,SdkBuilder<BatchPutAssetPropertyErrorEntry.Builder,BatchPutAssetPropertyErrorEntry>,SdkPojo
- Enclosing class:
- BatchPutAssetPropertyErrorEntry
public static interface BatchPutAssetPropertyErrorEntry.Builder extends SdkPojo, CopyableBuilder<BatchPutAssetPropertyErrorEntry.Builder,BatchPutAssetPropertyErrorEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchPutAssetPropertyErrorEntry.BuilderentryId(String entryId)The ID of the failed entry.BatchPutAssetPropertyErrorEntry.Buildererrors(Collection<BatchPutAssetPropertyError> errors)The list of update property value errors.BatchPutAssetPropertyErrorEntry.Buildererrors(Consumer<BatchPutAssetPropertyError.Builder>... errors)The list of update property value errors.BatchPutAssetPropertyErrorEntry.Buildererrors(BatchPutAssetPropertyError... errors)The list of update property value errors.-
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
BatchPutAssetPropertyErrorEntry.Builder entryId(String entryId)
The ID of the failed entry.
- Parameters:
entryId- The ID of the failed entry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchPutAssetPropertyErrorEntry.Builder errors(Collection<BatchPutAssetPropertyError> errors)
The list of update property value errors.
- Parameters:
errors- The list of update property value errors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchPutAssetPropertyErrorEntry.Builder errors(BatchPutAssetPropertyError... errors)
The list of update property value errors.
- Parameters:
errors- The list of update property value errors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchPutAssetPropertyErrorEntry.Builder errors(Consumer<BatchPutAssetPropertyError.Builder>... errors)
The list of update property value errors.
This is a convenience method that creates an instance of theBatchPutAssetPropertyError.Builderavoiding the need to create one manually viaBatchPutAssetPropertyError.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#errors(List.) - Parameters:
errors- a consumer that will call methods onBatchPutAssetPropertyError.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#errors(java.util.Collection)
-
-