in lambda-client/src/main/java/com/amazonwebservices/blogs/containers/kubernetes/model/IamUserGroupCustomObjectSpec.java [87:98]
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IamUserGroupCustomObjectSpec that = (IamUserGroupCustomObjectSpec) o;
return Objects.equals(this.iamUser, that.iamUser)
&& Objects.equals(this.iamGroups, that.iamGroups)
&& Objects.equals(this.username, that.username);
}