Interface ImportVolumeRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ImportVolumeRequest.Builder,
,ImportVolumeRequest> Ec2Request.Builder
,SdkBuilder<ImportVolumeRequest.Builder,
,ImportVolumeRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
ImportVolumeRequest
public static interface ImportVolumeRequest.Builder
extends Ec2Request.Builder, SdkPojo, CopyableBuilder<ImportVolumeRequest.Builder,ImportVolumeRequest>
-
Method Summary
Modifier and TypeMethodDescriptionavailabilityZone
(String availabilityZone) The Availability Zone for the resulting EBS volume.description
(String description) A description of the volume.Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.default ImportVolumeRequest.Builder
image
(Consumer<DiskImageDetail.Builder> image) The disk image.image
(DiskImageDetail image) The disk image.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.default ImportVolumeRequest.Builder
volume
(Consumer<VolumeDetail.Builder> volume) The volume size.volume
(VolumeDetail volume) The volume size.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Request.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
availabilityZone
The Availability Zone for the resulting EBS volume.
- Parameters:
availabilityZone
- The Availability Zone for the resulting EBS volume.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
A description of the volume.
- Parameters:
description
- A description of the volume.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dryRun
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation
. Otherwise, it isUnauthorizedOperation
.- Parameters:
dryRun
- Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response isDryRunOperation
. Otherwise, it isUnauthorizedOperation
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
image
The disk image.
- Parameters:
image
- The disk image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
image
The disk image.
This is a convenience method that creates an instance of theDiskImageDetail.Builder
avoiding the need to create one manually viaDiskImageDetail.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toimage(DiskImageDetail)
.- Parameters:
image
- a consumer that will call methods onDiskImageDetail.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
volume
The volume size.
- Parameters:
volume
- The volume size.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
volume
The volume size.
This is a convenience method that creates an instance of theVolumeDetail.Builder
avoiding the need to create one manually viaVolumeDetail.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tovolume(VolumeDetail)
.- Parameters:
volume
- a consumer that will call methods onVolumeDetail.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
ImportVolumeRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
ImportVolumeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-