in sdk/greengrass/greengrass-client/src/event-stream-rpc-java/model/software/amazon/awssdk/aws/greengrass/model/LocalDeployment.java [192:203]
public boolean equals(Object rhs) {
if (rhs == null) return false;
if (!(rhs instanceof LocalDeployment)) return false;
if (this == rhs) return true;
final LocalDeployment other = (LocalDeployment)rhs;
boolean isEquals = true;
isEquals = isEquals && this.deploymentId.equals(other.deploymentId);
isEquals = isEquals && this.status.equals(other.status);
isEquals = isEquals && this.createdOn.equals(other.createdOn);
isEquals = isEquals && this.deploymentStatusDetails.equals(other.deploymentStatusDetails);
return isEquals;
}