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

com.amazonaws.services.ec2.model.ModifyInstanceAttributeRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service

There is a newer version: 1.9.19
Show newest version
/*
 * Copyright 2010-2016 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.ModifyInstanceAttributeRequestMarshaller;

/**
 * 

* Contains the parameters for ModifyInstanceAttribute. *

*/ public class ModifyInstanceAttributeRequest extends AmazonWebServiceRequest implements Serializable, Cloneable, DryRunSupportedRequest { /** *

* The ID of the instance. *

*/ private String instanceId; /** *

* The name of the attribute. *

*/ private String attribute; /** *

* A new value for the attribute. Use only with the kernel, * ramdisk, userData, * disableApiTermination, or * instanceInitiatedShutdownBehavior attribute. *

*/ private String value; /** *

* Modifies the DeleteOnTermination attribute for volumes that * are currently attached. The volume must be owned by the caller. If no * value is specified for DeleteOnTermination, the default is * true and the volume is deleted when the instance is * terminated. *

*

* To add instance store volumes to an Amazon EBS-backed instance, you must * add them when you launch the instance. For more information, see Updating the Block Device Mapping when Launching an Instance in the * Amazon Elastic Compute Cloud User Guide. *

*/ private com.amazonaws.internal.SdkInternalList blockDeviceMappings; /** *

* Specifies whether source/destination checking is enabled. A value of * true means that checking is enabled, and false * means checking is disabled. This value must be false for a * NAT instance to perform NAT. *

*/ private Boolean sourceDestCheck; /** *

* If the value is true, you can't terminate the instance using * the Amazon EC2 console, CLI, or API; otherwise, you can. You cannot use * this paramater for Spot Instances. *

*/ private Boolean disableApiTermination; /** *

* Changes the instance type to the specified value. For more information, * see Instance Types. If the instance type is not valid, the error * returned is InvalidInstanceAttributeValue. *

*/ private String instanceType; /** *

* Changes the instance's kernel to the specified value. We recommend that * you use PV-GRUB instead of kernels and RAM disks. For more information, * see PV-GRUB. *

*/ private String kernel; /** *

* Changes the instance's RAM disk to the specified value. We recommend that * you use PV-GRUB instead of kernels and RAM disks. For more information, * see PV-GRUB. *

*/ private String ramdisk; /** *

* Changes the instance's user data to the specified base64-encoded value. * For command line tools, base64 encoding is performed for you. *

*/ private String userData; /** *

* Specifies whether an instance stops or terminates when you initiate * shutdown from the instance (using the operating system command for system * shutdown). *

*/ private String instanceInitiatedShutdownBehavior; /** *

* [EC2-VPC] Changes the security groups of the instance. You must specify * at least one security group, even if it's just the default security group * for the VPC. You must specify the security group ID, not the security * group name. *

*/ private com.amazonaws.internal.SdkInternalList groups; /** *

* Specifies whether the instance is optimized for EBS I/O. This * optimization provides dedicated throughput to Amazon EBS and an optimized * configuration stack to provide optimal EBS I/O performance. This * optimization isn't available with all instance types. Additional usage * charges apply when using an EBS Optimized instance. *

*/ private Boolean ebsOptimized; /** *

* Set to simple to enable enhanced networking for the * instance. *

*

* There is no way to disable enhanced networking at this time. *

*

* This option is supported only for HVM instances. Specifying this option * with a PV instance can make it unreachable. *

*/ private String sriovNetSupport; /** * Default constructor for ModifyInstanceAttributeRequest object. Callers * should use the setter or fluent setter (with...) methods to initialize * the object after creating it. */ public ModifyInstanceAttributeRequest() { } /** * Constructs a new ModifyInstanceAttributeRequest object. Callers should * use the setter or fluent setter (with...) methods to initialize any * additional object members. * * @param instanceId * The ID of the instance. * @param attribute * The name of the attribute. */ public ModifyInstanceAttributeRequest(String instanceId, String attribute) { setInstanceId(instanceId); setAttribute(attribute); } /** * Constructs a new ModifyInstanceAttributeRequest object. Callers should * use the setter or fluent setter (with...) methods to initialize any * additional object members. * * @param instanceId * The ID of the instance. * @param attribute * The name of the attribute. */ public ModifyInstanceAttributeRequest(String instanceId, InstanceAttributeName attribute) { setInstanceId(instanceId); setAttribute(attribute.toString()); } /** *

* The ID of the instance. *

* * @param instanceId * The ID of the instance. */ public void setInstanceId(String instanceId) { this.instanceId = instanceId; } /** *

* The ID of the instance. *

* * @return The ID of the instance. */ public String getInstanceId() { return this.instanceId; } /** *

* The ID of the instance. *

* * @param instanceId * The ID of the instance. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withInstanceId(String instanceId) { setInstanceId(instanceId); return this; } /** *

* The name of the attribute. *

* * @param attribute * The name of the attribute. * @see InstanceAttributeName */ public void setAttribute(String attribute) { this.attribute = attribute; } /** *

* The name of the attribute. *

* * @return The name of the attribute. * @see InstanceAttributeName */ public String getAttribute() { return this.attribute; } /** *

* The name of the attribute. *

* * @param attribute * The name of the attribute. * @return Returns a reference to this object so that method calls can be * chained together. * @see InstanceAttributeName */ public ModifyInstanceAttributeRequest withAttribute(String attribute) { setAttribute(attribute); return this; } /** *

* The name of the attribute. *

* * @param attribute * The name of the attribute. * @see InstanceAttributeName */ public void setAttribute(InstanceAttributeName attribute) { this.attribute = attribute.toString(); } /** *

* The name of the attribute. *

* * @param attribute * The name of the attribute. * @return Returns a reference to this object so that method calls can be * chained together. * @see InstanceAttributeName */ public ModifyInstanceAttributeRequest withAttribute( InstanceAttributeName attribute) { setAttribute(attribute); return this; } /** *

* A new value for the attribute. Use only with the kernel, * ramdisk, userData, * disableApiTermination, or * instanceInitiatedShutdownBehavior attribute. *

* * @param value * A new value for the attribute. Use only with the * kernel, ramdisk, userData, * disableApiTermination, or * instanceInitiatedShutdownBehavior attribute. */ public void setValue(String value) { this.value = value; } /** *

* A new value for the attribute. Use only with the kernel, * ramdisk, userData, * disableApiTermination, or * instanceInitiatedShutdownBehavior attribute. *

* * @return A new value for the attribute. Use only with the * kernel, ramdisk, userData, * disableApiTermination, or * instanceInitiatedShutdownBehavior attribute. */ public String getValue() { return this.value; } /** *

* A new value for the attribute. Use only with the kernel, * ramdisk, userData, * disableApiTermination, or * instanceInitiatedShutdownBehavior attribute. *

* * @param value * A new value for the attribute. Use only with the * kernel, ramdisk, userData, * disableApiTermination, or * instanceInitiatedShutdownBehavior attribute. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withValue(String value) { setValue(value); return this; } /** *

* Modifies the DeleteOnTermination attribute for volumes that * are currently attached. The volume must be owned by the caller. If no * value is specified for DeleteOnTermination, the default is * true and the volume is deleted when the instance is * terminated. *

*

* To add instance store volumes to an Amazon EBS-backed instance, you must * add them when you launch the instance. For more information, see Updating the Block Device Mapping when Launching an Instance in the * Amazon Elastic Compute Cloud User Guide. *

* * @return Modifies the DeleteOnTermination attribute for * volumes that are currently attached. The volume must be owned by * the caller. If no value is specified for * DeleteOnTermination, the default is * true and the volume is deleted when the instance is * terminated.

*

* To add instance store volumes to an Amazon EBS-backed instance, * you must add them when you launch the instance. For more * information, see Updating the Block Device Mapping when Launching an Instance * in the Amazon Elastic Compute Cloud User Guide. */ public java.util.List getBlockDeviceMappings() { if (blockDeviceMappings == null) { blockDeviceMappings = new com.amazonaws.internal.SdkInternalList(); } return blockDeviceMappings; } /** *

* Modifies the DeleteOnTermination attribute for volumes that * are currently attached. The volume must be owned by the caller. If no * value is specified for DeleteOnTermination, the default is * true and the volume is deleted when the instance is * terminated. *

*

* To add instance store volumes to an Amazon EBS-backed instance, you must * add them when you launch the instance. For more information, see Updating the Block Device Mapping when Launching an Instance in the * Amazon Elastic Compute Cloud User Guide. *

* * @param blockDeviceMappings * Modifies the DeleteOnTermination attribute for * volumes that are currently attached. The volume must be owned by * the caller. If no value is specified for * DeleteOnTermination, the default is true * and the volume is deleted when the instance is terminated.

*

* To add instance store volumes to an Amazon EBS-backed instance, * you must add them when you launch the instance. For more * information, see Updating the Block Device Mapping when Launching an Instance * in the Amazon Elastic Compute Cloud User Guide. */ public void setBlockDeviceMappings( java.util.Collection blockDeviceMappings) { if (blockDeviceMappings == null) { this.blockDeviceMappings = null; return; } this.blockDeviceMappings = new com.amazonaws.internal.SdkInternalList( blockDeviceMappings); } /** *

* Modifies the DeleteOnTermination attribute for volumes that * are currently attached. The volume must be owned by the caller. If no * value is specified for DeleteOnTermination, the default is * true and the volume is deleted when the instance is * terminated. *

*

* To add instance store volumes to an Amazon EBS-backed instance, you must * add them when you launch the instance. For more information, see Updating the Block Device Mapping when Launching an Instance in the * Amazon Elastic Compute Cloud User Guide. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setBlockDeviceMappings(java.util.Collection)} or * {@link #withBlockDeviceMappings(java.util.Collection)} if you want to * override the existing values. *

* * @param blockDeviceMappings * Modifies the DeleteOnTermination attribute for * volumes that are currently attached. The volume must be owned by * the caller. If no value is specified for * DeleteOnTermination, the default is true * and the volume is deleted when the instance is terminated.

*

* To add instance store volumes to an Amazon EBS-backed instance, * you must add them when you launch the instance. For more * information, see Updating the Block Device Mapping when Launching an Instance * in the Amazon Elastic Compute Cloud User Guide. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withBlockDeviceMappings( InstanceBlockDeviceMappingSpecification... blockDeviceMappings) { if (this.blockDeviceMappings == null) { setBlockDeviceMappings(new com.amazonaws.internal.SdkInternalList( blockDeviceMappings.length)); } for (InstanceBlockDeviceMappingSpecification ele : blockDeviceMappings) { this.blockDeviceMappings.add(ele); } return this; } /** *

* Modifies the DeleteOnTermination attribute for volumes that * are currently attached. The volume must be owned by the caller. If no * value is specified for DeleteOnTermination, the default is * true and the volume is deleted when the instance is * terminated. *

*

* To add instance store volumes to an Amazon EBS-backed instance, you must * add them when you launch the instance. For more information, see Updating the Block Device Mapping when Launching an Instance in the * Amazon Elastic Compute Cloud User Guide. *

* * @param blockDeviceMappings * Modifies the DeleteOnTermination attribute for * volumes that are currently attached. The volume must be owned by * the caller. If no value is specified for * DeleteOnTermination, the default is true * and the volume is deleted when the instance is terminated.

*

* To add instance store volumes to an Amazon EBS-backed instance, * you must add them when you launch the instance. For more * information, see Updating the Block Device Mapping when Launching an Instance * in the Amazon Elastic Compute Cloud User Guide. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withBlockDeviceMappings( java.util.Collection blockDeviceMappings) { setBlockDeviceMappings(blockDeviceMappings); return this; } /** *

* Specifies whether source/destination checking is enabled. A value of * true means that checking is enabled, and false * means checking is disabled. This value must be false for a * NAT instance to perform NAT. *

* * @param sourceDestCheck * Specifies whether source/destination checking is enabled. A value * of true means that checking is enabled, and * false means checking is disabled. This value must be * false for a NAT instance to perform NAT. */ public void setSourceDestCheck(Boolean sourceDestCheck) { this.sourceDestCheck = sourceDestCheck; } /** *

* Specifies whether source/destination checking is enabled. A value of * true means that checking is enabled, and false * means checking is disabled. This value must be false for a * NAT instance to perform NAT. *

* * @return Specifies whether source/destination checking is enabled. A value * of true means that checking is enabled, and * false means checking is disabled. This value must be * false for a NAT instance to perform NAT. */ public Boolean getSourceDestCheck() { return this.sourceDestCheck; } /** *

* Specifies whether source/destination checking is enabled. A value of * true means that checking is enabled, and false * means checking is disabled. This value must be false for a * NAT instance to perform NAT. *

* * @param sourceDestCheck * Specifies whether source/destination checking is enabled. A value * of true means that checking is enabled, and * false means checking is disabled. This value must be * false for a NAT instance to perform NAT. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withSourceDestCheck( Boolean sourceDestCheck) { setSourceDestCheck(sourceDestCheck); return this; } /** *

* Specifies whether source/destination checking is enabled. A value of * true means that checking is enabled, and false * means checking is disabled. This value must be false for a * NAT instance to perform NAT. *

* * @return Specifies whether source/destination checking is enabled. A value * of true means that checking is enabled, and * false means checking is disabled. This value must be * false for a NAT instance to perform NAT. */ public Boolean isSourceDestCheck() { return this.sourceDestCheck; } /** *

* If the value is true, you can't terminate the instance using * the Amazon EC2 console, CLI, or API; otherwise, you can. You cannot use * this paramater for Spot Instances. *

* * @param disableApiTermination * If the value is true, you can't terminate the * instance using the Amazon EC2 console, CLI, or API; otherwise, you * can. You cannot use this paramater for Spot Instances. */ public void setDisableApiTermination(Boolean disableApiTermination) { this.disableApiTermination = disableApiTermination; } /** *

* If the value is true, you can't terminate the instance using * the Amazon EC2 console, CLI, or API; otherwise, you can. You cannot use * this paramater for Spot Instances. *

* * @return If the value is true, you can't terminate the * instance using the Amazon EC2 console, CLI, or API; otherwise, * you can. You cannot use this paramater for Spot Instances. */ public Boolean getDisableApiTermination() { return this.disableApiTermination; } /** *

* If the value is true, you can't terminate the instance using * the Amazon EC2 console, CLI, or API; otherwise, you can. You cannot use * this paramater for Spot Instances. *

* * @param disableApiTermination * If the value is true, you can't terminate the * instance using the Amazon EC2 console, CLI, or API; otherwise, you * can. You cannot use this paramater for Spot Instances. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withDisableApiTermination( Boolean disableApiTermination) { setDisableApiTermination(disableApiTermination); return this; } /** *

* If the value is true, you can't terminate the instance using * the Amazon EC2 console, CLI, or API; otherwise, you can. You cannot use * this paramater for Spot Instances. *

* * @return If the value is true, you can't terminate the * instance using the Amazon EC2 console, CLI, or API; otherwise, * you can. You cannot use this paramater for Spot Instances. */ public Boolean isDisableApiTermination() { return this.disableApiTermination; } /** *

* Changes the instance type to the specified value. For more information, * see Instance Types. If the instance type is not valid, the error * returned is InvalidInstanceAttributeValue. *

* * @param instanceType * Changes the instance type to the specified value. For more * information, see Instance Types. If the instance type is not valid, the error * returned is InvalidInstanceAttributeValue. */ public void setInstanceType(String instanceType) { this.instanceType = instanceType; } /** *

* Changes the instance type to the specified value. For more information, * see Instance Types. If the instance type is not valid, the error * returned is InvalidInstanceAttributeValue. *

* * @return Changes the instance type to the specified value. For more * information, see Instance Types. If the instance type is not valid, the error * returned is InvalidInstanceAttributeValue. */ public String getInstanceType() { return this.instanceType; } /** *

* Changes the instance type to the specified value. For more information, * see Instance Types. If the instance type is not valid, the error * returned is InvalidInstanceAttributeValue. *

* * @param instanceType * Changes the instance type to the specified value. For more * information, see Instance Types. If the instance type is not valid, the error * returned is InvalidInstanceAttributeValue. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withInstanceType(String instanceType) { setInstanceType(instanceType); return this; } /** *

* Changes the instance's kernel to the specified value. We recommend that * you use PV-GRUB instead of kernels and RAM disks. For more information, * see PV-GRUB. *

* * @param kernel * Changes the instance's kernel to the specified value. We recommend * that you use PV-GRUB instead of kernels and RAM disks. For more * information, see PV-GRUB. */ public void setKernel(String kernel) { this.kernel = kernel; } /** *

* Changes the instance's kernel to the specified value. We recommend that * you use PV-GRUB instead of kernels and RAM disks. For more information, * see PV-GRUB. *

* * @return Changes the instance's kernel to the specified value. We * recommend that you use PV-GRUB instead of kernels and RAM disks. * For more information, see PV-GRUB. */ public String getKernel() { return this.kernel; } /** *

* Changes the instance's kernel to the specified value. We recommend that * you use PV-GRUB instead of kernels and RAM disks. For more information, * see PV-GRUB. *

* * @param kernel * Changes the instance's kernel to the specified value. We recommend * that you use PV-GRUB instead of kernels and RAM disks. For more * information, see PV-GRUB. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withKernel(String kernel) { setKernel(kernel); return this; } /** *

* Changes the instance's RAM disk to the specified value. We recommend that * you use PV-GRUB instead of kernels and RAM disks. For more information, * see PV-GRUB. *

* * @param ramdisk * Changes the instance's RAM disk to the specified value. We * recommend that you use PV-GRUB instead of kernels and RAM disks. * For more information, see PV-GRUB. */ public void setRamdisk(String ramdisk) { this.ramdisk = ramdisk; } /** *

* Changes the instance's RAM disk to the specified value. We recommend that * you use PV-GRUB instead of kernels and RAM disks. For more information, * see PV-GRUB. *

* * @return Changes the instance's RAM disk to the specified value. We * recommend that you use PV-GRUB instead of kernels and RAM disks. * For more information, see PV-GRUB. */ public String getRamdisk() { return this.ramdisk; } /** *

* Changes the instance's RAM disk to the specified value. We recommend that * you use PV-GRUB instead of kernels and RAM disks. For more information, * see PV-GRUB. *

* * @param ramdisk * Changes the instance's RAM disk to the specified value. We * recommend that you use PV-GRUB instead of kernels and RAM disks. * For more information, see PV-GRUB. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withRamdisk(String ramdisk) { setRamdisk(ramdisk); return this; } /** *

* Changes the instance's user data to the specified base64-encoded value. * For command line tools, base64 encoding is performed for you. *

* * @param userData * Changes the instance's user data to the specified base64-encoded * value. For command line tools, base64 encoding is performed for * you. */ public void setUserData(String userData) { this.userData = userData; } /** *

* Changes the instance's user data to the specified base64-encoded value. * For command line tools, base64 encoding is performed for you. *

* * @return Changes the instance's user data to the specified base64-encoded * value. For command line tools, base64 encoding is performed for * you. */ public String getUserData() { return this.userData; } /** *

* Changes the instance's user data to the specified base64-encoded value. * For command line tools, base64 encoding is performed for you. *

* * @param userData * Changes the instance's user data to the specified base64-encoded * value. For command line tools, base64 encoding is performed for * you. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withUserData(String userData) { setUserData(userData); return this; } /** *

* Specifies whether an instance stops or terminates when you initiate * shutdown from the instance (using the operating system command for system * shutdown). *

* * @param instanceInitiatedShutdownBehavior * Specifies whether an instance stops or terminates when you * initiate shutdown from the instance (using the operating system * command for system shutdown). */ public void setInstanceInitiatedShutdownBehavior( String instanceInitiatedShutdownBehavior) { this.instanceInitiatedShutdownBehavior = instanceInitiatedShutdownBehavior; } /** *

* Specifies whether an instance stops or terminates when you initiate * shutdown from the instance (using the operating system command for system * shutdown). *

* * @return Specifies whether an instance stops or terminates when you * initiate shutdown from the instance (using the operating system * command for system shutdown). */ public String getInstanceInitiatedShutdownBehavior() { return this.instanceInitiatedShutdownBehavior; } /** *

* Specifies whether an instance stops or terminates when you initiate * shutdown from the instance (using the operating system command for system * shutdown). *

* * @param instanceInitiatedShutdownBehavior * Specifies whether an instance stops or terminates when you * initiate shutdown from the instance (using the operating system * command for system shutdown). * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withInstanceInitiatedShutdownBehavior( String instanceInitiatedShutdownBehavior) { setInstanceInitiatedShutdownBehavior(instanceInitiatedShutdownBehavior); return this; } /** *

* [EC2-VPC] Changes the security groups of the instance. You must specify * at least one security group, even if it's just the default security group * for the VPC. You must specify the security group ID, not the security * group name. *

* * @return [EC2-VPC] Changes the security groups of the instance. You must * specify at least one security group, even if it's just the * default security group for the VPC. You must specify the security * group ID, not the security group name. */ public java.util.List getGroups() { if (groups == null) { groups = new com.amazonaws.internal.SdkInternalList(); } return groups; } /** *

* [EC2-VPC] Changes the security groups of the instance. You must specify * at least one security group, even if it's just the default security group * for the VPC. You must specify the security group ID, not the security * group name. *

* * @param groups * [EC2-VPC] Changes the security groups of the instance. You must * specify at least one security group, even if it's just the default * security group for the VPC. You must specify the security group * ID, not the security group name. */ public void setGroups(java.util.Collection groups) { if (groups == null) { this.groups = null; return; } this.groups = new com.amazonaws.internal.SdkInternalList(groups); } /** *

* [EC2-VPC] Changes the security groups of the instance. You must specify * at least one security group, even if it's just the default security group * for the VPC. You must specify the security group ID, not the security * group name. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setGroups(java.util.Collection)} or * {@link #withGroups(java.util.Collection)} if you want to override the * existing values. *

* * @param groups * [EC2-VPC] Changes the security groups of the instance. You must * specify at least one security group, even if it's just the default * security group for the VPC. You must specify the security group * ID, not the security group name. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withGroups(String... groups) { if (this.groups == null) { setGroups(new com.amazonaws.internal.SdkInternalList( groups.length)); } for (String ele : groups) { this.groups.add(ele); } return this; } /** *

* [EC2-VPC] Changes the security groups of the instance. You must specify * at least one security group, even if it's just the default security group * for the VPC. You must specify the security group ID, not the security * group name. *

* * @param groups * [EC2-VPC] Changes the security groups of the instance. You must * specify at least one security group, even if it's just the default * security group for the VPC. You must specify the security group * ID, not the security group name. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withGroups( java.util.Collection groups) { setGroups(groups); return this; } /** *

* Specifies whether the instance is optimized for EBS I/O. This * optimization provides dedicated throughput to Amazon EBS and an optimized * configuration stack to provide optimal EBS I/O performance. This * optimization isn't available with all instance types. Additional usage * charges apply when using an EBS Optimized instance. *

* * @param ebsOptimized * Specifies whether the instance is optimized for EBS I/O. This * optimization provides dedicated throughput to Amazon EBS and an * optimized configuration stack to provide optimal EBS I/O * performance. This optimization isn't available with all instance * types. Additional usage charges apply when using an EBS Optimized * instance. */ public void setEbsOptimized(Boolean ebsOptimized) { this.ebsOptimized = ebsOptimized; } /** *

* Specifies whether the instance is optimized for EBS I/O. This * optimization provides dedicated throughput to Amazon EBS and an optimized * configuration stack to provide optimal EBS I/O performance. This * optimization isn't available with all instance types. Additional usage * charges apply when using an EBS Optimized instance. *

* * @return Specifies whether the instance is optimized for EBS I/O. This * optimization provides dedicated throughput to Amazon EBS and an * optimized configuration stack to provide optimal EBS I/O * performance. This optimization isn't available with all instance * types. Additional usage charges apply when using an EBS Optimized * instance. */ public Boolean getEbsOptimized() { return this.ebsOptimized; } /** *

* Specifies whether the instance is optimized for EBS I/O. This * optimization provides dedicated throughput to Amazon EBS and an optimized * configuration stack to provide optimal EBS I/O performance. This * optimization isn't available with all instance types. Additional usage * charges apply when using an EBS Optimized instance. *

* * @param ebsOptimized * Specifies whether the instance is optimized for EBS I/O. This * optimization provides dedicated throughput to Amazon EBS and an * optimized configuration stack to provide optimal EBS I/O * performance. This optimization isn't available with all instance * types. Additional usage charges apply when using an EBS Optimized * instance. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withEbsOptimized(Boolean ebsOptimized) { setEbsOptimized(ebsOptimized); return this; } /** *

* Specifies whether the instance is optimized for EBS I/O. This * optimization provides dedicated throughput to Amazon EBS and an optimized * configuration stack to provide optimal EBS I/O performance. This * optimization isn't available with all instance types. Additional usage * charges apply when using an EBS Optimized instance. *

* * @return Specifies whether the instance is optimized for EBS I/O. This * optimization provides dedicated throughput to Amazon EBS and an * optimized configuration stack to provide optimal EBS I/O * performance. This optimization isn't available with all instance * types. Additional usage charges apply when using an EBS Optimized * instance. */ public Boolean isEbsOptimized() { return this.ebsOptimized; } /** *

* Set to simple to enable enhanced networking for the * instance. *

*

* There is no way to disable enhanced networking at this time. *

*

* This option is supported only for HVM instances. Specifying this option * with a PV instance can make it unreachable. *

* * @param sriovNetSupport * Set to simple to enable enhanced networking for the * instance.

*

* There is no way to disable enhanced networking at this time. *

*

* This option is supported only for HVM instances. Specifying this * option with a PV instance can make it unreachable. */ public void setSriovNetSupport(String sriovNetSupport) { this.sriovNetSupport = sriovNetSupport; } /** *

* Set to simple to enable enhanced networking for the * instance. *

*

* There is no way to disable enhanced networking at this time. *

*

* This option is supported only for HVM instances. Specifying this option * with a PV instance can make it unreachable. *

* * @return Set to simple to enable enhanced networking for the * instance.

*

* There is no way to disable enhanced networking at this time. *

*

* This option is supported only for HVM instances. Specifying this * option with a PV instance can make it unreachable. */ public String getSriovNetSupport() { return this.sriovNetSupport; } /** *

* Set to simple to enable enhanced networking for the * instance. *

*

* There is no way to disable enhanced networking at this time. *

*

* This option is supported only for HVM instances. Specifying this option * with a PV instance can make it unreachable. *

* * @param sriovNetSupport * Set to simple to enable enhanced networking for the * instance.

*

* There is no way to disable enhanced networking at this time. *

*

* This option is supported only for HVM instances. Specifying this * option with a PV instance can make it unreachable. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyInstanceAttributeRequest withSriovNetSupport( String sriovNetSupport) { setSriovNetSupport(sriovNetSupport); 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 getDryRunRequest() { Request request = new ModifyInstanceAttributeRequestMarshaller() .marshall(this); request.addParameter("DryRun", Boolean.toString(true)); return request; } /** * 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("{"); if (getInstanceId() != null) sb.append("InstanceId: " + getInstanceId() + ","); if (getAttribute() != null) sb.append("Attribute: " + getAttribute() + ","); if (getValue() != null) sb.append("Value: " + getValue() + ","); if (getBlockDeviceMappings() != null) sb.append("BlockDeviceMappings: " + getBlockDeviceMappings() + ","); if (getSourceDestCheck() != null) sb.append("SourceDestCheck: " + getSourceDestCheck() + ","); if (getDisableApiTermination() != null) sb.append("DisableApiTermination: " + getDisableApiTermination() + ","); if (getInstanceType() != null) sb.append("InstanceType: " + getInstanceType() + ","); if (getKernel() != null) sb.append("Kernel: " + getKernel() + ","); if (getRamdisk() != null) sb.append("Ramdisk: " + getRamdisk() + ","); if (getUserData() != null) sb.append("UserData: " + getUserData() + ","); if (getInstanceInitiatedShutdownBehavior() != null) sb.append("InstanceInitiatedShutdownBehavior: " + getInstanceInitiatedShutdownBehavior() + ","); if (getGroups() != null) sb.append("Groups: " + getGroups() + ","); if (getEbsOptimized() != null) sb.append("EbsOptimized: " + getEbsOptimized() + ","); if (getSriovNetSupport() != null) sb.append("SriovNetSupport: " + getSriovNetSupport()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ModifyInstanceAttributeRequest == false) return false; ModifyInstanceAttributeRequest other = (ModifyInstanceAttributeRequest) obj; if (other.getInstanceId() == null ^ this.getInstanceId() == null) return false; if (other.getInstanceId() != null && other.getInstanceId().equals(this.getInstanceId()) == false) return false; if (other.getAttribute() == null ^ this.getAttribute() == null) return false; if (other.getAttribute() != null && other.getAttribute().equals(this.getAttribute()) == false) return false; if (other.getValue() == null ^ this.getValue() == null) return false; if (other.getValue() != null && other.getValue().equals(this.getValue()) == false) return false; if (other.getBlockDeviceMappings() == null ^ this.getBlockDeviceMappings() == null) return false; if (other.getBlockDeviceMappings() != null && other.getBlockDeviceMappings().equals( this.getBlockDeviceMappings()) == false) return false; if (other.getSourceDestCheck() == null ^ this.getSourceDestCheck() == null) return false; if (other.getSourceDestCheck() != null && other.getSourceDestCheck().equals(this.getSourceDestCheck()) == false) return false; if (other.getDisableApiTermination() == null ^ this.getDisableApiTermination() == null) return false; if (other.getDisableApiTermination() != null && other.getDisableApiTermination().equals( this.getDisableApiTermination()) == false) return false; if (other.getInstanceType() == null ^ this.getInstanceType() == null) return false; if (other.getInstanceType() != null && other.getInstanceType().equals(this.getInstanceType()) == false) return false; if (other.getKernel() == null ^ this.getKernel() == null) return false; if (other.getKernel() != null && other.getKernel().equals(this.getKernel()) == false) return false; if (other.getRamdisk() == null ^ this.getRamdisk() == null) return false; if (other.getRamdisk() != null && other.getRamdisk().equals(this.getRamdisk()) == false) return false; if (other.getUserData() == null ^ this.getUserData() == null) return false; if (other.getUserData() != null && other.getUserData().equals(this.getUserData()) == false) return false; if (other.getInstanceInitiatedShutdownBehavior() == null ^ this.getInstanceInitiatedShutdownBehavior() == null) return false; if (other.getInstanceInitiatedShutdownBehavior() != null && other.getInstanceInitiatedShutdownBehavior().equals( this.getInstanceInitiatedShutdownBehavior()) == false) return false; if (other.getGroups() == null ^ this.getGroups() == null) return false; if (other.getGroups() != null && other.getGroups().equals(this.getGroups()) == false) return false; if (other.getEbsOptimized() == null ^ this.getEbsOptimized() == null) return false; if (other.getEbsOptimized() != null && other.getEbsOptimized().equals(this.getEbsOptimized()) == false) return false; if (other.getSriovNetSupport() == null ^ this.getSriovNetSupport() == null) return false; if (other.getSriovNetSupport() != null && other.getSriovNetSupport().equals(this.getSriovNetSupport()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getInstanceId() == null) ? 0 : getInstanceId().hashCode()); hashCode = prime * hashCode + ((getAttribute() == null) ? 0 : getAttribute().hashCode()); hashCode = prime * hashCode + ((getValue() == null) ? 0 : getValue().hashCode()); hashCode = prime * hashCode + ((getBlockDeviceMappings() == null) ? 0 : getBlockDeviceMappings().hashCode()); hashCode = prime * hashCode + ((getSourceDestCheck() == null) ? 0 : getSourceDestCheck() .hashCode()); hashCode = prime * hashCode + ((getDisableApiTermination() == null) ? 0 : getDisableApiTermination().hashCode()); hashCode = prime * hashCode + ((getInstanceType() == null) ? 0 : getInstanceType() .hashCode()); hashCode = prime * hashCode + ((getKernel() == null) ? 0 : getKernel().hashCode()); hashCode = prime * hashCode + ((getRamdisk() == null) ? 0 : getRamdisk().hashCode()); hashCode = prime * hashCode + ((getUserData() == null) ? 0 : getUserData().hashCode()); hashCode = prime * hashCode + ((getInstanceInitiatedShutdownBehavior() == null) ? 0 : getInstanceInitiatedShutdownBehavior().hashCode()); hashCode = prime * hashCode + ((getGroups() == null) ? 0 : getGroups().hashCode()); hashCode = prime * hashCode + ((getEbsOptimized() == null) ? 0 : getEbsOptimized() .hashCode()); hashCode = prime * hashCode + ((getSriovNetSupport() == null) ? 0 : getSriovNetSupport() .hashCode()); return hashCode; } @Override public ModifyInstanceAttributeRequest clone() { return (ModifyInstanceAttributeRequest) super.clone(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy