Interface DescribeTapeArchivesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeTapeArchivesResponse.Builder,DescribeTapeArchivesResponse>,SdkBuilder<DescribeTapeArchivesResponse.Builder,DescribeTapeArchivesResponse>,SdkPojo,SdkResponse.Builder,StorageGatewayResponse.Builder
- Enclosing class:
- DescribeTapeArchivesResponse
public static interface DescribeTapeArchivesResponse.Builder extends StorageGatewayResponse.Builder, SdkPojo, CopyableBuilder<DescribeTapeArchivesResponse.Builder,DescribeTapeArchivesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeTapeArchivesResponse.Buildermarker(String marker)An opaque string that indicates the position at which the virtual tapes that were fetched for description ended.DescribeTapeArchivesResponse.BuildertapeArchives(Collection<TapeArchive> tapeArchives)An array of virtual tape objects in the virtual tape shelf (VTS).DescribeTapeArchivesResponse.BuildertapeArchives(Consumer<TapeArchive.Builder>... tapeArchives)An array of virtual tape objects in the virtual tape shelf (VTS).DescribeTapeArchivesResponse.BuildertapeArchives(TapeArchive... tapeArchives)An array of virtual tape objects in the virtual tape shelf (VTS).-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.storagegateway.model.StorageGatewayResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
tapeArchives
DescribeTapeArchivesResponse.Builder tapeArchives(Collection<TapeArchive> tapeArchives)
An array of virtual tape objects in the virtual tape shelf (VTS). The description includes of the Amazon Resource Name (ARN) of the virtual tapes. The information returned includes the Amazon Resource Names (ARNs) of the tapes, size of the tapes, status of the tapes, progress of the description, and tape barcode.
- Parameters:
tapeArchives- An array of virtual tape objects in the virtual tape shelf (VTS). The description includes of the Amazon Resource Name (ARN) of the virtual tapes. The information returned includes the Amazon Resource Names (ARNs) of the tapes, size of the tapes, status of the tapes, progress of the description, and tape barcode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tapeArchives
DescribeTapeArchivesResponse.Builder tapeArchives(TapeArchive... tapeArchives)
An array of virtual tape objects in the virtual tape shelf (VTS). The description includes of the Amazon Resource Name (ARN) of the virtual tapes. The information returned includes the Amazon Resource Names (ARNs) of the tapes, size of the tapes, status of the tapes, progress of the description, and tape barcode.
- Parameters:
tapeArchives- An array of virtual tape objects in the virtual tape shelf (VTS). The description includes of the Amazon Resource Name (ARN) of the virtual tapes. The information returned includes the Amazon Resource Names (ARNs) of the tapes, size of the tapes, status of the tapes, progress of the description, and tape barcode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tapeArchives
DescribeTapeArchivesResponse.Builder tapeArchives(Consumer<TapeArchive.Builder>... tapeArchives)
An array of virtual tape objects in the virtual tape shelf (VTS). The description includes of the Amazon Resource Name (ARN) of the virtual tapes. The information returned includes the Amazon Resource Names (ARNs) of the tapes, size of the tapes, status of the tapes, progress of the description, and tape barcode.
This is a convenience method that creates an instance of theTapeArchive.Builderavoiding the need to create one manually viaTapeArchive.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tapeArchives(List.) - Parameters:
tapeArchives- a consumer that will call methods onTapeArchive.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tapeArchives(java.util.Collection)
-
marker
DescribeTapeArchivesResponse.Builder marker(String marker)
An opaque string that indicates the position at which the virtual tapes that were fetched for description ended. Use this marker in your next request to fetch the next set of virtual tapes in the virtual tape shelf (VTS). If there are no more virtual tapes to describe, this field does not appear in the response.
- Parameters:
marker- An opaque string that indicates the position at which the virtual tapes that were fetched for description ended. Use this marker in your next request to fetch the next set of virtual tapes in the virtual tape shelf (VTS). If there are no more virtual tapes to describe, this field does not appear in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-