Interface EndpointBatchRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EndpointBatchRequest.Builder,EndpointBatchRequest>,SdkBuilder<EndpointBatchRequest.Builder,EndpointBatchRequest>,SdkPojo
- Enclosing class:
- EndpointBatchRequest
public static interface EndpointBatchRequest.Builder extends SdkPojo, CopyableBuilder<EndpointBatchRequest.Builder,EndpointBatchRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EndpointBatchRequest.Builderitem(Collection<EndpointBatchItem> item)An array that defines the endpoints to create or update and, for each endpoint, the property values to set or change.EndpointBatchRequest.Builderitem(Consumer<EndpointBatchItem.Builder>... item)An array that defines the endpoints to create or update and, for each endpoint, the property values to set or change.EndpointBatchRequest.Builderitem(EndpointBatchItem... item)An array that defines the endpoints to create or update and, for each endpoint, the property values to set or change.-
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
-
item
EndpointBatchRequest.Builder item(Collection<EndpointBatchItem> item)
An array that defines the endpoints to create or update and, for each endpoint, the property values to set or change. An array can contain a maximum of 100 items.
- Parameters:
item- An array that defines the endpoints to create or update and, for each endpoint, the property values to set or change. An array can contain a maximum of 100 items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
item
EndpointBatchRequest.Builder item(EndpointBatchItem... item)
An array that defines the endpoints to create or update and, for each endpoint, the property values to set or change. An array can contain a maximum of 100 items.
- Parameters:
item- An array that defines the endpoints to create or update and, for each endpoint, the property values to set or change. An array can contain a maximum of 100 items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
item
EndpointBatchRequest.Builder item(Consumer<EndpointBatchItem.Builder>... item)
An array that defines the endpoints to create or update and, for each endpoint, the property values to set or change. An array can contain a maximum of 100 items.
This is a convenience method that creates an instance of theEndpointBatchItem.Builderavoiding the need to create one manually viaEndpointBatchItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#item(List.) - Parameters:
item- a consumer that will call methods onEndpointBatchItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#item(java.util.Collection)
-
-