Interface BatchGetJobEntityResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchGetJobEntityResponse.Builder,BatchGetJobEntityResponse>,DeadlineResponse.Builder,SdkBuilder<BatchGetJobEntityResponse.Builder,BatchGetJobEntityResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetJobEntityResponse
public static interface BatchGetJobEntityResponse.Builder extends DeadlineResponse.Builder, SdkPojo, CopyableBuilder<BatchGetJobEntityResponse.Builder,BatchGetJobEntityResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetJobEntityResponse.Builderentities(Collection<JobEntity> entities)A list of the job entities, or details, in the batch.BatchGetJobEntityResponse.Builderentities(Consumer<JobEntity.Builder>... entities)A list of the job entities, or details, in the batch.BatchGetJobEntityResponse.Builderentities(JobEntity... entities)A list of the job entities, or details, in the batch.BatchGetJobEntityResponse.Buildererrors(Collection<GetJobEntityError> errors)A list of errors from the job error logs for the batch.BatchGetJobEntityResponse.Buildererrors(Consumer<GetJobEntityError.Builder>... errors)A list of errors from the job error logs for the batch.BatchGetJobEntityResponse.Buildererrors(GetJobEntityError... errors)A list of errors from the job error logs for the batch.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.deadline.model.DeadlineResponse.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
-
entities
BatchGetJobEntityResponse.Builder entities(Collection<JobEntity> entities)
A list of the job entities, or details, in the batch.
- Parameters:
entities- A list of the job entities, or details, in the batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
BatchGetJobEntityResponse.Builder entities(JobEntity... entities)
A list of the job entities, or details, in the batch.
- Parameters:
entities- A list of the job entities, or details, in the batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
BatchGetJobEntityResponse.Builder entities(Consumer<JobEntity.Builder>... entities)
A list of the job entities, or details, in the batch.
This is a convenience method that creates an instance of theJobEntity.Builderavoiding the need to create one manually viaJobEntity.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entities(List.) - Parameters:
entities- a consumer that will call methods onJobEntity.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entities(java.util.Collection)
-
errors
BatchGetJobEntityResponse.Builder errors(Collection<GetJobEntityError> errors)
A list of errors from the job error logs for the batch.
- Parameters:
errors- A list of errors from the job error logs for the batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchGetJobEntityResponse.Builder errors(GetJobEntityError... errors)
A list of errors from the job error logs for the batch.
- Parameters:
errors- A list of errors from the job error logs for the batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchGetJobEntityResponse.Builder errors(Consumer<GetJobEntityError.Builder>... errors)
A list of errors from the job error logs for the batch.
This is a convenience method that creates an instance of theGetJobEntityError.Builderavoiding the need to create one manually viaGetJobEntityError.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 onGetJobEntityError.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#errors(java.util.Collection)
-
-