All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.autoscaling.model.BlockDeviceMapping Maven / Gradle / Ivy

/*
 * Copyright 2010-2011 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.autoscaling.model;

/**
 * 

* The BlockDeviceMapping data type. *

*/ public class BlockDeviceMapping { /** * Specifies the virtual name associated with the device. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/ private String virtualName; /** * Specifies the name of the device within Amazon EC2. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/ private String deviceName; /** * Specifies the virtual name associated with the device. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @return Specifies the virtual name associated with the device. */ public String getVirtualName() { return virtualName; } /** * Specifies the virtual name associated with the device. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param virtualName Specifies the virtual name associated with the device. */ public void setVirtualName(String virtualName) { this.virtualName = virtualName; } /** * Specifies the virtual name associated with the device. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param virtualName Specifies the virtual name associated with the device. * * @return A reference to this updated object so that method calls can be chained * together. */ public BlockDeviceMapping withVirtualName(String virtualName) { this.virtualName = virtualName; return this; } /** * Specifies the name of the device within Amazon EC2. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @return Specifies the name of the device within Amazon EC2. */ public String getDeviceName() { return deviceName; } /** * Specifies the name of the device within Amazon EC2. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param deviceName Specifies the name of the device within Amazon EC2. */ public void setDeviceName(String deviceName) { this.deviceName = deviceName; } /** * Specifies the name of the device within Amazon EC2. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param deviceName Specifies the name of the device within Amazon EC2. * * @return A reference to this updated object so that method calls can be chained * together. */ public BlockDeviceMapping withDeviceName(String deviceName) { this.deviceName = deviceName; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); sb.append("VirtualName: " + virtualName + ", "); sb.append("DeviceName: " + deviceName + ", "); sb.append("}"); return sb.toString(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy