/* * Copyright 2018-2023 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.codedeploy.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Information about the target Lambda function during an Lambda deployment. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class LambdaTarget implements Serializable, Cloneable, StructuredPojo { /** ** The unique ID of a deployment. *
*/ private String deploymentId; /** *
* The unique ID of a deployment target that has a type of lambdaTarget
.
*
* The Amazon Resource Name (ARN) of the target. *
*/ private String targetArn; /** ** The status an Lambda deployment's target Lambda function. *
*/ private String status; /** ** The date and time when the target Lambda function was updated by a deployment. *
*/ private java.util.Date lastUpdatedAt; /** ** The lifecycle events of the deployment to this target Lambda function. *
*/ private com.amazonaws.internal.SdkInternalList
* A LambdaFunctionInfo
object that describes a target Lambda function.
*
* The unique ID of a deployment. *
* * @param deploymentId * The unique ID of a deployment. */ public void setDeploymentId(String deploymentId) { this.deploymentId = deploymentId; } /** ** The unique ID of a deployment. *
* * @return The unique ID of a deployment. */ public String getDeploymentId() { return this.deploymentId; } /** ** The unique ID of a deployment. *
* * @param deploymentId * The unique ID of a deployment. * @return Returns a reference to this object so that method calls can be chained together. */ public LambdaTarget withDeploymentId(String deploymentId) { setDeploymentId(deploymentId); return this; } /** *
* The unique ID of a deployment target that has a type of lambdaTarget
.
*
lambdaTarget
.
*/
public void setTargetId(String targetId) {
this.targetId = targetId;
}
/**
*
* The unique ID of a deployment target that has a type of lambdaTarget
.
*
lambdaTarget
.
*/
public String getTargetId() {
return this.targetId;
}
/**
*
* The unique ID of a deployment target that has a type of lambdaTarget
.
*
lambdaTarget
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LambdaTarget withTargetId(String targetId) {
setTargetId(targetId);
return this;
}
/**
* * The Amazon Resource Name (ARN) of the target. *
* * @param targetArn * The Amazon Resource Name (ARN) of the target. */ public void setTargetArn(String targetArn) { this.targetArn = targetArn; } /** ** The Amazon Resource Name (ARN) of the target. *
* * @return The Amazon Resource Name (ARN) of the target. */ public String getTargetArn() { return this.targetArn; } /** ** The Amazon Resource Name (ARN) of the target. *
* * @param targetArn * The Amazon Resource Name (ARN) of the target. * @return Returns a reference to this object so that method calls can be chained together. */ public LambdaTarget withTargetArn(String targetArn) { setTargetArn(targetArn); return this; } /** ** The status an Lambda deployment's target Lambda function. *
* * @param status * The status an Lambda deployment's target Lambda function. * @see TargetStatus */ public void setStatus(String status) { this.status = status; } /** ** The status an Lambda deployment's target Lambda function. *
* * @return The status an Lambda deployment's target Lambda function. * @see TargetStatus */ public String getStatus() { return this.status; } /** ** The status an Lambda deployment's target Lambda function. *
* * @param status * The status an Lambda deployment's target Lambda function. * @return Returns a reference to this object so that method calls can be chained together. * @see TargetStatus */ public LambdaTarget withStatus(String status) { setStatus(status); return this; } /** ** The status an Lambda deployment's target Lambda function. *
* * @param status * The status an Lambda deployment's target Lambda function. * @return Returns a reference to this object so that method calls can be chained together. * @see TargetStatus */ public LambdaTarget withStatus(TargetStatus status) { this.status = status.toString(); return this; } /** ** The date and time when the target Lambda function was updated by a deployment. *
* * @param lastUpdatedAt * The date and time when the target Lambda function was updated by a deployment. */ public void setLastUpdatedAt(java.util.Date lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; } /** ** The date and time when the target Lambda function was updated by a deployment. *
* * @return The date and time when the target Lambda function was updated by a deployment. */ public java.util.Date getLastUpdatedAt() { return this.lastUpdatedAt; } /** ** The date and time when the target Lambda function was updated by a deployment. *
* * @param lastUpdatedAt * The date and time when the target Lambda function was updated by a deployment. * @return Returns a reference to this object so that method calls can be chained together. */ public LambdaTarget withLastUpdatedAt(java.util.Date lastUpdatedAt) { setLastUpdatedAt(lastUpdatedAt); return this; } /** ** The lifecycle events of the deployment to this target Lambda function. *
* * @return The lifecycle events of the deployment to this target Lambda function. */ public java.util.List* The lifecycle events of the deployment to this target Lambda function. *
* * @param lifecycleEvents * The lifecycle events of the deployment to this target Lambda function. */ public void setLifecycleEvents(java.util.Collection* The lifecycle events of the deployment to this target Lambda function. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setLifecycleEvents(java.util.Collection)} or {@link #withLifecycleEvents(java.util.Collection)} if you * want to override the existing values. *
* * @param lifecycleEvents * The lifecycle events of the deployment to this target Lambda function. * @return Returns a reference to this object so that method calls can be chained together. */ public LambdaTarget withLifecycleEvents(LifecycleEvent... lifecycleEvents) { if (this.lifecycleEvents == null) { setLifecycleEvents(new com.amazonaws.internal.SdkInternalList* The lifecycle events of the deployment to this target Lambda function. *
* * @param lifecycleEvents * The lifecycle events of the deployment to this target Lambda function. * @return Returns a reference to this object so that method calls can be chained together. */ public LambdaTarget withLifecycleEvents(java.util.Collection
* A LambdaFunctionInfo
object that describes a target Lambda function.
*
LambdaFunctionInfo
object that describes a target Lambda function.
*/
public void setLambdaFunctionInfo(LambdaFunctionInfo lambdaFunctionInfo) {
this.lambdaFunctionInfo = lambdaFunctionInfo;
}
/**
*
* A LambdaFunctionInfo
object that describes a target Lambda function.
*
LambdaFunctionInfo
object that describes a target Lambda function.
*/
public LambdaFunctionInfo getLambdaFunctionInfo() {
return this.lambdaFunctionInfo;
}
/**
*
* A LambdaFunctionInfo
object that describes a target Lambda function.
*
LambdaFunctionInfo
object that describes a target Lambda function.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LambdaTarget withLambdaFunctionInfo(LambdaFunctionInfo lambdaFunctionInfo) {
setLambdaFunctionInfo(lambdaFunctionInfo);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getDeploymentId() != null)
sb.append("DeploymentId: ").append(getDeploymentId()).append(",");
if (getTargetId() != null)
sb.append("TargetId: ").append(getTargetId()).append(",");
if (getTargetArn() != null)
sb.append("TargetArn: ").append(getTargetArn()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getLastUpdatedAt() != null)
sb.append("LastUpdatedAt: ").append(getLastUpdatedAt()).append(",");
if (getLifecycleEvents() != null)
sb.append("LifecycleEvents: ").append(getLifecycleEvents()).append(",");
if (getLambdaFunctionInfo() != null)
sb.append("LambdaFunctionInfo: ").append(getLambdaFunctionInfo());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof LambdaTarget == false)
return false;
LambdaTarget other = (LambdaTarget) obj;
if (other.getDeploymentId() == null ^ this.getDeploymentId() == null)
return false;
if (other.getDeploymentId() != null && other.getDeploymentId().equals(this.getDeploymentId()) == false)
return false;
if (other.getTargetId() == null ^ this.getTargetId() == null)
return false;
if (other.getTargetId() != null && other.getTargetId().equals(this.getTargetId()) == false)
return false;
if (other.getTargetArn() == null ^ this.getTargetArn() == null)
return false;
if (other.getTargetArn() != null && other.getTargetArn().equals(this.getTargetArn()) == false)
return false;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
return false;
if (other.getLastUpdatedAt() == null ^ this.getLastUpdatedAt() == null)
return false;
if (other.getLastUpdatedAt() != null && other.getLastUpdatedAt().equals(this.getLastUpdatedAt()) == false)
return false;
if (other.getLifecycleEvents() == null ^ this.getLifecycleEvents() == null)
return false;
if (other.getLifecycleEvents() != null && other.getLifecycleEvents().equals(this.getLifecycleEvents()) == false)
return false;
if (other.getLambdaFunctionInfo() == null ^ this.getLambdaFunctionInfo() == null)
return false;
if (other.getLambdaFunctionInfo() != null && other.getLambdaFunctionInfo().equals(this.getLambdaFunctionInfo()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDeploymentId() == null) ? 0 : getDeploymentId().hashCode());
hashCode = prime * hashCode + ((getTargetId() == null) ? 0 : getTargetId().hashCode());
hashCode = prime * hashCode + ((getTargetArn() == null) ? 0 : getTargetArn().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getLastUpdatedAt() == null) ? 0 : getLastUpdatedAt().hashCode());
hashCode = prime * hashCode + ((getLifecycleEvents() == null) ? 0 : getLifecycleEvents().hashCode());
hashCode = prime * hashCode + ((getLambdaFunctionInfo() == null) ? 0 : getLambdaFunctionInfo().hashCode());
return hashCode;
}
@Override
public LambdaTarget clone() {
try {
return (LambdaTarget) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.codedeploy.model.transform.LambdaTargetMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}