
com.amazonaws.services.ec2.model.ResetImageAttributeRequest 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.ec2.model;
import com.amazonaws.AmazonWebServiceRequest;
/**
* Container for the parameters to the {@link com.amazonaws.services.ec2.AmazonEC2#resetImageAttribute(ResetImageAttributeRequest) ResetImageAttribute operation}.
*
* The ResetImageAttribute operation resets an attribute of an AMI to
* its default value.
*
*
* NOTE: The productCodes attribute cannot be reset.
*
*
* @see com.amazonaws.services.ec2.AmazonEC2#resetImageAttribute(ResetImageAttributeRequest)
*/
public class ResetImageAttributeRequest extends AmazonWebServiceRequest {
/**
* The ID of the AMI whose attribute is being reset.
*/
private String imageId;
/**
* The name of the attribute being reset. Available attribute names:
* launchPermission
*/
private String attribute;
/**
* Default constructor for a new ResetImageAttributeRequest object. Callers should use the
* setter or fluent setter (with...) methods to initialize this object after creating it.
*/
public ResetImageAttributeRequest() {}
/**
* Constructs a new ResetImageAttributeRequest object.
* Callers should use the setter or fluent setter (with...) methods to
* initialize any additional object members.
*
* @param imageId The ID of the AMI whose attribute is being reset.
* @param attribute The name of the attribute being reset.
Available
* attribute names: launchPermission
*/
public ResetImageAttributeRequest(String imageId, String attribute) {
this.imageId = imageId;
this.attribute = attribute;
}
/**
* The ID of the AMI whose attribute is being reset.
*
* @return The ID of the AMI whose attribute is being reset.
*/
public String getImageId() {
return imageId;
}
/**
* The ID of the AMI whose attribute is being reset.
*
* @param imageId The ID of the AMI whose attribute is being reset.
*/
public void setImageId(String imageId) {
this.imageId = 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.
*
* @param imageId The ID of the AMI whose attribute is being reset.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ResetImageAttributeRequest withImageId(String imageId) {
this.imageId = imageId;
return this;
}
/**
* The name of the attribute being reset.
Available attribute names:
* launchPermission
*
* @return The name of the attribute being reset.
Available attribute names:
* launchPermission
*/
public String getAttribute() {
return attribute;
}
/**
* The name of the attribute being reset.
Available attribute names:
* launchPermission
*
* @param attribute The name of the attribute being reset.
Available attribute names:
* launchPermission
*/
public void setAttribute(String attribute) {
this.attribute = 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.
*
* @param attribute The name of the attribute being reset.
Available attribute names:
* launchPermission
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ResetImageAttributeRequest withAttribute(String attribute) {
this.attribute = attribute;
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("ImageId: " + imageId + ", ");
sb.append("Attribute: " + attribute + ", ");
sb.append("}");
return sb.toString();
}
}