com.amazonaws.services.ec2.model
Class ResetImageAttributeRequest

java.lang.Object
  extended by com.amazonaws.AmazonWebServiceRequest
      extended by com.amazonaws.services.ec2.model.ResetImageAttributeRequest

public class ResetImageAttributeRequest
extends AmazonWebServiceRequest

Container for the parameters to the ResetImageAttribute operation.

The ResetImageAttribute operation resets an attribute of an AMI to its default value.

NOTE: The productCodes attribute cannot be reset.

See Also:
AmazonEC2.resetImageAttribute(ResetImageAttributeRequest)

Constructor Summary
ResetImageAttributeRequest()
          Default constructor for a new ResetImageAttributeRequest object.
ResetImageAttributeRequest(String imageId, String attribute)
          Constructs a new ResetImageAttributeRequest object.
 
Method Summary
 boolean equals(Object obj)
           
 String getAttribute()
          The name of the attribute being reset.
 String getImageId()
          The ID of the AMI whose attribute is being reset.
 int hashCode()
           
 void setAttribute(String attribute)
          The name of the attribute being reset.
 void setImageId(String imageId)
          The ID of the AMI whose attribute is being reset.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 ResetImageAttributeRequest withAttribute(String attribute)
          The name of the attribute being reset.
 ResetImageAttributeRequest withImageId(String imageId)
          The ID of the AMI whose attribute is being reset.
 
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyPrivateRequestParameters, getDelegationToken, getRequestClientOptions, getRequestCredentials, setDelegationToken, setRequestCredentials
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ResetImageAttributeRequest

public ResetImageAttributeRequest()
Default constructor for a new ResetImageAttributeRequest object. Callers should use the setter or fluent setter (with...) methods to initialize this object after creating it.


ResetImageAttributeRequest

public ResetImageAttributeRequest(String imageId,
                                  String attribute)
Constructs a new ResetImageAttributeRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.

Parameters:
imageId - The ID of the AMI whose attribute is being reset.
attribute - The name of the attribute being reset.

Available attribute names: launchPermission

Method Detail

getImageId

public String getImageId()
The ID of the AMI whose attribute is being reset.

Returns:
The ID of the AMI whose attribute is being reset.

setImageId

public void setImageId(String imageId)
The ID of the AMI whose attribute is being reset.

Parameters:
imageId - The ID of the AMI whose attribute is being reset.

withImageId

public ResetImageAttributeRequest withImageId(String imageId)
The ID of the AMI whose attribute is being reset.

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

Parameters:
imageId - The ID of the AMI whose attribute is being reset.
Returns:
A reference to this updated object so that method calls can be chained together.

getAttribute

public String getAttribute()
The name of the attribute being reset.

Available attribute names: launchPermission

Returns:
The name of the attribute being reset.

Available attribute names: launchPermission


setAttribute

public void setAttribute(String attribute)
The name of the attribute being reset.

Available attribute names: launchPermission

Parameters:
attribute - The name of the attribute being reset.

Available attribute names: launchPermission


withAttribute

public ResetImageAttributeRequest withAttribute(String attribute)
The name of the attribute being reset.

Available attribute names: launchPermission

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

Parameters:
attribute - The name of the attribute being reset.

Available attribute names: launchPermission

Returns:
A reference to this updated object so that method calls can be chained together.

toString

public String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.