Interface DiskImageDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DiskImageDetail.Builder,DiskImageDetail>,SdkBuilder<DiskImageDetail.Builder,DiskImageDetail>,SdkPojo
- Enclosing class:
- DiskImageDetail
@Mutable @NotThreadSafe public static interface DiskImageDetail.Builder extends SdkPojo, CopyableBuilder<DiskImageDetail.Builder,DiskImageDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DiskImageDetail.Builderbytes(Long bytes)The size of the disk image, in GiB.DiskImageDetail.Builderformat(String format)The disk image format.DiskImageDetail.Builderformat(DiskImageFormat format)The disk image format.DiskImageDetail.BuilderimportManifestUrl(String importManifestUrl)A presigned URL for the import manifest stored in Amazon S3 and presented here as an Amazon S3 presigned URL.-
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
-
-
-
-
Method Detail
-
format
DiskImageDetail.Builder format(String format)
The disk image format.
- Parameters:
format- The disk image format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DiskImageFormat,DiskImageFormat
-
format
DiskImageDetail.Builder format(DiskImageFormat format)
The disk image format.
- Parameters:
format- The disk image format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DiskImageFormat,DiskImageFormat
-
bytes
DiskImageDetail.Builder bytes(Long bytes)
The size of the disk image, in GiB.
- Parameters:
bytes- The size of the disk image, in GiB.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
importManifestUrl
DiskImageDetail.Builder importManifestUrl(String importManifestUrl)
A presigned URL for the import manifest stored in Amazon S3 and presented here as an Amazon S3 presigned URL. For information about creating a presigned URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.
For information about the import manifest referenced by this API action, see VM Import Manifest.
- Parameters:
importManifestUrl- A presigned URL for the import manifest stored in Amazon S3 and presented here as an Amazon S3 presigned URL. For information about creating a presigned URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.For information about the import manifest referenced by this API action, see VM Import Manifest.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-