Interface DescribeJobResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeJobResponse.Builder,DescribeJobResponse>,SdkBuilder<DescribeJobResponse.Builder,DescribeJobResponse>,SdkPojo,SdkResponse.Builder,SnowballResponse.Builder
- Enclosing class:
- DescribeJobResponse
public static interface DescribeJobResponse.Builder extends SnowballResponse.Builder, SdkPojo, CopyableBuilder<DescribeJobResponse.Builder,DescribeJobResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DescribeJobResponse.BuilderjobMetadata(Consumer<JobMetadata.Builder> jobMetadata)Information about a specific job, including shipping information, job status, and other important metadata.DescribeJobResponse.BuilderjobMetadata(JobMetadata jobMetadata)Information about a specific job, including shipping information, job status, and other important metadata.DescribeJobResponse.BuildersubJobMetadata(Collection<JobMetadata> subJobMetadata)Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.DescribeJobResponse.BuildersubJobMetadata(Consumer<JobMetadata.Builder>... subJobMetadata)Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.DescribeJobResponse.BuildersubJobMetadata(JobMetadata... subJobMetadata)Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.snowball.model.SnowballResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
jobMetadata
DescribeJobResponse.Builder jobMetadata(JobMetadata jobMetadata)
Information about a specific job, including shipping information, job status, and other important metadata.
- Parameters:
jobMetadata- Information about a specific job, including shipping information, job status, and other important metadata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobMetadata
default DescribeJobResponse.Builder jobMetadata(Consumer<JobMetadata.Builder> jobMetadata)
Information about a specific job, including shipping information, job status, and other important metadata.
This is a convenience method that creates an instance of theJobMetadata.Builderavoiding the need to create one manually viaJobMetadata.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tojobMetadata(JobMetadata).- Parameters:
jobMetadata- a consumer that will call methods onJobMetadata.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
jobMetadata(JobMetadata)
-
subJobMetadata
DescribeJobResponse.Builder subJobMetadata(Collection<JobMetadata> subJobMetadata)
Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.
- Parameters:
subJobMetadata- Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subJobMetadata
DescribeJobResponse.Builder subJobMetadata(JobMetadata... subJobMetadata)
Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.
- Parameters:
subJobMetadata- Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subJobMetadata
DescribeJobResponse.Builder subJobMetadata(Consumer<JobMetadata.Builder>... subJobMetadata)
Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.
This is a convenience method that creates an instance of theJobMetadata.Builderavoiding the need to create one manually viaJobMetadata.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#subJobMetadata(List.) - Parameters:
subJobMetadata- a consumer that will call methods onJobMetadata.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#subJobMetadata(java.util.Collection)
-
-