Tabnine Logo
DetachVolumeRequest.setVolumeId
Code IndexAdd Tabnine to your IDE (free)

How to use
setVolumeId
method
in
com.amazonaws.services.ec2.model.DetachVolumeRequest

Best Java code snippets using com.amazonaws.services.ec2.model.DetachVolumeRequest.setVolumeId (Showing top 6 results out of 315)

origin: aws/aws-sdk-java

/**
 * Constructs a new DetachVolumeRequest object. Callers should use the setter or fluent setter (with...) methods to
 * initialize any additional object members.
 * 
 * @param volumeId
 *        The ID of the volume.
 */
public DetachVolumeRequest(String volumeId) {
  setVolumeId(volumeId);
}
origin: aws/aws-sdk-java

/**
 * <p>
 * The ID of the volume.
 * </p>
 * 
 * @param volumeId
 *        The ID of the volume.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public DetachVolumeRequest withVolumeId(String volumeId) {
  setVolumeId(volumeId);
  return this;
}
origin: aws-amplify/aws-sdk-android

/**
 * Constructs a new DetachVolumeRequest object.
 * Callers should use the setter or fluent setter (with...) methods to
 * initialize any additional object members.
 * 
 * @param volumeId The ID of the volume.
 */
public DetachVolumeRequest(String volumeId) {
  setVolumeId(volumeId);
}
origin: com.amazonaws/aws-java-sdk-ec2

/**
 * <p>
 * The ID of the volume.
 * </p>
 * 
 * @param volumeId
 *        The ID of the volume.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public DetachVolumeRequest withVolumeId(String volumeId) {
  setVolumeId(volumeId);
  return this;
}
origin: com.amazonaws/aws-java-sdk-ec2

/**
 * Constructs a new DetachVolumeRequest object. Callers should use the setter or fluent setter (with...) methods to
 * initialize any additional object members.
 * 
 * @param volumeId
 *        The ID of the volume.
 */
public DetachVolumeRequest(String volumeId) {
  setVolumeId(volumeId);
}
origin: org.kuali.common/kuali-aws

@Override
public String detachVolume(VolumeRequest request) {
  com.amazonaws.services.ec2.model.DetachVolumeRequest dvr = new com.amazonaws.services.ec2.model.DetachVolumeRequest();
  dvr.setInstanceId(request.getInstanceId());
  dvr.setVolumeId(request.getVolumeId());
  dvr.setDevice(request.getDevice());
  client.detachVolume(dvr);
  return waitForDetached(request.getVolumeId(), request.getTimeout());
}
com.amazonaws.services.ec2.modelDetachVolumeRequestsetVolumeId

Javadoc

The ID of the volume.

Popular methods of DetachVolumeRequest

  • <init>
    Constructs a new DetachVolumeRequest object. Callers should use the setter or fluent setter (with...
  • getDevice
    The device name.
  • getInstanceId
    The ID of the instance.
  • getVolumeId
    The ID of the volume.
  • setDevice
    The device name.
  • setInstanceId
    The ID of the instance.
  • getForce
    Forces detachment if the previous detachment attempt did not occur cleanly (for example, logging in
  • isForce
    Forces detachment if the previous detachment attempt did not occur cleanly (for example, logging in
  • setForce
    Forces detachment if the previous detachment attempt did not occur cleanly (for example, logging in
  • withDevice
    The device name.
  • withForce
    Forces detachment if the previous detachment attempt did not occur cleanly (for example, logging in
  • withInstanceId
    The ID of the instance.
  • withForce,
  • withInstanceId,
  • withVolumeId

Popular in Java

  • Reactive rest calls using spring rest template
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • scheduleAtFixedRate (ScheduledExecutorService)
  • onRequestPermissionsResult (Fragment)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • JButton (javax.swing)
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now