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

com.amazonaws.services.inspector.model.UpdateAssessmentTargetRequest Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-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.inspector.model;

import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 */
public class UpdateAssessmentTargetRequest extends AmazonWebServiceRequest
        implements Serializable, Cloneable {

    /**
     * 

* The ARN of the assessment target that you want to update. *

*/ private String assessmentTargetArn; /** *

* The name of the assessment target that you want to update. *

*/ private String assessmentTargetName; /** *

* The ARN of the resource group that is used to specify the new resource * group to associate with the assessment target. *

*/ private String resourceGroupArn; /** *

* The ARN of the assessment target that you want to update. *

* * @param assessmentTargetArn * The ARN of the assessment target that you want to update. */ public void setAssessmentTargetArn(String assessmentTargetArn) { this.assessmentTargetArn = assessmentTargetArn; } /** *

* The ARN of the assessment target that you want to update. *

* * @return The ARN of the assessment target that you want to update. */ public String getAssessmentTargetArn() { return this.assessmentTargetArn; } /** *

* The ARN of the assessment target that you want to update. *

* * @param assessmentTargetArn * The ARN of the assessment target that you want to update. * @return Returns a reference to this object so that method calls can be * chained together. */ public UpdateAssessmentTargetRequest withAssessmentTargetArn( String assessmentTargetArn) { setAssessmentTargetArn(assessmentTargetArn); return this; } /** *

* The name of the assessment target that you want to update. *

* * @param assessmentTargetName * The name of the assessment target that you want to update. */ public void setAssessmentTargetName(String assessmentTargetName) { this.assessmentTargetName = assessmentTargetName; } /** *

* The name of the assessment target that you want to update. *

* * @return The name of the assessment target that you want to update. */ public String getAssessmentTargetName() { return this.assessmentTargetName; } /** *

* The name of the assessment target that you want to update. *

* * @param assessmentTargetName * The name of the assessment target that you want to update. * @return Returns a reference to this object so that method calls can be * chained together. */ public UpdateAssessmentTargetRequest withAssessmentTargetName( String assessmentTargetName) { setAssessmentTargetName(assessmentTargetName); return this; } /** *

* The ARN of the resource group that is used to specify the new resource * group to associate with the assessment target. *

* * @param resourceGroupArn * The ARN of the resource group that is used to specify the new * resource group to associate with the assessment target. */ public void setResourceGroupArn(String resourceGroupArn) { this.resourceGroupArn = resourceGroupArn; } /** *

* The ARN of the resource group that is used to specify the new resource * group to associate with the assessment target. *

* * @return The ARN of the resource group that is used to specify the new * resource group to associate with the assessment target. */ public String getResourceGroupArn() { return this.resourceGroupArn; } /** *

* The ARN of the resource group that is used to specify the new resource * group to associate with the assessment target. *

* * @param resourceGroupArn * The ARN of the resource group that is used to specify the new * resource group to associate with the assessment target. * @return Returns a reference to this object so that method calls can be * chained together. */ public UpdateAssessmentTargetRequest withResourceGroupArn( String resourceGroupArn) { setResourceGroupArn(resourceGroupArn); 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("{"); if (getAssessmentTargetArn() != null) sb.append("AssessmentTargetArn: " + getAssessmentTargetArn() + ","); if (getAssessmentTargetName() != null) sb.append("AssessmentTargetName: " + getAssessmentTargetName() + ","); if (getResourceGroupArn() != null) sb.append("ResourceGroupArn: " + getResourceGroupArn()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateAssessmentTargetRequest == false) return false; UpdateAssessmentTargetRequest other = (UpdateAssessmentTargetRequest) obj; if (other.getAssessmentTargetArn() == null ^ this.getAssessmentTargetArn() == null) return false; if (other.getAssessmentTargetArn() != null && other.getAssessmentTargetArn().equals( this.getAssessmentTargetArn()) == false) return false; if (other.getAssessmentTargetName() == null ^ this.getAssessmentTargetName() == null) return false; if (other.getAssessmentTargetName() != null && other.getAssessmentTargetName().equals( this.getAssessmentTargetName()) == false) return false; if (other.getResourceGroupArn() == null ^ this.getResourceGroupArn() == null) return false; if (other.getResourceGroupArn() != null && other.getResourceGroupArn().equals( this.getResourceGroupArn()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAssessmentTargetArn() == null) ? 0 : getAssessmentTargetArn().hashCode()); hashCode = prime * hashCode + ((getAssessmentTargetName() == null) ? 0 : getAssessmentTargetName().hashCode()); hashCode = prime * hashCode + ((getResourceGroupArn() == null) ? 0 : getResourceGroupArn() .hashCode()); return hashCode; } @Override public UpdateAssessmentTargetRequest clone() { return (UpdateAssessmentTargetRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy