/* * Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.amazonaws.services.ec2.model; import java.io.Serializable; import com.amazonaws.AmazonWebServiceRequest; import com.amazonaws.Request; import com.amazonaws.services.ec2.model.transform.ImportVolumeRequestMarshaller; /** * Container for the parameters to the {@link com.amazonaws.services.ec2.AmazonEC2#importVolume(ImportVolumeRequest) ImportVolume operation}. *
* Creates an import volume task using metadata from the specified disk
* image. After importing the image, you then upload it using the
* ec2-import-volume
command in the Amazon EC2 command-line
* interface (CLI) tools. For more information, see
* Using the Command Line Tools to Import Your Virtual Machine to Amazon EC2
* in the Amazon Elastic Compute Cloud User Guide .
*
* For information about the import manifest referenced by this API * action, see * VM Import Manifest * . *
* * @see com.amazonaws.services.ec2.AmazonEC2#importVolume(ImportVolumeRequest) */ public class ImportVolumeRequest extends AmazonWebServiceRequest implements Serializable, DryRunSupportedRequest* Returns a reference to this object so that method calls can be chained together. * * @param availabilityZone The Availability Zone for the resulting EBS volume. * * @return A reference to this updated object so that method calls can be chained * together. */ public ImportVolumeRequest withAvailabilityZone(String availabilityZone) { this.availabilityZone = availabilityZone; return this; } /** * The disk image. * * @return The disk image. */ public DiskImageDetail getImage() { return image; } /** * The disk image. * * @param image The disk image. */ public void setImage(DiskImageDetail image) { this.image = image; } /** * The disk image. *
* Returns a reference to this object so that method calls can be chained together. * * @param image The disk image. * * @return A reference to this updated object so that method calls can be chained * together. */ public ImportVolumeRequest withImage(DiskImageDetail image) { this.image = image; return this; } /** * A description of the volume. * * @return A description of the volume. */ public String getDescription() { return description; } /** * A description of the volume. * * @param description A description of the volume. */ public void setDescription(String description) { this.description = description; } /** * A description of the volume. *
* Returns a reference to this object so that method calls can be chained together. * * @param description A description of the volume. * * @return A reference to this updated object so that method calls can be chained * together. */ public ImportVolumeRequest withDescription(String description) { this.description = description; return this; } /** * The volume size. * * @return The volume size. */ public VolumeDetail getVolume() { return volume; } /** * The volume size. * * @param volume The volume size. */ public void setVolume(VolumeDetail volume) { this.volume = volume; } /** * The volume size. *
* Returns a reference to this object so that method calls can be chained together.
*
* @param volume The volume size.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ImportVolumeRequest withVolume(VolumeDetail volume) {
this.volume = volume;
return this;
}
/**
* This method is intended for internal use only.
* Returns the marshaled request configured with additional parameters to
* enable operation dry-run.
*/
@Override
public Request