public boolean equals()

in sdk/greengrass/greengrass-client/src/event-stream-rpc-java/model/software/amazon/awssdk/aws/greengrass/model/RunWithInfo.java [137:147]


  public boolean equals(Object rhs) {
    if (rhs == null) return false;
    if (!(rhs instanceof RunWithInfo)) return false;
    if (this == rhs) return true;
    final RunWithInfo other = (RunWithInfo)rhs;
    boolean isEquals = true;
    isEquals = isEquals && this.posixUser.equals(other.posixUser);
    isEquals = isEquals && this.windowsUser.equals(other.windowsUser);
    isEquals = isEquals && this.systemResourceLimits.equals(other.systemResourceLimits);
    return isEquals;
  }